├── .deepsource.toml ├── .dockerignore ├── .env.example ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── feature-request.yml │ ├── idea.yml │ └── module.yml ├── pull_request_template.md ├── release-note.md ├── renovate.json └── workflows │ ├── docker.yml │ ├── docker_dev.yml │ ├── greetings.yml │ └── stale.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── .yarn └── releases │ └── yarn-3.6.0.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── cli ├── cli.js ├── commands │ ├── reset-owner-password.js │ └── reset-password.js ├── package.json └── yarn.lock ├── crowdin.yml ├── data ├── configs │ └── default.json ├── constants.ts ├── crowdin-report.json └── default.json ├── database └── .gitkeep ├── docs ├── banner.png ├── banner.xcf ├── installation-button.png ├── section-contribute.png ├── section-features.png ├── section-installation.png ├── section-preview.png ├── section-template.xcf └── section-widgets-and-integrations.png ├── drizzle.config.ts ├── drizzle ├── 0000_supreme_the_captain.sql ├── 0001_brave_mimic.sql ├── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ └── _journal.json └── migrate │ ├── migrate.ts │ └── package.json ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.js ├── package.json ├── public ├── PoetsenOne-Regular.ttf ├── imgs │ ├── 2340450-2.png │ ├── app-icons │ │ ├── truenas.svg │ │ └── unraid-alt.svg │ ├── favicon │ │ ├── favicon-squared.png │ │ ├── favicon.png │ │ └── favicon.svg │ ├── logo │ │ ├── logo-color.svg │ │ ├── logo.png │ │ └── logo.svg │ └── pwa │ │ ├── apple-icon-180.png │ │ ├── favicon-196.png │ │ └── manifest │ │ ├── manifest-icon-192.maskable.png │ │ └── manifest-icon-512.maskable.png ├── locales │ ├── cn │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── cr │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── cs │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── da │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── de │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker-module.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── el │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── en │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ └── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ ├── error-boundary.json │ │ │ └── location.json │ │ └── zod.json │ ├── es │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── et │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ └── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── fr │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── gl │ │ ├── authentication │ │ │ └── login.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── iframe.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ └── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ ├── he │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── hr │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── hu │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── it │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── ja │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── ko │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── lol │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── iframe.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── lt │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ └── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── lv │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── nl │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── no │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── pl │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── pt │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── ro │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ └── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── ru │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── sk │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── sl │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── sv │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── tr │ │ ├── .gitkeep │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── tw │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ └── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ └── change-position.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── search-engine.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── uk │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ ├── vi │ │ ├── authentication │ │ │ ├── invite.json │ │ │ └── login.json │ │ ├── boards │ │ │ ├── common.json │ │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ │ ├── add-service-app-shelf.json │ │ │ ├── app-shelf-menu.json │ │ │ ├── app-shelf.json │ │ │ ├── common.json │ │ │ ├── element-selector │ │ │ │ └── selector.json │ │ │ ├── errors │ │ │ │ ├── access-denied.json │ │ │ │ └── not-found.json │ │ │ ├── header.json │ │ │ ├── header │ │ │ │ └── actions │ │ │ │ │ └── toggle-edit-mode.json │ │ │ ├── manage.json │ │ │ ├── mobile │ │ │ │ └── drawer.json │ │ │ ├── modals │ │ │ │ ├── about.json │ │ │ │ ├── add-app.json │ │ │ │ ├── change-position.json │ │ │ │ └── icon-picker.json │ │ │ ├── screen-sizes.json │ │ │ └── tools.json │ │ ├── manage │ │ │ ├── boards.json │ │ │ ├── index.json │ │ │ ├── migrate.json │ │ │ ├── users.json │ │ │ └── users │ │ │ │ ├── create.json │ │ │ │ ├── edit.json │ │ │ │ └── invites.json │ │ ├── modules │ │ │ ├── bookmark.json │ │ │ ├── calendar.json │ │ │ ├── common-media-cards.json │ │ │ ├── common.json │ │ │ ├── dashdot.json │ │ │ ├── date.json │ │ │ ├── dlspeed.json │ │ │ ├── dns-hole-controls.json │ │ │ ├── dns-hole-summary.json │ │ │ ├── docker.json │ │ │ ├── health-monitoring.json │ │ │ ├── iframe.json │ │ │ ├── indexer-manager.json │ │ │ ├── media-requests-list.json │ │ │ ├── media-requests-stats.json │ │ │ ├── media-server.json │ │ │ ├── media-transcoding.json │ │ │ ├── notebook.json │ │ │ ├── overseerr.json │ │ │ ├── ping.json │ │ │ ├── rss.json │ │ │ ├── search.json │ │ │ ├── smart-home │ │ │ │ ├── entity-state.json │ │ │ │ └── trigger-automation.json │ │ │ ├── torrents-status.json │ │ │ ├── usenet.json │ │ │ ├── video-stream.json │ │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ │ ├── common.json │ │ │ ├── customization │ │ │ │ ├── access.json │ │ │ │ ├── accessibility.json │ │ │ │ ├── app-width.json │ │ │ │ ├── color-selector.json │ │ │ │ ├── general.json │ │ │ │ ├── gridstack.json │ │ │ │ ├── opacity-selector.json │ │ │ │ ├── page-appearance.json │ │ │ │ └── shade-selector.json │ │ │ └── general │ │ │ │ ├── cache-buttons.json │ │ │ │ ├── color-schema.json │ │ │ │ ├── config-changer.json │ │ │ │ ├── edit-mode-toggle.json │ │ │ │ ├── internationalization.json │ │ │ │ ├── module-enabler.json │ │ │ │ ├── search-engine.json │ │ │ │ ├── theme-selector.json │ │ │ │ └── widget-positions.json │ │ ├── tools │ │ │ └── docker.json │ │ ├── user │ │ │ └── preferences.json │ │ ├── widgets │ │ │ ├── draggable-list.json │ │ │ └── error-boundary.json │ │ └── zod.json │ └── zh │ │ ├── authentication │ │ ├── invite.json │ │ └── login.json │ │ ├── boards │ │ ├── common.json │ │ └── customize.json │ │ ├── common.json │ │ ├── layout │ │ ├── add-service-app-shelf.json │ │ ├── app-shelf-menu.json │ │ ├── app-shelf.json │ │ ├── common.json │ │ ├── element-selector │ │ │ └── selector.json │ │ ├── errors │ │ │ └── not-found.json │ │ ├── header.json │ │ ├── header │ │ │ └── actions │ │ │ │ └── toggle-edit-mode.json │ │ ├── manage.json │ │ ├── mobile │ │ │ └── drawer.json │ │ ├── modals │ │ │ ├── about.json │ │ │ ├── add-app.json │ │ │ ├── change-position.json │ │ │ └── icon-picker.json │ │ ├── screen-sizes.json │ │ └── tools.json │ │ ├── manage │ │ ├── boards.json │ │ ├── index.json │ │ ├── users.json │ │ └── users │ │ │ ├── create.json │ │ │ └── invites.json │ │ ├── modules │ │ ├── bookmark.json │ │ ├── calendar.json │ │ ├── common-media-cards.json │ │ ├── common.json │ │ ├── dashdot.json │ │ ├── date.json │ │ ├── dlspeed.json │ │ ├── dns-hole-controls.json │ │ ├── dns-hole-summary.json │ │ ├── docker.json │ │ ├── iframe.json │ │ ├── media-requests-list.json │ │ ├── media-requests-stats.json │ │ ├── media-server.json │ │ ├── notebook.json │ │ ├── overseerr.json │ │ ├── ping.json │ │ ├── rss.json │ │ ├── search.json │ │ ├── torrents-status.json │ │ ├── usenet.json │ │ ├── video-stream.json │ │ └── weather.json │ │ ├── password-requirements.json │ │ ├── settings │ │ ├── common.json │ │ ├── customization │ │ │ ├── access.json │ │ │ ├── accessibility.json │ │ │ ├── app-width.json │ │ │ ├── color-selector.json │ │ │ ├── general.json │ │ │ ├── gridstack.json │ │ │ ├── opacity-selector.json │ │ │ ├── page-appearance.json │ │ │ └── shade-selector.json │ │ └── general │ │ │ ├── cache-buttons.json │ │ │ ├── color-schema.json │ │ │ ├── config-changer.json │ │ │ ├── edit-mode-toggle.json │ │ │ ├── internationalization.json │ │ │ ├── module-enabler.json │ │ │ ├── search-engine.json │ │ │ ├── theme-selector.json │ │ │ └── widget-positions.json │ │ ├── tools │ │ └── docker.json │ │ ├── user │ │ └── preferences.json │ │ ├── widgets │ │ ├── draggable-list.json │ │ └── error-boundary.json │ │ └── zod.json └── site.webmanifest ├── scripts └── run.sh ├── src ├── components │ ├── AppAvatar.test.tsx │ ├── AppAvatar.tsx │ ├── Board │ │ └── Customize │ │ │ ├── Access │ │ │ └── AccessCustomization.tsx │ │ │ ├── Appearance │ │ │ └── AppearanceCustomization.tsx │ │ │ ├── Gridstack │ │ │ └── GridstackCustomization.tsx │ │ │ ├── Layout │ │ │ ├── LayoutCustomization.tsx │ │ │ └── LayoutPreview.tsx │ │ │ ├── PageMetadata │ │ │ └── PageMetadataCustomization.tsx │ │ │ └── form.ts │ ├── Dashboard │ │ ├── Dashboard.tsx │ │ ├── Mobile │ │ │ └── Ribbon │ │ │ │ ├── MobileRibbon.tsx │ │ │ │ └── MobileRibbonSidebarDrawer.tsx │ │ ├── Modals │ │ │ ├── ChangePosition │ │ │ │ ├── ChangeAppPositionModal.tsx │ │ │ │ ├── ChangePositionModal.tsx │ │ │ │ └── ChangeWidgetPositionModal.tsx │ │ │ ├── EditAppModal │ │ │ │ ├── EditAppModal.tsx │ │ │ │ └── Tabs │ │ │ │ │ ├── AppereanceTab │ │ │ │ │ └── AppereanceTab.tsx │ │ │ │ │ ├── BehaviourTab │ │ │ │ │ └── BehaviourTab.tsx │ │ │ │ │ ├── GeneralTab │ │ │ │ │ └── GeneralTab.tsx │ │ │ │ │ ├── IntegrationTab │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── InputElements │ │ │ │ │ │ │ ├── GenericSecretInput.tsx │ │ │ │ │ │ │ └── IntegrationSelector.tsx │ │ │ │ │ │ └── IntegrationOptionsRenderer │ │ │ │ │ │ │ └── IntegrationOptionsRenderer.tsx │ │ │ │ │ └── IntegrationTab.tsx │ │ │ │ │ ├── NetworkTab │ │ │ │ │ └── NetworkTab.tsx │ │ │ │ │ └── type.ts │ │ │ ├── RenameBoard │ │ │ │ └── RenameBoardModal.tsx │ │ │ └── SelectElement │ │ │ │ ├── Components │ │ │ │ ├── Overview │ │ │ │ │ └── AvailableElementsOverview.tsx │ │ │ │ ├── Shared │ │ │ │ │ ├── GenericElementType.tsx │ │ │ │ │ ├── SelectorBackArrow.tsx │ │ │ │ │ └── styles.tsx │ │ │ │ └── WidgetsTab │ │ │ │ │ ├── AvailableWidgetsTab.tsx │ │ │ │ │ └── WidgetElementType.tsx │ │ │ │ └── SelectElementModal.tsx │ │ ├── Tiles │ │ │ ├── Apps │ │ │ │ ├── AppIcon.tsx │ │ │ │ ├── AppMenu.tsx │ │ │ │ ├── AppPing.tsx │ │ │ │ └── AppTile.tsx │ │ │ ├── EmptyTile.tsx │ │ │ ├── GenericTileMenu.tsx │ │ │ ├── HomarrCardWrapper.tsx │ │ │ ├── TileWrapper.tsx │ │ │ ├── Widgets │ │ │ │ ├── Inputs │ │ │ │ │ ├── DraggableList.tsx │ │ │ │ │ ├── LocationSelection.tsx │ │ │ │ │ └── StaticDraggableList.tsx │ │ │ │ ├── WidgetsEditModal.tsx │ │ │ │ ├── WidgetsMenu.tsx │ │ │ │ └── WidgetsRemoveModal.tsx │ │ │ └── type.ts │ │ ├── Views │ │ │ ├── DashboardView.tsx │ │ │ ├── DetailView.tsx │ │ │ ├── EditView.tsx │ │ │ ├── ViewToggleButton.tsx │ │ │ └── useEditModeStore.ts │ │ └── Wrappers │ │ │ ├── Category │ │ │ ├── Category.tsx │ │ │ ├── CategoryEditMenu.tsx │ │ │ ├── CategoryEditModal.tsx │ │ │ └── useCategoryActions.tsx │ │ │ ├── Sidebar │ │ │ └── Sidebar.tsx │ │ │ ├── Wrapper │ │ │ └── Wrapper.tsx │ │ │ ├── WrapperContent.tsx │ │ │ └── gridstack │ │ │ ├── init-gridstack.ts │ │ │ ├── store.tsx │ │ │ └── use-gridstack.ts │ ├── IconSelector │ │ ├── DebouncedImage.tsx │ │ └── IconSelector.tsx │ ├── InfoCard │ │ └── InfoCard.tsx │ ├── Manage │ │ ├── Board │ │ │ ├── create-board.modal.tsx │ │ │ └── delete-board.modal.tsx │ │ ├── Tools │ │ │ └── Docker │ │ │ │ ├── ContainerActionBar.tsx │ │ │ │ ├── ContainerState.tsx │ │ │ │ ├── ContainerTable.tsx │ │ │ │ └── docker-select-board.modal.tsx │ │ └── User │ │ │ ├── Create │ │ │ ├── create-account-step.tsx │ │ │ ├── review-input-step.tsx │ │ │ └── security-step.tsx │ │ │ ├── Edit │ │ │ ├── GeneralForm.tsx │ │ │ ├── ManageUserDanger.tsx │ │ │ ├── ManageUserRoles.tsx │ │ │ └── ManageUserSecurityForm.tsx │ │ │ ├── Invite │ │ │ ├── copy-invite.modal.tsx │ │ │ ├── create-invite.modal.tsx │ │ │ └── delete-invite.modal.tsx │ │ │ ├── change-user-role.modal.tsx │ │ │ └── delete-user.modal.tsx │ ├── Onboarding │ │ ├── common-wrapper.tsx │ │ ├── database-not-writeable.tsx │ │ ├── onboarding-steps.tsx │ │ ├── step-create-account.tsx │ │ ├── step-onboarding-finished.tsx │ │ └── step-update-path-mappings.tsx │ ├── Password │ │ ├── password-requirement.tsx │ │ └── password-requirements.tsx │ ├── ThemeSchemeToggle │ │ └── ThemeSchemeToggle.tsx │ ├── UpgradeModal │ │ └── CheckUpgradeModal.tsx │ ├── User │ │ └── Preferences │ │ │ ├── AccessibilitySettings.tsx │ │ │ └── SearchEngineSelector.tsx │ └── layout │ │ ├── Background │ │ ├── FloatingBackground.tsx │ │ └── PolkaElement.tsx │ │ ├── Common │ │ ├── Logo.tsx │ │ ├── useCardStyles.ts │ │ └── useGradient.tsx │ │ ├── Meta │ │ ├── BoardHeadOverride.tsx │ │ └── CommonHead.tsx │ │ ├── Templates │ │ ├── BoardLayout.tsx │ │ ├── MainLayout.tsx │ │ └── ManageLayout.tsx │ │ └── header │ │ ├── About │ │ ├── Contributors.tsx │ │ ├── Credits.tsx │ │ ├── Tip.tsx │ │ └── Translators.tsx │ │ ├── ActionButton.tsx │ │ ├── AvatarMenu.tsx │ │ ├── Header.tsx │ │ ├── Search.tsx │ │ └── Search │ │ └── MovieModal.tsx ├── config │ ├── init.ts │ ├── provider.tsx │ └── store.ts ├── constants │ ├── constants.ts │ └── gridstack-breakpoints.ts ├── env.js ├── hooks │ ├── custom-session-provider.tsx │ ├── use-colorscheme.tsx │ ├── use-resize.ts │ ├── useExternalUrl.ts │ ├── useScreenLargerThan.ts │ ├── useScreenSmallerThan.ts │ └── useSetSafeInterval.tsx ├── images │ ├── undraw_bug_fixing_oc-7-a.svg │ ├── undraw_page_not_found_re_e9o6.svg │ └── undraw_secure_login_pdn4.svg ├── middleware.ts ├── modals.ts ├── modules │ ├── common │ │ ├── MediaDisplay.tsx │ │ ├── examples │ │ │ ├── book.json │ │ │ ├── movie.json │ │ │ ├── multiplemovies.json │ │ │ ├── multipletvshows.json │ │ │ ├── music.json │ │ │ ├── request.json │ │ │ ├── search-response.json │ │ │ └── tvshow.json │ │ └── index.ts │ └── overseerr │ │ ├── Movie.d.ts │ │ ├── RequestModal.tsx │ │ ├── SearchResult.ts │ │ ├── TvShow.d.ts │ │ └── example.json ├── pages │ ├── 401.tsx │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── api │ │ ├── [...trpc].ts │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ ├── download.ts │ │ ├── migrate.ts │ │ ├── openapi.json.ts │ │ └── trpc │ │ │ └── [trpc].ts │ ├── auth │ │ ├── invite │ │ │ └── [inviteId].tsx │ │ └── login.tsx │ ├── b │ │ ├── [slug].tsx │ │ ├── [slug] │ │ │ └── customize.tsx │ │ └── index.tsx │ ├── board │ │ ├── [slug].tsx │ │ ├── [slug] │ │ │ └── customize.tsx │ │ └── index.tsx │ ├── manage │ │ ├── about.tsx │ │ ├── boards │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── tools │ │ │ ├── docker.tsx │ │ │ ├── migrate.tsx │ │ │ └── swagger.tsx │ │ └── users │ │ │ ├── [userId] │ │ │ └── edit.tsx │ │ │ ├── create.tsx │ │ │ ├── index.tsx │ │ │ └── invites.tsx │ ├── onboard.tsx │ └── user │ │ └── preferences.tsx ├── server │ ├── api │ │ ├── helper.ts │ │ ├── root.ts │ │ ├── routers │ │ │ ├── app.ts │ │ │ ├── board.ts │ │ │ ├── calendar.ts │ │ │ ├── config.ts │ │ │ ├── dash-dot.ts │ │ │ ├── dns-hole │ │ │ │ └── router.ts │ │ │ ├── docker │ │ │ │ ├── DockerSingleton.ts │ │ │ │ └── router.ts │ │ │ ├── download.ts │ │ │ ├── health-monitoring │ │ │ │ ├── openmediavault.ts │ │ │ │ ├── proxmox.ts │ │ │ │ └── router.ts │ │ │ ├── icon.ts │ │ │ ├── indexer-manager.ts │ │ │ ├── invite │ │ │ │ ├── invite-router.spec.ts │ │ │ │ └── invite-router.ts │ │ │ ├── media-request.ts │ │ │ ├── media-server.ts │ │ │ ├── migrate.ts │ │ │ ├── notebook.ts │ │ │ ├── overseerr.ts │ │ │ ├── password.ts │ │ │ ├── rss.ts │ │ │ ├── smart-home │ │ │ │ └── entity-state.ts │ │ │ ├── tdarr.ts │ │ │ ├── usenet │ │ │ │ ├── nzbget │ │ │ │ │ ├── nzbget-api.d.ts │ │ │ │ │ ├── nzbget-client.ts │ │ │ │ │ └── types.ts │ │ │ │ └── router.ts │ │ │ ├── user.ts │ │ │ └── weather.ts │ │ └── trpc.ts │ ├── auth.ts │ ├── db │ │ ├── index.ts │ │ ├── queries │ │ │ ├── user.ts │ │ │ └── userSettings.ts │ │ └── schema.ts │ └── openai.ts ├── styles │ └── global.scss ├── tools │ ├── _tests │ │ ├── bytesHelper.spec.ts │ │ ├── humanFileSize.spec.ts │ │ └── language.spec.ts │ ├── acceptableStatusCodes.ts │ ├── bytesHelper.ts │ ├── client │ │ ├── app-properties.ts │ │ ├── arrays.ts │ │ ├── calculateEta.ts │ │ ├── math.ts │ │ ├── objects.ts │ │ ├── parseDuration.ts │ │ ├── time.ts │ │ └── zustands │ │ │ └── usePackageAttributesStore.ts │ ├── color.ts │ ├── config │ │ ├── configExists.ts │ │ ├── generateConfigPath.ts │ │ ├── getConfig.ts │ │ ├── getFallbackConfig.ts │ │ ├── getFrontendConfig.ts │ │ ├── readConfig.ts │ │ ├── wrapper-finder.ts │ │ └── writeConfig.ts │ ├── humanFileSize.ts │ ├── language.ts │ ├── mantineModalManagerExtensions.ts │ ├── server │ │ ├── configurations │ │ │ └── tanstack │ │ │ │ └── queryClient.tool.ts │ │ ├── getPackageVersion.ts │ │ ├── getServerSideTranslations.ts │ │ ├── images │ │ │ ├── abstract-icons-repository.ts │ │ │ ├── github-icons-repository.ts │ │ │ ├── jsdelivr-icons-repository.ts │ │ │ ├── local-icons-repository.ts │ │ │ └── unpkg-icons-repository.ts │ │ ├── loginBuilder.ts │ │ ├── sdk │ │ │ ├── adGuard │ │ │ │ ├── adGuard.schema.ts │ │ │ │ └── adGuard.ts │ │ │ ├── homeassistant │ │ │ │ ├── HomeAssistant.ts │ │ │ │ └── models │ │ │ │ │ └── EntityState.ts │ │ │ ├── pihole │ │ │ │ ├── piHole.spec.ts │ │ │ │ ├── piHole.ts │ │ │ │ └── piHole.type.ts │ │ │ └── plex │ │ │ │ ├── plexClient.test.ts │ │ │ │ └── plexClient.ts │ │ ├── theme │ │ │ └── theme.ts │ │ ├── translation-namespaces.ts │ │ └── url.ts │ ├── shared │ │ ├── app.ts │ │ ├── math │ │ │ ├── percentage.tool.test.ts │ │ │ └── percentage.tool.ts │ │ ├── strings.ts │ │ └── time │ │ │ ├── date.tool.test.ts │ │ │ ├── date.tool.ts │ │ │ ├── stopwatch.tool.test.ts │ │ │ └── stopwatch.tool.ts │ └── singleton │ │ └── HomeAssistantSingleton.ts ├── types │ ├── api │ │ ├── downloads │ │ │ └── queue │ │ │ │ └── NormalizedDownloadQueueResponse.ts │ │ ├── media-server │ │ │ ├── media-server.ts │ │ │ ├── response.ts │ │ │ └── session-info.ts │ │ └── tdarr.ts │ ├── app.ts │ ├── area.ts │ ├── category.ts │ ├── config.ts │ ├── dashboardPageType.ts │ ├── helpers.ts │ ├── settings.ts │ ├── shape.ts │ ├── tile.ts │ └── wrapper.ts ├── utils │ ├── api.ts │ ├── auth │ │ ├── adapter.ts │ │ ├── cookies.ts │ │ ├── credentials.ts │ │ ├── index.ts │ │ ├── ldap.ts │ │ ├── oidc-redirect.spec.ts │ │ └── oidc.ts │ ├── empty-provider.ts │ ├── i18n-zod-resolver.ts │ ├── security.ts │ └── session.ts ├── validations │ ├── boards.ts │ ├── invite.ts │ └── user.ts └── widgets │ ├── WidgetWrapper.tsx │ ├── bookmark │ └── BookmarkWidgetTile.tsx │ ├── boundary.tsx │ ├── calendar │ ├── CalendarDay.tsx │ ├── CalendarTile.tsx │ ├── MediaList.tsx │ ├── bg-calculator.ts │ └── type.ts │ ├── dashDot │ ├── DashDotCompactNetwork.tsx │ ├── DashDotCompactStorage.tsx │ ├── DashDotGraph.tsx │ ├── DashDotTile.tsx │ ├── api.ts │ └── types.ts │ ├── date │ └── DateTile.tsx │ ├── dnshole │ ├── DnsHoleControls.tsx │ ├── DnsHoleSummary.tsx │ ├── TimerModal.tsx │ └── type.ts │ ├── download-speed │ ├── Tile.tsx │ ├── TorrentNetworkTrafficTile.tsx │ └── useGetNetworkSpeed.tsx │ ├── health-monitoring │ ├── HealthMonitoringCpu.tsx │ ├── HealthMonitoringFileSystem.tsx │ ├── HealthMonitoringMemory.tsx │ ├── HealthMonitoringTile.tsx │ └── cluster │ │ ├── HealthMonitoringClusterDetailPopover.tsx │ │ ├── HealthMonitoringClusterResourceRow.tsx │ │ ├── HealthMonitoringClusterTile.tsx │ │ └── types.ts │ ├── helper.ts │ ├── iframe │ └── IFrameTile.tsx │ ├── index.ts │ ├── indexer-manager │ └── IndexerManagerTile.tsx │ ├── loading.tsx │ ├── media-requests │ ├── MediaRequestListTile.tsx │ ├── MediaRequestStatsTile.tsx │ ├── media-request-query.tsx │ └── media-request-types.tsx │ ├── media-server │ ├── DetailCollapseable.tsx │ ├── MediaServerTile.tsx │ ├── NowPlayingDisplay.tsx │ ├── TableRow.tsx │ └── useGetMediaServers.tsx │ ├── media-transcoding │ ├── HealthCheckStatus.tsx │ ├── MediaTranscodingTile.tsx │ ├── QueuePanel.tsx │ ├── StatisticsPanel.tsx │ └── WorkersPanel.tsx │ ├── notebook │ ├── NotebookEditor.tsx │ └── NotebookWidgetTile.tsx │ ├── rss │ └── RssWidgetTile.tsx │ ├── smart-home │ ├── entity-state │ │ └── entity-state.widget.tsx │ └── trigger-automation │ │ └── trigger-automation.widget.tsx │ ├── torrent │ ├── TorrentQueueItem.tsx │ ├── TorrentTile.spec.ts │ └── TorrentTile.tsx │ ├── useNet │ ├── UseNetTile.tsx │ ├── UsenetHistoryList.tsx │ ├── UsenetQueueList.tsx │ └── types.ts │ ├── video │ ├── VideoFeed.tsx │ └── VideoStreamTile.tsx │ ├── weather │ ├── WeatherIcon.tsx │ └── WeatherTile.tsx │ └── widgets.ts ├── tests ├── pages │ ├── auth │ │ └── login.spec.ts │ └── board │ │ └── [slug].spec.ts └── setupVitest.ts ├── tsconfig.json ├── turbo.json ├── vitest.config.ts └── yarn.lock /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/idea.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/ISSUE_TEMPLATE/idea.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/ISSUE_TEMPLATE/module.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/release-note.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/docker_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/workflows/docker_dev.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.yarn/releases/yarn-3.6.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/cli/cli.js -------------------------------------------------------------------------------- /cli/commands/reset-owner-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/cli/commands/reset-owner-password.js -------------------------------------------------------------------------------- /cli/commands/reset-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/cli/commands/reset-password.js -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/cli/yarn.lock -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/crowdin.yml -------------------------------------------------------------------------------- /data/configs/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/data/configs/default.json -------------------------------------------------------------------------------- /data/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/data/constants.ts -------------------------------------------------------------------------------- /data/crowdin-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/data/crowdin-report.json -------------------------------------------------------------------------------- /data/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/data/default.json -------------------------------------------------------------------------------- /database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/banner.png -------------------------------------------------------------------------------- /docs/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/banner.xcf -------------------------------------------------------------------------------- /docs/installation-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/installation-button.png -------------------------------------------------------------------------------- /docs/section-contribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/section-contribute.png -------------------------------------------------------------------------------- /docs/section-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/section-features.png -------------------------------------------------------------------------------- /docs/section-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/section-installation.png -------------------------------------------------------------------------------- /docs/section-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/section-preview.png -------------------------------------------------------------------------------- /docs/section-template.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/docs/section-template.xcf -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_supreme_the_captain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/0000_supreme_the_captain.sql -------------------------------------------------------------------------------- /drizzle/0001_brave_mimic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/0001_brave_mimic.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /drizzle/migrate/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/migrate/migrate.ts -------------------------------------------------------------------------------- /drizzle/migrate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/drizzle/migrate/package.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/package.json -------------------------------------------------------------------------------- /public/PoetsenOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/PoetsenOne-Regular.ttf -------------------------------------------------------------------------------- /public/imgs/2340450-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/2340450-2.png -------------------------------------------------------------------------------- /public/imgs/app-icons/truenas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/app-icons/truenas.svg -------------------------------------------------------------------------------- /public/imgs/app-icons/unraid-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/app-icons/unraid-alt.svg -------------------------------------------------------------------------------- /public/imgs/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/favicon/favicon.png -------------------------------------------------------------------------------- /public/imgs/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/favicon/favicon.svg -------------------------------------------------------------------------------- /public/imgs/logo/logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/logo/logo-color.svg -------------------------------------------------------------------------------- /public/imgs/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/logo/logo.png -------------------------------------------------------------------------------- /public/imgs/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/logo/logo.svg -------------------------------------------------------------------------------- /public/imgs/pwa/apple-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/pwa/apple-icon-180.png -------------------------------------------------------------------------------- /public/imgs/pwa/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/imgs/pwa/favicon-196.png -------------------------------------------------------------------------------- /public/locales/cn/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/boards/common.json -------------------------------------------------------------------------------- /public/locales/cn/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/common.json -------------------------------------------------------------------------------- /public/locales/cn/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/layout/common.json -------------------------------------------------------------------------------- /public/locales/cn/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/layout/header.json -------------------------------------------------------------------------------- /public/locales/cn/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/layout/manage.json -------------------------------------------------------------------------------- /public/locales/cn/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} 侧边栏" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/cn/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/manage/boards.json -------------------------------------------------------------------------------- /public/locales/cn/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/manage/index.json -------------------------------------------------------------------------------- /public/locales/cn/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/cn/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/manage/users.json -------------------------------------------------------------------------------- /public/locales/cn/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/common.json -------------------------------------------------------------------------------- /public/locales/cn/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/date.json -------------------------------------------------------------------------------- /public/locales/cn/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/docker.json -------------------------------------------------------------------------------- /public/locales/cn/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/cn/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/ping.json -------------------------------------------------------------------------------- /public/locales/cn/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/rss.json -------------------------------------------------------------------------------- /public/locales/cn/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/search.json -------------------------------------------------------------------------------- /public/locales/cn/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/cn/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "应用的不透明度" 3 | } -------------------------------------------------------------------------------- /public/locales/cn/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "阴影" 3 | } -------------------------------------------------------------------------------- /public/locales/cn/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "语言" 3 | } -------------------------------------------------------------------------------- /public/locales/cn/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "将组件放在左边" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/cn/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/tools/docker.json -------------------------------------------------------------------------------- /public/locales/cn/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cn/zod.json -------------------------------------------------------------------------------- /public/locales/cr/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/boards/common.json -------------------------------------------------------------------------------- /public/locales/cr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/common.json -------------------------------------------------------------------------------- /public/locales/cr/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/layout/common.json -------------------------------------------------------------------------------- /public/locales/cr/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/layout/header.json -------------------------------------------------------------------------------- /public/locales/cr/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/layout/manage.json -------------------------------------------------------------------------------- /public/locales/cr/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/manage/boards.json -------------------------------------------------------------------------------- /public/locales/cr/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/manage/index.json -------------------------------------------------------------------------------- /public/locales/cr/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/cr/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/manage/users.json -------------------------------------------------------------------------------- /public/locales/cr/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/common.json -------------------------------------------------------------------------------- /public/locales/cr/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/date.json -------------------------------------------------------------------------------- /public/locales/cr/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/docker.json -------------------------------------------------------------------------------- /public/locales/cr/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/cr/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/ping.json -------------------------------------------------------------------------------- /public/locales/cr/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/rss.json -------------------------------------------------------------------------------- /public/locales/cr/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/search.json -------------------------------------------------------------------------------- /public/locales/cr/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/cr/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/tools/docker.json -------------------------------------------------------------------------------- /public/locales/cr/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cr/zod.json -------------------------------------------------------------------------------- /public/locales/cs/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/boards/common.json -------------------------------------------------------------------------------- /public/locales/cs/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/common.json -------------------------------------------------------------------------------- /public/locales/cs/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/layout/common.json -------------------------------------------------------------------------------- /public/locales/cs/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/layout/header.json -------------------------------------------------------------------------------- /public/locales/cs/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/layout/manage.json -------------------------------------------------------------------------------- /public/locales/cs/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} postranní panel" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/cs/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/manage/boards.json -------------------------------------------------------------------------------- /public/locales/cs/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/manage/index.json -------------------------------------------------------------------------------- /public/locales/cs/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/cs/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/manage/users.json -------------------------------------------------------------------------------- /public/locales/cs/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/common.json -------------------------------------------------------------------------------- /public/locales/cs/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/date.json -------------------------------------------------------------------------------- /public/locales/cs/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/docker.json -------------------------------------------------------------------------------- /public/locales/cs/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/cs/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/ping.json -------------------------------------------------------------------------------- /public/locales/cs/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/rss.json -------------------------------------------------------------------------------- /public/locales/cs/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/search.json -------------------------------------------------------------------------------- /public/locales/cs/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/cs/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Průhlednost aplikace" 3 | } -------------------------------------------------------------------------------- /public/locales/cs/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Stín" 3 | } -------------------------------------------------------------------------------- /public/locales/cs/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/cs/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/cs/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/tools/docker.json -------------------------------------------------------------------------------- /public/locales/cs/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/cs/zod.json -------------------------------------------------------------------------------- /public/locales/da/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/boards/common.json -------------------------------------------------------------------------------- /public/locales/da/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/common.json -------------------------------------------------------------------------------- /public/locales/da/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/layout/common.json -------------------------------------------------------------------------------- /public/locales/da/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/layout/header.json -------------------------------------------------------------------------------- /public/locales/da/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/layout/manage.json -------------------------------------------------------------------------------- /public/locales/da/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} sidebjælke" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/da/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/layout/tools.json -------------------------------------------------------------------------------- /public/locales/da/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/manage/boards.json -------------------------------------------------------------------------------- /public/locales/da/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/manage/index.json -------------------------------------------------------------------------------- /public/locales/da/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/da/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/manage/users.json -------------------------------------------------------------------------------- /public/locales/da/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/common.json -------------------------------------------------------------------------------- /public/locales/da/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/date.json -------------------------------------------------------------------------------- /public/locales/da/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/docker.json -------------------------------------------------------------------------------- /public/locales/da/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/da/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/ping.json -------------------------------------------------------------------------------- /public/locales/da/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/rss.json -------------------------------------------------------------------------------- /public/locales/da/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/search.json -------------------------------------------------------------------------------- /public/locales/da/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/da/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Bredde" 3 | } -------------------------------------------------------------------------------- /public/locales/da/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Gennemsigtighed" 3 | } -------------------------------------------------------------------------------- /public/locales/da/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Skygge" 3 | } -------------------------------------------------------------------------------- /public/locales/da/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Sprog" 3 | } -------------------------------------------------------------------------------- /public/locales/da/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/da/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Placer widgets til venstre" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/da/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/tools/docker.json -------------------------------------------------------------------------------- /public/locales/da/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/da/zod.json -------------------------------------------------------------------------------- /public/locales/de/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/boards/common.json -------------------------------------------------------------------------------- /public/locales/de/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/common.json -------------------------------------------------------------------------------- /public/locales/de/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/layout/common.json -------------------------------------------------------------------------------- /public/locales/de/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/layout/header.json -------------------------------------------------------------------------------- /public/locales/de/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/layout/manage.json -------------------------------------------------------------------------------- /public/locales/de/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} Seitenleiste" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/de/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/layout/tools.json -------------------------------------------------------------------------------- /public/locales/de/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/manage/boards.json -------------------------------------------------------------------------------- /public/locales/de/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/manage/index.json -------------------------------------------------------------------------------- /public/locales/de/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/de/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/manage/users.json -------------------------------------------------------------------------------- /public/locales/de/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/common.json -------------------------------------------------------------------------------- /public/locales/de/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/date.json -------------------------------------------------------------------------------- /public/locales/de/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/docker.json -------------------------------------------------------------------------------- /public/locales/de/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/de/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/ping.json -------------------------------------------------------------------------------- /public/locales/de/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/rss.json -------------------------------------------------------------------------------- /public/locales/de/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/search.json -------------------------------------------------------------------------------- /public/locales/de/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/de/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Breite" 3 | } -------------------------------------------------------------------------------- /public/locales/de/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Deckkraft" 3 | } -------------------------------------------------------------------------------- /public/locales/de/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Schatten" 3 | } -------------------------------------------------------------------------------- /public/locales/de/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Wechseln zu {{scheme}} Modus" 3 | } -------------------------------------------------------------------------------- /public/locales/de/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Sprache" 3 | } -------------------------------------------------------------------------------- /public/locales/de/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/de/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Wechseln zu {{theme}} Modus" 3 | } -------------------------------------------------------------------------------- /public/locales/de/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/tools/docker.json -------------------------------------------------------------------------------- /public/locales/de/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/de/zod.json -------------------------------------------------------------------------------- /public/locales/el/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/boards/common.json -------------------------------------------------------------------------------- /public/locales/el/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/common.json -------------------------------------------------------------------------------- /public/locales/el/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/layout/common.json -------------------------------------------------------------------------------- /public/locales/el/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/layout/header.json -------------------------------------------------------------------------------- /public/locales/el/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/layout/manage.json -------------------------------------------------------------------------------- /public/locales/el/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} πλαϊνή μπάρα" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/el/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/manage/boards.json -------------------------------------------------------------------------------- /public/locales/el/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/manage/index.json -------------------------------------------------------------------------------- /public/locales/el/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/el/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/manage/users.json -------------------------------------------------------------------------------- /public/locales/el/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/common.json -------------------------------------------------------------------------------- /public/locales/el/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/date.json -------------------------------------------------------------------------------- /public/locales/el/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/docker.json -------------------------------------------------------------------------------- /public/locales/el/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/el/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/ping.json -------------------------------------------------------------------------------- /public/locales/el/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/rss.json -------------------------------------------------------------------------------- /public/locales/el/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/search.json -------------------------------------------------------------------------------- /public/locales/el/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/el/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Πλάτος εφαρμογής" 3 | } -------------------------------------------------------------------------------- /public/locales/el/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Αδιαφάνεια εφαρμογής" 3 | } -------------------------------------------------------------------------------- /public/locales/el/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Απόχρωση" 3 | } -------------------------------------------------------------------------------- /public/locales/el/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Εναλλαγή στη λειτουργία {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/el/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Γλώσσα" 3 | } -------------------------------------------------------------------------------- /public/locales/el/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Εναλλαγή στη λειτουργία {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/el/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/tools/docker.json -------------------------------------------------------------------------------- /public/locales/el/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/el/zod.json -------------------------------------------------------------------------------- /public/locales/en/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/boards/common.json -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/locales/en/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/layout/common.json -------------------------------------------------------------------------------- /public/locales/en/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/layout/header.json -------------------------------------------------------------------------------- /public/locales/en/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/layout/manage.json -------------------------------------------------------------------------------- /public/locales/en/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} sidebar" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/en/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/manage/boards.json -------------------------------------------------------------------------------- /public/locales/en/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/manage/index.json -------------------------------------------------------------------------------- /public/locales/en/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/en/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/manage/users.json -------------------------------------------------------------------------------- /public/locales/en/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/common.json -------------------------------------------------------------------------------- /public/locales/en/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/date.json -------------------------------------------------------------------------------- /public/locales/en/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/docker.json -------------------------------------------------------------------------------- /public/locales/en/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/en/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/ping.json -------------------------------------------------------------------------------- /public/locales/en/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/rss.json -------------------------------------------------------------------------------- /public/locales/en/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/search.json -------------------------------------------------------------------------------- /public/locales/en/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/en/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Opacity" 3 | } -------------------------------------------------------------------------------- /public/locales/en/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Shade" 3 | } -------------------------------------------------------------------------------- /public/locales/en/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/tools/docker.json -------------------------------------------------------------------------------- /public/locales/en/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/en/zod.json -------------------------------------------------------------------------------- /public/locales/es/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/boards/common.json -------------------------------------------------------------------------------- /public/locales/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/common.json -------------------------------------------------------------------------------- /public/locales/es/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/layout/common.json -------------------------------------------------------------------------------- /public/locales/es/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/layout/header.json -------------------------------------------------------------------------------- /public/locales/es/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/layout/manage.json -------------------------------------------------------------------------------- /public/locales/es/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} barra lateral" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/es/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/layout/tools.json -------------------------------------------------------------------------------- /public/locales/es/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/manage/boards.json -------------------------------------------------------------------------------- /public/locales/es/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/manage/index.json -------------------------------------------------------------------------------- /public/locales/es/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/es/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/manage/users.json -------------------------------------------------------------------------------- /public/locales/es/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/common.json -------------------------------------------------------------------------------- /public/locales/es/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/date.json -------------------------------------------------------------------------------- /public/locales/es/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/docker.json -------------------------------------------------------------------------------- /public/locales/es/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/es/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/ping.json -------------------------------------------------------------------------------- /public/locales/es/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/rss.json -------------------------------------------------------------------------------- /public/locales/es/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/search.json -------------------------------------------------------------------------------- /public/locales/es/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/es/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Ancho de la aplicación" 3 | } -------------------------------------------------------------------------------- /public/locales/es/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Opacidad de la aplicación" 3 | } -------------------------------------------------------------------------------- /public/locales/es/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Sombra" 3 | } -------------------------------------------------------------------------------- /public/locales/es/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Cambiar al modo {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/es/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Idioma" 3 | } -------------------------------------------------------------------------------- /public/locales/es/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/es/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Cambiar al modo {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/es/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Colocar los widgets a la izquierda" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/es/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/tools/docker.json -------------------------------------------------------------------------------- /public/locales/es/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/es/zod.json -------------------------------------------------------------------------------- /public/locales/et/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/boards/common.json -------------------------------------------------------------------------------- /public/locales/et/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/common.json -------------------------------------------------------------------------------- /public/locales/et/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/layout/common.json -------------------------------------------------------------------------------- /public/locales/et/layout/errors/access-denied.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/et/layout/errors/not-found.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/et/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/layout/header.json -------------------------------------------------------------------------------- /public/locales/et/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/layout/manage.json -------------------------------------------------------------------------------- /public/locales/et/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/et/layout/modals/change-position.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/et/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/manage/boards.json -------------------------------------------------------------------------------- /public/locales/et/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/manage/index.json -------------------------------------------------------------------------------- /public/locales/et/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/et/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/manage/users.json -------------------------------------------------------------------------------- /public/locales/et/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/common.json -------------------------------------------------------------------------------- /public/locales/et/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/date.json -------------------------------------------------------------------------------- /public/locales/et/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/docker.json -------------------------------------------------------------------------------- /public/locales/et/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/et/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/ping.json -------------------------------------------------------------------------------- /public/locales/et/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/rss.json -------------------------------------------------------------------------------- /public/locales/et/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/search.json -------------------------------------------------------------------------------- /public/locales/et/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/et/password-requirements.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/et/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/et/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/et/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/tools/docker.json -------------------------------------------------------------------------------- /public/locales/et/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/et/zod.json -------------------------------------------------------------------------------- /public/locales/fr/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/boards/common.json -------------------------------------------------------------------------------- /public/locales/fr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/common.json -------------------------------------------------------------------------------- /public/locales/fr/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/layout/common.json -------------------------------------------------------------------------------- /public/locales/fr/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/layout/header.json -------------------------------------------------------------------------------- /public/locales/fr/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/layout/manage.json -------------------------------------------------------------------------------- /public/locales/fr/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} barre latérale" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/fr/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/layout/tools.json -------------------------------------------------------------------------------- /public/locales/fr/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/manage/boards.json -------------------------------------------------------------------------------- /public/locales/fr/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/manage/index.json -------------------------------------------------------------------------------- /public/locales/fr/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/fr/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/manage/users.json -------------------------------------------------------------------------------- /public/locales/fr/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/common.json -------------------------------------------------------------------------------- /public/locales/fr/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/date.json -------------------------------------------------------------------------------- /public/locales/fr/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/docker.json -------------------------------------------------------------------------------- /public/locales/fr/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/fr/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/ping.json -------------------------------------------------------------------------------- /public/locales/fr/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/rss.json -------------------------------------------------------------------------------- /public/locales/fr/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/search.json -------------------------------------------------------------------------------- /public/locales/fr/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/fr/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Largeur de l'application" 3 | } -------------------------------------------------------------------------------- /public/locales/fr/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Opacité de l'application" 3 | } -------------------------------------------------------------------------------- /public/locales/fr/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Ombre" 3 | } -------------------------------------------------------------------------------- /public/locales/fr/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Passer en mode {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/fr/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Langue" 3 | } -------------------------------------------------------------------------------- /public/locales/fr/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/fr/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Passer en mode {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/fr/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Positionner les widgets à gauche" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/fr/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/tools/docker.json -------------------------------------------------------------------------------- /public/locales/fr/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/fr/zod.json -------------------------------------------------------------------------------- /public/locales/gl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/common.json -------------------------------------------------------------------------------- /public/locales/gl/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/layout/common.json -------------------------------------------------------------------------------- /public/locales/gl/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/gl/layout/modals/change-position.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/common.json -------------------------------------------------------------------------------- /public/locales/gl/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/date.json -------------------------------------------------------------------------------- /public/locales/gl/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/docker.json -------------------------------------------------------------------------------- /public/locales/gl/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/gl/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/ping.json -------------------------------------------------------------------------------- /public/locales/gl/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/rss.json -------------------------------------------------------------------------------- /public/locales/gl/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/search.json -------------------------------------------------------------------------------- /public/locales/gl/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/gl/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/gl/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/customization/color-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/gl/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/he/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/boards/common.json -------------------------------------------------------------------------------- /public/locales/he/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/common.json -------------------------------------------------------------------------------- /public/locales/he/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/layout/common.json -------------------------------------------------------------------------------- /public/locales/he/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/layout/header.json -------------------------------------------------------------------------------- /public/locales/he/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/layout/manage.json -------------------------------------------------------------------------------- /public/locales/he/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "סרגל צד {{position}}" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/he/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/layout/tools.json -------------------------------------------------------------------------------- /public/locales/he/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/manage/boards.json -------------------------------------------------------------------------------- /public/locales/he/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/manage/index.json -------------------------------------------------------------------------------- /public/locales/he/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/he/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/manage/users.json -------------------------------------------------------------------------------- /public/locales/he/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/common.json -------------------------------------------------------------------------------- /public/locales/he/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/date.json -------------------------------------------------------------------------------- /public/locales/he/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/docker.json -------------------------------------------------------------------------------- /public/locales/he/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/he/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/ping.json -------------------------------------------------------------------------------- /public/locales/he/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/rss.json -------------------------------------------------------------------------------- /public/locales/he/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/search.json -------------------------------------------------------------------------------- /public/locales/he/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/he/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "רוחב אריח" 3 | } -------------------------------------------------------------------------------- /public/locales/he/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "אטימות אריח" 3 | } -------------------------------------------------------------------------------- /public/locales/he/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "הצללה" 3 | } -------------------------------------------------------------------------------- /public/locales/he/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "מעבר למראה {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/he/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "שפה" 3 | } -------------------------------------------------------------------------------- /public/locales/he/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/he/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "מעבר למראה {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/he/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "מקם ווידג'טים בצד שמאל" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/he/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/tools/docker.json -------------------------------------------------------------------------------- /public/locales/he/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/he/zod.json -------------------------------------------------------------------------------- /public/locales/hr/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/boards/common.json -------------------------------------------------------------------------------- /public/locales/hr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/common.json -------------------------------------------------------------------------------- /public/locales/hr/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/layout/common.json -------------------------------------------------------------------------------- /public/locales/hr/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/layout/header.json -------------------------------------------------------------------------------- /public/locales/hr/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/layout/manage.json -------------------------------------------------------------------------------- /public/locales/hr/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} bočna traka" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/hr/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/manage/boards.json -------------------------------------------------------------------------------- /public/locales/hr/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/manage/index.json -------------------------------------------------------------------------------- /public/locales/hr/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/hr/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/manage/users.json -------------------------------------------------------------------------------- /public/locales/hr/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/common.json -------------------------------------------------------------------------------- /public/locales/hr/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/date.json -------------------------------------------------------------------------------- /public/locales/hr/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/docker.json -------------------------------------------------------------------------------- /public/locales/hr/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/hr/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/ping.json -------------------------------------------------------------------------------- /public/locales/hr/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/rss.json -------------------------------------------------------------------------------- /public/locales/hr/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/search.json -------------------------------------------------------------------------------- /public/locales/hr/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/hr/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Širina Aplikacije" 3 | } -------------------------------------------------------------------------------- /public/locales/hr/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Prozirnost Aplikacije" 3 | } -------------------------------------------------------------------------------- /public/locales/hr/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Sjena" 3 | } -------------------------------------------------------------------------------- /public/locales/hr/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Prebacite se na način rada {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/hr/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Jezik" 3 | } -------------------------------------------------------------------------------- /public/locales/hr/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Prebacite se na {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/hr/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Postavite widgets s lijeva" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/hr/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/tools/docker.json -------------------------------------------------------------------------------- /public/locales/hr/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hr/zod.json -------------------------------------------------------------------------------- /public/locales/hu/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/boards/common.json -------------------------------------------------------------------------------- /public/locales/hu/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/common.json -------------------------------------------------------------------------------- /public/locales/hu/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/layout/common.json -------------------------------------------------------------------------------- /public/locales/hu/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/layout/header.json -------------------------------------------------------------------------------- /public/locales/hu/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/layout/manage.json -------------------------------------------------------------------------------- /public/locales/hu/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} oldalsáv" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/hu/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/manage/boards.json -------------------------------------------------------------------------------- /public/locales/hu/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/manage/index.json -------------------------------------------------------------------------------- /public/locales/hu/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/hu/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/manage/users.json -------------------------------------------------------------------------------- /public/locales/hu/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/common.json -------------------------------------------------------------------------------- /public/locales/hu/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/date.json -------------------------------------------------------------------------------- /public/locales/hu/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/docker.json -------------------------------------------------------------------------------- /public/locales/hu/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/hu/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/ping.json -------------------------------------------------------------------------------- /public/locales/hu/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/rss.json -------------------------------------------------------------------------------- /public/locales/hu/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/search.json -------------------------------------------------------------------------------- /public/locales/hu/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/hu/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Alkalmazás szélessége" 3 | } -------------------------------------------------------------------------------- /public/locales/hu/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Alkalmazás átlátszatlansága" 3 | } -------------------------------------------------------------------------------- /public/locales/hu/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Árnyék" 3 | } -------------------------------------------------------------------------------- /public/locales/hu/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Váltás a {{scheme}} módra" 3 | } -------------------------------------------------------------------------------- /public/locales/hu/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Nyelv" 3 | } -------------------------------------------------------------------------------- /public/locales/hu/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Váltás a {{theme}} módra" 3 | } -------------------------------------------------------------------------------- /public/locales/hu/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "A widgetek elhelyezése balra" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/hu/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/tools/docker.json -------------------------------------------------------------------------------- /public/locales/hu/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/hu/zod.json -------------------------------------------------------------------------------- /public/locales/it/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/boards/common.json -------------------------------------------------------------------------------- /public/locales/it/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/common.json -------------------------------------------------------------------------------- /public/locales/it/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/layout/common.json -------------------------------------------------------------------------------- /public/locales/it/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/layout/header.json -------------------------------------------------------------------------------- /public/locales/it/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/layout/manage.json -------------------------------------------------------------------------------- /public/locales/it/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} barra laterale" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/it/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/layout/tools.json -------------------------------------------------------------------------------- /public/locales/it/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/manage/boards.json -------------------------------------------------------------------------------- /public/locales/it/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/manage/index.json -------------------------------------------------------------------------------- /public/locales/it/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/it/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/manage/users.json -------------------------------------------------------------------------------- /public/locales/it/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/common.json -------------------------------------------------------------------------------- /public/locales/it/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/date.json -------------------------------------------------------------------------------- /public/locales/it/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/docker.json -------------------------------------------------------------------------------- /public/locales/it/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/it/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/ping.json -------------------------------------------------------------------------------- /public/locales/it/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/rss.json -------------------------------------------------------------------------------- /public/locales/it/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/search.json -------------------------------------------------------------------------------- /public/locales/it/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/it/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Larghezza App" 3 | } -------------------------------------------------------------------------------- /public/locales/it/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Opacità App" 3 | } -------------------------------------------------------------------------------- /public/locales/it/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tonalità" 3 | } -------------------------------------------------------------------------------- /public/locales/it/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Passare alla modalità {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/it/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Lingua" 3 | } -------------------------------------------------------------------------------- /public/locales/it/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/it/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Passare alla modalità {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/it/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Posiziona widget a sinistra" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/it/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/tools/docker.json -------------------------------------------------------------------------------- /public/locales/it/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/it/zod.json -------------------------------------------------------------------------------- /public/locales/ja/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/boards/common.json -------------------------------------------------------------------------------- /public/locales/ja/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/common.json -------------------------------------------------------------------------------- /public/locales/ja/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/layout/common.json -------------------------------------------------------------------------------- /public/locales/ja/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/layout/header.json -------------------------------------------------------------------------------- /public/locales/ja/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/layout/manage.json -------------------------------------------------------------------------------- /public/locales/ja/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} サイドバー" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ja/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/layout/tools.json -------------------------------------------------------------------------------- /public/locales/ja/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/manage/boards.json -------------------------------------------------------------------------------- /public/locales/ja/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/manage/index.json -------------------------------------------------------------------------------- /public/locales/ja/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/ja/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/manage/users.json -------------------------------------------------------------------------------- /public/locales/ja/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/common.json -------------------------------------------------------------------------------- /public/locales/ja/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/date.json -------------------------------------------------------------------------------- /public/locales/ja/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/docker.json -------------------------------------------------------------------------------- /public/locales/ja/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/ja/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/ping.json -------------------------------------------------------------------------------- /public/locales/ja/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/rss.json -------------------------------------------------------------------------------- /public/locales/ja/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/search.json -------------------------------------------------------------------------------- /public/locales/ja/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/ja/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "アプリの幅" 3 | } -------------------------------------------------------------------------------- /public/locales/ja/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "アプリの不透明度" 3 | } -------------------------------------------------------------------------------- /public/locales/ja/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "シェード" 3 | } -------------------------------------------------------------------------------- /public/locales/ja/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "{{scheme}} モードに切り替わります。" 3 | } -------------------------------------------------------------------------------- /public/locales/ja/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "言語" 3 | } -------------------------------------------------------------------------------- /public/locales/ja/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/ja/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "{{theme}} モードに切り替わります。" 3 | } -------------------------------------------------------------------------------- /public/locales/ja/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "ウィジェットを左側に配置" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ja/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/tools/docker.json -------------------------------------------------------------------------------- /public/locales/ja/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ja/zod.json -------------------------------------------------------------------------------- /public/locales/ko/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/boards/common.json -------------------------------------------------------------------------------- /public/locales/ko/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/common.json -------------------------------------------------------------------------------- /public/locales/ko/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/layout/common.json -------------------------------------------------------------------------------- /public/locales/ko/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/layout/header.json -------------------------------------------------------------------------------- /public/locales/ko/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/layout/manage.json -------------------------------------------------------------------------------- /public/locales/ko/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} 사이드바" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ko/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/layout/tools.json -------------------------------------------------------------------------------- /public/locales/ko/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/manage/boards.json -------------------------------------------------------------------------------- /public/locales/ko/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/manage/index.json -------------------------------------------------------------------------------- /public/locales/ko/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/ko/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/manage/users.json -------------------------------------------------------------------------------- /public/locales/ko/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/common.json -------------------------------------------------------------------------------- /public/locales/ko/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/date.json -------------------------------------------------------------------------------- /public/locales/ko/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/docker.json -------------------------------------------------------------------------------- /public/locales/ko/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/ko/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/ping.json -------------------------------------------------------------------------------- /public/locales/ko/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/rss.json -------------------------------------------------------------------------------- /public/locales/ko/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/search.json -------------------------------------------------------------------------------- /public/locales/ko/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/ko/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "앱 너비" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/customization/color-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "suffix": "{{color}} 색" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "앱 불투명도" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "그림자" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "{{scheme}} 모드로 전환" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "언어" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/ko/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "{{theme}} 모드로 전환" 3 | } -------------------------------------------------------------------------------- /public/locales/ko/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "왼쪽에 위젯 배치" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ko/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/tools/docker.json -------------------------------------------------------------------------------- /public/locales/ko/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ko/zod.json -------------------------------------------------------------------------------- /public/locales/lol/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/boards/common.json -------------------------------------------------------------------------------- /public/locales/lol/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/common.json -------------------------------------------------------------------------------- /public/locales/lol/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/layout/common.json -------------------------------------------------------------------------------- /public/locales/lol/layout/errors/not-found.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/lol/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/layout/header.json -------------------------------------------------------------------------------- /public/locales/lol/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/layout/manage.json -------------------------------------------------------------------------------- /public/locales/lol/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} Sidebar" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/lol/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/layout/tools.json -------------------------------------------------------------------------------- /public/locales/lol/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/manage/boards.json -------------------------------------------------------------------------------- /public/locales/lol/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/manage/index.json -------------------------------------------------------------------------------- /public/locales/lol/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/manage/users.json -------------------------------------------------------------------------------- /public/locales/lol/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/modules/date.json -------------------------------------------------------------------------------- /public/locales/lol/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/modules/ping.json -------------------------------------------------------------------------------- /public/locales/lol/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/modules/rss.json -------------------------------------------------------------------------------- /public/locales/lol/password-requirements.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/lol/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Width" 3 | } -------------------------------------------------------------------------------- /public/locales/lol/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Opacity" 3 | } -------------------------------------------------------------------------------- /public/locales/lol/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Shaed" 3 | } -------------------------------------------------------------------------------- /public/locales/lol/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Switch to {{scheme}} mode" 3 | } -------------------------------------------------------------------------------- /public/locales/lol/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Languaeg" 3 | } -------------------------------------------------------------------------------- /public/locales/lol/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/lol/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Switch 2 {{theme}} moed" 3 | } -------------------------------------------------------------------------------- /public/locales/lol/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Posishun Widgets On Teh Left" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/lol/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/tools/docker.json -------------------------------------------------------------------------------- /public/locales/lol/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lol/zod.json -------------------------------------------------------------------------------- /public/locales/lt/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/boards/common.json -------------------------------------------------------------------------------- /public/locales/lt/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/common.json -------------------------------------------------------------------------------- /public/locales/lt/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/layout/common.json -------------------------------------------------------------------------------- /public/locales/lt/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/layout/header.json -------------------------------------------------------------------------------- /public/locales/lt/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/layout/manage.json -------------------------------------------------------------------------------- /public/locales/lt/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} šoninė juosta" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/lt/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/manage/boards.json -------------------------------------------------------------------------------- /public/locales/lt/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/manage/index.json -------------------------------------------------------------------------------- /public/locales/lt/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/lt/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/manage/users.json -------------------------------------------------------------------------------- /public/locales/lt/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/common.json -------------------------------------------------------------------------------- /public/locales/lt/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/date.json -------------------------------------------------------------------------------- /public/locales/lt/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/docker.json -------------------------------------------------------------------------------- /public/locales/lt/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/lt/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/ping.json -------------------------------------------------------------------------------- /public/locales/lt/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/rss.json -------------------------------------------------------------------------------- /public/locales/lt/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/search.json -------------------------------------------------------------------------------- /public/locales/lt/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/lt/password-requirements.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/lt/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/lt/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/lt/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/tools/docker.json -------------------------------------------------------------------------------- /public/locales/lt/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lt/zod.json -------------------------------------------------------------------------------- /public/locales/lv/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/boards/common.json -------------------------------------------------------------------------------- /public/locales/lv/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/common.json -------------------------------------------------------------------------------- /public/locales/lv/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/layout/common.json -------------------------------------------------------------------------------- /public/locales/lv/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/layout/header.json -------------------------------------------------------------------------------- /public/locales/lv/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/layout/manage.json -------------------------------------------------------------------------------- /public/locales/lv/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} sānu josla" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/lv/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/manage/boards.json -------------------------------------------------------------------------------- /public/locales/lv/manage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/manage/index.json -------------------------------------------------------------------------------- /public/locales/lv/manage/migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/manage/migrate.json -------------------------------------------------------------------------------- /public/locales/lv/manage/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/manage/users.json -------------------------------------------------------------------------------- /public/locales/lv/modules/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/common.json -------------------------------------------------------------------------------- /public/locales/lv/modules/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/date.json -------------------------------------------------------------------------------- /public/locales/lv/modules/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/docker.json -------------------------------------------------------------------------------- /public/locales/lv/modules/iframe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/iframe.json -------------------------------------------------------------------------------- /public/locales/lv/modules/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/ping.json -------------------------------------------------------------------------------- /public/locales/lv/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/rss.json -------------------------------------------------------------------------------- /public/locales/lv/modules/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/search.json -------------------------------------------------------------------------------- /public/locales/lv/modules/usenet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/modules/usenet.json -------------------------------------------------------------------------------- /public/locales/lv/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Aplikācijas Platums" 3 | } -------------------------------------------------------------------------------- /public/locales/lv/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Aplikācijas Necaruspīdība" 3 | } -------------------------------------------------------------------------------- /public/locales/lv/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Ēnojums" 3 | } -------------------------------------------------------------------------------- /public/locales/lv/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Pārslēgšanās uz {{scheme}} režīmu" 3 | } -------------------------------------------------------------------------------- /public/locales/lv/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Valoda" 3 | } -------------------------------------------------------------------------------- /public/locales/lv/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Pārslēgšanās uz {{theme}} režīmu" 3 | } -------------------------------------------------------------------------------- /public/locales/lv/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Novietot logrīkus kreisajā pusē" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/lv/tools/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/tools/docker.json -------------------------------------------------------------------------------- /public/locales/lv/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/lv/zod.json -------------------------------------------------------------------------------- /public/locales/nl/boards/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/boards/common.json -------------------------------------------------------------------------------- /public/locales/nl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/common.json -------------------------------------------------------------------------------- /public/locales/nl/layout/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/layout/common.json -------------------------------------------------------------------------------- /public/locales/nl/layout/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/layout/header.json -------------------------------------------------------------------------------- /public/locales/nl/layout/manage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/layout/manage.json -------------------------------------------------------------------------------- /public/locales/nl/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} zijbalk" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/nl/layout/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/layout/tools.json -------------------------------------------------------------------------------- /public/locales/nl/manage/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/manage/boards.json -------------------------------------------------------------------------------- /public/locales/nl/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/modules/rss.json -------------------------------------------------------------------------------- /public/locales/nl/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Breedte" 3 | } -------------------------------------------------------------------------------- /public/locales/nl/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App opacity" 3 | } -------------------------------------------------------------------------------- /public/locales/nl/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tint" 3 | } -------------------------------------------------------------------------------- /public/locales/nl/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Schakel over naar {{scheme}} modus" 3 | } -------------------------------------------------------------------------------- /public/locales/nl/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Taal" 3 | } -------------------------------------------------------------------------------- /public/locales/nl/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/nl/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Overschakelen naar {{theme}} modus" 3 | } -------------------------------------------------------------------------------- /public/locales/nl/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Plaats widgets aan de linkerkant" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/nl/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/nl/zod.json -------------------------------------------------------------------------------- /public/locales/no/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/no/common.json -------------------------------------------------------------------------------- /public/locales/no/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} sidepanel" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/no/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/no/modules/rss.json -------------------------------------------------------------------------------- /public/locales/no/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App bredde" 3 | } -------------------------------------------------------------------------------- /public/locales/no/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "App Gjennomsiktighet" 3 | } -------------------------------------------------------------------------------- /public/locales/no/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Skygge" 3 | } -------------------------------------------------------------------------------- /public/locales/no/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Bytt til {{scheme}} -modus" 3 | } -------------------------------------------------------------------------------- /public/locales/no/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Språk" 3 | } -------------------------------------------------------------------------------- /public/locales/no/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Bytt til {{theme}} -modus" 3 | } -------------------------------------------------------------------------------- /public/locales/no/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Plasser widgets til venstre" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/no/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/no/zod.json -------------------------------------------------------------------------------- /public/locales/pl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/pl/common.json -------------------------------------------------------------------------------- /public/locales/pl/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} pasek boczny" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/pl/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/pl/modules/rss.json -------------------------------------------------------------------------------- /public/locales/pl/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Szerokość aplikacji" 3 | } -------------------------------------------------------------------------------- /public/locales/pl/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Przezroczystość aplikacji" 3 | } -------------------------------------------------------------------------------- /public/locales/pl/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Cień" 3 | } -------------------------------------------------------------------------------- /public/locales/pl/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Przełącz na tryb {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/pl/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Język" 3 | } -------------------------------------------------------------------------------- /public/locales/pl/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/pl/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Przełącz na tryb {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/pl/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/pl/zod.json -------------------------------------------------------------------------------- /public/locales/pt/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/pt/common.json -------------------------------------------------------------------------------- /public/locales/pt/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} barra lateral" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/pt/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/pt/modules/rss.json -------------------------------------------------------------------------------- /public/locales/pt/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Largura do app" 3 | } -------------------------------------------------------------------------------- /public/locales/pt/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Opacidade do app" 3 | } -------------------------------------------------------------------------------- /public/locales/pt/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Sombra" 3 | } -------------------------------------------------------------------------------- /public/locales/pt/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Mudar para o modo {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/pt/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Idioma" 3 | } -------------------------------------------------------------------------------- /public/locales/pt/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/pt/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Mudar para o modo {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/pt/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Widgets de posição à esquerda" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/pt/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/pt/zod.json -------------------------------------------------------------------------------- /public/locales/ro/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ro/common.json -------------------------------------------------------------------------------- /public/locales/ro/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} bară laterală" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ro/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ro/modules/rss.json -------------------------------------------------------------------------------- /public/locales/ro/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Opacitatea aplicației" 3 | } -------------------------------------------------------------------------------- /public/locales/ro/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Nuante" 3 | } -------------------------------------------------------------------------------- /public/locales/ro/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ro/zod.json -------------------------------------------------------------------------------- /public/locales/ru/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ru/common.json -------------------------------------------------------------------------------- /public/locales/ru/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} боковая панель" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ru/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ru/modules/rss.json -------------------------------------------------------------------------------- /public/locales/ru/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Ширина приложения" 3 | } -------------------------------------------------------------------------------- /public/locales/ru/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Оттенок" 3 | } -------------------------------------------------------------------------------- /public/locales/ru/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Переключить в {{scheme}} режим" 3 | } -------------------------------------------------------------------------------- /public/locales/ru/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Язык" 3 | } -------------------------------------------------------------------------------- /public/locales/ru/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/ru/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Переключить в {{theme}} режим" 3 | } -------------------------------------------------------------------------------- /public/locales/ru/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Разместить виджеты слева" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/ru/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/ru/zod.json -------------------------------------------------------------------------------- /public/locales/sk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sk/common.json -------------------------------------------------------------------------------- /public/locales/sk/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} bočný panel" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/sk/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sk/modules/rss.json -------------------------------------------------------------------------------- /public/locales/sk/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Šírka aplikácie" 3 | } -------------------------------------------------------------------------------- /public/locales/sk/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Nepriehľadnosť aplikácie" 3 | } -------------------------------------------------------------------------------- /public/locales/sk/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Odtieň" 3 | } -------------------------------------------------------------------------------- /public/locales/sk/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Prepnite do {{scheme}} režimu" 3 | } -------------------------------------------------------------------------------- /public/locales/sk/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Jazyk" 3 | } -------------------------------------------------------------------------------- /public/locales/sk/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Prepnite do {{theme}} režimu" 3 | } -------------------------------------------------------------------------------- /public/locales/sk/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Umiestni widgety vľavo" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/sk/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sk/zod.json -------------------------------------------------------------------------------- /public/locales/sl/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sl/common.json -------------------------------------------------------------------------------- /public/locales/sl/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} stranska vrstica" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/sl/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sl/modules/rss.json -------------------------------------------------------------------------------- /public/locales/sl/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Širina aplikacije" 3 | } -------------------------------------------------------------------------------- /public/locales/sl/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Prosojnost aplikacije" 3 | } -------------------------------------------------------------------------------- /public/locales/sl/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Osenčeno" 3 | } -------------------------------------------------------------------------------- /public/locales/sl/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Preklop na {{scheme}} način" 3 | } -------------------------------------------------------------------------------- /public/locales/sl/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Jezik" 3 | } -------------------------------------------------------------------------------- /public/locales/sl/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/sl/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Preklop na {{theme}} način" 3 | } -------------------------------------------------------------------------------- /public/locales/sl/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Položaj gradnikov na levi strani" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/sl/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sl/zod.json -------------------------------------------------------------------------------- /public/locales/sv/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sv/common.json -------------------------------------------------------------------------------- /public/locales/sv/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} sidofältet" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/sv/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sv/modules/rss.json -------------------------------------------------------------------------------- /public/locales/sv/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Bredd för appen" 3 | } -------------------------------------------------------------------------------- /public/locales/sv/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Appens genomskinlighet" 3 | } -------------------------------------------------------------------------------- /public/locales/sv/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Skugga" 3 | } -------------------------------------------------------------------------------- /public/locales/sv/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Växla till {{scheme}} läge" 3 | } -------------------------------------------------------------------------------- /public/locales/sv/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Språk" 3 | } -------------------------------------------------------------------------------- /public/locales/sv/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/sv/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Växla till {{theme}} läge" 3 | } -------------------------------------------------------------------------------- /public/locales/sv/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Placera widgetar till vänster" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/sv/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/sv/zod.json -------------------------------------------------------------------------------- /public/locales/tr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/locales/tr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/tr/common.json -------------------------------------------------------------------------------- /public/locales/tr/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} kenar çubuğu" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/tr/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/tr/modules/rss.json -------------------------------------------------------------------------------- /public/locales/tr/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Uygulama Genişliği" 3 | } -------------------------------------------------------------------------------- /public/locales/tr/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Uygulama Opaklığı" 3 | } -------------------------------------------------------------------------------- /public/locales/tr/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gölge " 3 | } -------------------------------------------------------------------------------- /public/locales/tr/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Modu {{scheme}} ile değiştir" 3 | } -------------------------------------------------------------------------------- /public/locales/tr/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Dil" 3 | } -------------------------------------------------------------------------------- /public/locales/tr/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Görünümü {{theme}} ile değiştir" 3 | } -------------------------------------------------------------------------------- /public/locales/tr/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Widget'ları sola konumlandırın" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/tr/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/tr/zod.json -------------------------------------------------------------------------------- /public/locales/tw/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/tw/common.json -------------------------------------------------------------------------------- /public/locales/tw/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} 側邊欄" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/tw/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/tw/modules/rss.json -------------------------------------------------------------------------------- /public/locales/tw/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "應用不透明化" 3 | } -------------------------------------------------------------------------------- /public/locales/tw/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "陰影" 3 | } -------------------------------------------------------------------------------- /public/locales/tw/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "語言" 3 | } -------------------------------------------------------------------------------- /public/locales/tw/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "將組件放在左側" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/tw/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/tw/zod.json -------------------------------------------------------------------------------- /public/locales/uk/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/uk/common.json -------------------------------------------------------------------------------- /public/locales/uk/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} бічна панель" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/uk/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/uk/modules/rss.json -------------------------------------------------------------------------------- /public/locales/uk/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Ширина додатку" 3 | } -------------------------------------------------------------------------------- /public/locales/uk/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Непрозорість" 3 | } -------------------------------------------------------------------------------- /public/locales/uk/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Тінь" 3 | } -------------------------------------------------------------------------------- /public/locales/uk/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Перейти в {{scheme}} режим" 3 | } -------------------------------------------------------------------------------- /public/locales/uk/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Мова/Language" 3 | } -------------------------------------------------------------------------------- /public/locales/uk/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/uk/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Перейти в {{theme}} режим" 3 | } -------------------------------------------------------------------------------- /public/locales/uk/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Позиція віджету зліва" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/uk/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/uk/zod.json -------------------------------------------------------------------------------- /public/locales/vi/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/vi/common.json -------------------------------------------------------------------------------- /public/locales/vi/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} thanh bên" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/vi/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/vi/modules/rss.json -------------------------------------------------------------------------------- /public/locales/vi/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Chiều rộng ứng dụng" 3 | } -------------------------------------------------------------------------------- /public/locales/vi/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Độ trong suốt ứng dụng" 3 | } -------------------------------------------------------------------------------- /public/locales/vi/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Bóng" 3 | } -------------------------------------------------------------------------------- /public/locales/vi/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Chuyển sang chế độ {{scheme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/vi/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Ngôn ngữ" 3 | } -------------------------------------------------------------------------------- /public/locales/vi/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/vi/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Chuyển sang chế độ {{theme}}" 3 | } -------------------------------------------------------------------------------- /public/locales/vi/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Đặt tiện ích ở bên trái" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/vi/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/vi/zod.json -------------------------------------------------------------------------------- /public/locales/zh/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/zh/common.json -------------------------------------------------------------------------------- /public/locales/zh/layout/mobile/drawer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "{{position}} 侧边栏" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/zh/modules/rss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/zh/modules/rss.json -------------------------------------------------------------------------------- /public/locales/zh/settings/customization/app-width.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "应用宽度" 3 | } -------------------------------------------------------------------------------- /public/locales/zh/settings/customization/opacity-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "应用的不透明度" 3 | } -------------------------------------------------------------------------------- /public/locales/zh/settings/customization/shade-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "阴影" 3 | } -------------------------------------------------------------------------------- /public/locales/zh/settings/general/color-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "切换到 {{scheme}} 模式" 3 | } -------------------------------------------------------------------------------- /public/locales/zh/settings/general/internationalization.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "语言" 3 | } -------------------------------------------------------------------------------- /public/locales/zh/settings/general/module-enabler.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/locales/zh/settings/general/theme-selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "切换到 {{theme}} 模式" 3 | } -------------------------------------------------------------------------------- /public/locales/zh/settings/general/widget-positions.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "将组件放在左边" 3 | } 4 | -------------------------------------------------------------------------------- /public/locales/zh/zod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/locales/zh/zod.json -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /src/components/AppAvatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/components/AppAvatar.test.tsx -------------------------------------------------------------------------------- /src/components/AppAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/components/AppAvatar.tsx -------------------------------------------------------------------------------- /src/components/Dashboard/Tiles/type.ts: -------------------------------------------------------------------------------- 1 | export interface BaseTileProps { 2 | className?: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/config/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/config/init.ts -------------------------------------------------------------------------------- /src/config/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/config/provider.tsx -------------------------------------------------------------------------------- /src/config/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/config/store.ts -------------------------------------------------------------------------------- /src/constants/constants.ts: -------------------------------------------------------------------------------- 1 | export const MIN_WIDTH_MOBILE = 500; 2 | -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/env.js -------------------------------------------------------------------------------- /src/hooks/use-colorscheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/hooks/use-colorscheme.tsx -------------------------------------------------------------------------------- /src/hooks/use-resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/hooks/use-resize.ts -------------------------------------------------------------------------------- /src/hooks/useExternalUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/hooks/useExternalUrl.ts -------------------------------------------------------------------------------- /src/hooks/useScreenLargerThan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/hooks/useScreenLargerThan.ts -------------------------------------------------------------------------------- /src/hooks/useScreenSmallerThan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/hooks/useScreenSmallerThan.ts -------------------------------------------------------------------------------- /src/hooks/useSetSafeInterval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/hooks/useSetSafeInterval.tsx -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/modals.ts -------------------------------------------------------------------------------- /src/modules/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MediaDisplay'; 2 | -------------------------------------------------------------------------------- /src/modules/overseerr/Movie.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/modules/overseerr/Movie.d.ts -------------------------------------------------------------------------------- /src/modules/overseerr/TvShow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/modules/overseerr/TvShow.d.ts -------------------------------------------------------------------------------- /src/modules/overseerr/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/modules/overseerr/example.json -------------------------------------------------------------------------------- /src/pages/401.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/401.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/api/[...trpc].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/api/[...trpc].ts -------------------------------------------------------------------------------- /src/pages/api/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/api/download.ts -------------------------------------------------------------------------------- /src/pages/api/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/api/migrate.ts -------------------------------------------------------------------------------- /src/pages/api/openapi.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/api/openapi.json.ts -------------------------------------------------------------------------------- /src/pages/api/trpc/[trpc].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/api/trpc/[trpc].ts -------------------------------------------------------------------------------- /src/pages/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/auth/login.tsx -------------------------------------------------------------------------------- /src/pages/b/[slug].tsx: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from '../board/[slug]'; 2 | -------------------------------------------------------------------------------- /src/pages/b/[slug]/customize.tsx: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from '../../board/[slug]/customize'; 2 | -------------------------------------------------------------------------------- /src/pages/b/index.tsx: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from '../board'; 2 | -------------------------------------------------------------------------------- /src/pages/board/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/board/[slug].tsx -------------------------------------------------------------------------------- /src/pages/board/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/board/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/about.tsx -------------------------------------------------------------------------------- /src/pages/manage/boards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/boards/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/tools/docker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/tools/docker.tsx -------------------------------------------------------------------------------- /src/pages/manage/tools/migrate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/tools/migrate.tsx -------------------------------------------------------------------------------- /src/pages/manage/tools/swagger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/tools/swagger.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/users/create.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/users/index.tsx -------------------------------------------------------------------------------- /src/pages/manage/users/invites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/manage/users/invites.tsx -------------------------------------------------------------------------------- /src/pages/onboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/onboard.tsx -------------------------------------------------------------------------------- /src/pages/user/preferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/pages/user/preferences.tsx -------------------------------------------------------------------------------- /src/server/api/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/helper.ts -------------------------------------------------------------------------------- /src/server/api/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/root.ts -------------------------------------------------------------------------------- /src/server/api/routers/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/app.ts -------------------------------------------------------------------------------- /src/server/api/routers/board.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/board.ts -------------------------------------------------------------------------------- /src/server/api/routers/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/calendar.ts -------------------------------------------------------------------------------- /src/server/api/routers/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/config.ts -------------------------------------------------------------------------------- /src/server/api/routers/dash-dot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/dash-dot.ts -------------------------------------------------------------------------------- /src/server/api/routers/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/download.ts -------------------------------------------------------------------------------- /src/server/api/routers/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/icon.ts -------------------------------------------------------------------------------- /src/server/api/routers/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/migrate.ts -------------------------------------------------------------------------------- /src/server/api/routers/notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/notebook.ts -------------------------------------------------------------------------------- /src/server/api/routers/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/password.ts -------------------------------------------------------------------------------- /src/server/api/routers/rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/rss.ts -------------------------------------------------------------------------------- /src/server/api/routers/tdarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/tdarr.ts -------------------------------------------------------------------------------- /src/server/api/routers/usenet/nzbget/nzbget-api.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'nzbget-api'; 2 | -------------------------------------------------------------------------------- /src/server/api/routers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/user.ts -------------------------------------------------------------------------------- /src/server/api/routers/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/routers/weather.ts -------------------------------------------------------------------------------- /src/server/api/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/api/trpc.ts -------------------------------------------------------------------------------- /src/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/auth.ts -------------------------------------------------------------------------------- /src/server/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/db/index.ts -------------------------------------------------------------------------------- /src/server/db/queries/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/db/queries/user.ts -------------------------------------------------------------------------------- /src/server/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/db/schema.ts -------------------------------------------------------------------------------- /src/server/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/server/openai.ts -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /src/tools/_tests/language.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/_tests/language.spec.ts -------------------------------------------------------------------------------- /src/tools/acceptableStatusCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/acceptableStatusCodes.ts -------------------------------------------------------------------------------- /src/tools/bytesHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/bytesHelper.ts -------------------------------------------------------------------------------- /src/tools/client/app-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/app-properties.ts -------------------------------------------------------------------------------- /src/tools/client/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/arrays.ts -------------------------------------------------------------------------------- /src/tools/client/calculateEta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/calculateEta.ts -------------------------------------------------------------------------------- /src/tools/client/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/math.ts -------------------------------------------------------------------------------- /src/tools/client/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/objects.ts -------------------------------------------------------------------------------- /src/tools/client/parseDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/parseDuration.ts -------------------------------------------------------------------------------- /src/tools/client/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/client/time.ts -------------------------------------------------------------------------------- /src/tools/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/color.ts -------------------------------------------------------------------------------- /src/tools/config/configExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/config/configExists.ts -------------------------------------------------------------------------------- /src/tools/config/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/config/getConfig.ts -------------------------------------------------------------------------------- /src/tools/config/readConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/config/readConfig.ts -------------------------------------------------------------------------------- /src/tools/config/wrapper-finder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/config/wrapper-finder.ts -------------------------------------------------------------------------------- /src/tools/config/writeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/config/writeConfig.ts -------------------------------------------------------------------------------- /src/tools/humanFileSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/humanFileSize.ts -------------------------------------------------------------------------------- /src/tools/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/language.ts -------------------------------------------------------------------------------- /src/tools/server/loginBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/server/loginBuilder.ts -------------------------------------------------------------------------------- /src/tools/server/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/server/theme/theme.ts -------------------------------------------------------------------------------- /src/tools/server/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/server/url.ts -------------------------------------------------------------------------------- /src/tools/shared/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/shared/app.ts -------------------------------------------------------------------------------- /src/tools/shared/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/shared/strings.ts -------------------------------------------------------------------------------- /src/tools/shared/time/date.tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/tools/shared/time/date.tool.ts -------------------------------------------------------------------------------- /src/types/api/tdarr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/api/tdarr.ts -------------------------------------------------------------------------------- /src/types/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/app.ts -------------------------------------------------------------------------------- /src/types/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/area.ts -------------------------------------------------------------------------------- /src/types/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/category.ts -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/config.ts -------------------------------------------------------------------------------- /src/types/dashboardPageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/dashboardPageType.ts -------------------------------------------------------------------------------- /src/types/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/helpers.ts -------------------------------------------------------------------------------- /src/types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/settings.ts -------------------------------------------------------------------------------- /src/types/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/shape.ts -------------------------------------------------------------------------------- /src/types/tile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/types/tile.ts -------------------------------------------------------------------------------- /src/types/wrapper.ts: -------------------------------------------------------------------------------- 1 | export interface WrapperType { 2 | id: string; 3 | position: number; 4 | } 5 | -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/auth/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/auth/adapter.ts -------------------------------------------------------------------------------- /src/utils/auth/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/auth/cookies.ts -------------------------------------------------------------------------------- /src/utils/auth/credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/auth/credentials.ts -------------------------------------------------------------------------------- /src/utils/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/auth/index.ts -------------------------------------------------------------------------------- /src/utils/auth/ldap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/auth/ldap.ts -------------------------------------------------------------------------------- /src/utils/auth/oidc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/auth/oidc.ts -------------------------------------------------------------------------------- /src/utils/empty-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/empty-provider.ts -------------------------------------------------------------------------------- /src/utils/i18n-zod-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/i18n-zod-resolver.ts -------------------------------------------------------------------------------- /src/utils/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/security.ts -------------------------------------------------------------------------------- /src/utils/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/utils/session.ts -------------------------------------------------------------------------------- /src/validations/boards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/validations/boards.ts -------------------------------------------------------------------------------- /src/validations/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/validations/invite.ts -------------------------------------------------------------------------------- /src/validations/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/validations/user.ts -------------------------------------------------------------------------------- /src/widgets/WidgetWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/WidgetWrapper.tsx -------------------------------------------------------------------------------- /src/widgets/boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/boundary.tsx -------------------------------------------------------------------------------- /src/widgets/calendar/MediaList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/calendar/MediaList.tsx -------------------------------------------------------------------------------- /src/widgets/calendar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/calendar/type.ts -------------------------------------------------------------------------------- /src/widgets/dashDot/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/dashDot/api.ts -------------------------------------------------------------------------------- /src/widgets/dashDot/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/dashDot/types.ts -------------------------------------------------------------------------------- /src/widgets/date/DateTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/date/DateTile.tsx -------------------------------------------------------------------------------- /src/widgets/dnshole/TimerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/dnshole/TimerModal.tsx -------------------------------------------------------------------------------- /src/widgets/dnshole/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/dnshole/type.ts -------------------------------------------------------------------------------- /src/widgets/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/helper.ts -------------------------------------------------------------------------------- /src/widgets/iframe/IFrameTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/iframe/IFrameTile.tsx -------------------------------------------------------------------------------- /src/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/index.ts -------------------------------------------------------------------------------- /src/widgets/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/loading.tsx -------------------------------------------------------------------------------- /src/widgets/rss/RssWidgetTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/rss/RssWidgetTile.tsx -------------------------------------------------------------------------------- /src/widgets/useNet/UseNetTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/useNet/UseNetTile.tsx -------------------------------------------------------------------------------- /src/widgets/useNet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/useNet/types.ts -------------------------------------------------------------------------------- /src/widgets/video/VideoFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/video/VideoFeed.tsx -------------------------------------------------------------------------------- /src/widgets/widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/src/widgets/widgets.ts -------------------------------------------------------------------------------- /tests/pages/auth/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/tests/pages/auth/login.spec.ts -------------------------------------------------------------------------------- /tests/pages/board/[slug].spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/tests/pages/board/[slug].spec.ts -------------------------------------------------------------------------------- /tests/setupVitest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/tests/setupVitest.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/turbo.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajnart/homarr/HEAD/yarn.lock --------------------------------------------------------------------------------