forked from ajnart/homarr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Custom column counts for gridstack ajnart#613 ajnart#660
- Loading branch information
Showing
37 changed files
with
2,086 additions
and
767 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
const { i18n } = require('./next-i18next.config'); | ||
|
||
const removeImports = require('next-remove-imports')(); | ||
|
||
const withBundleAnalyzer = require('@next/bundle-analyzer')({ | ||
enabled: process.env.ANALYZE === 'true', | ||
}); | ||
|
||
module.exports = withBundleAnalyzer({ | ||
images: { | ||
domains: ['cdn.jsdelivr.net'], | ||
}, | ||
reactStrictMode: true, | ||
output: 'standalone', | ||
i18n, | ||
}); | ||
module.exports = withBundleAnalyzer( | ||
removeImports({ | ||
experimental: { esmExternals: true }, | ||
images: { | ||
domains: ['cdn.jsdelivr.net'], | ||
}, | ||
reactStrictMode: true, | ||
output: 'standalone', | ||
i18n, | ||
}) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
{ | ||
"description": "Homarr is a <strong>sleek</strong>, <strong>modern</strong> dashboard that puts all of your apps and services at your fingertips. With Homarr, you can access and control everything in one convenient location. Homarr seamlessly integrates with the apps you've added, providing you with valuable information and giving you complete control. Installation is a breeze, and Homarr supports a wide range of deployment methods.", | ||
"i18n": "Loaded I18n translation namespaces", | ||
"locales": "Configured I18n locales", | ||
"contact": "Having trouble or questions? Connect with us!", | ||
"addToDashboard": "Add to Dashboard" | ||
} | ||
"addToDashboard": "Add to Dashboard", | ||
"metrics": { | ||
"configurationSchemaVersion": "Configuration schema version", | ||
"configurationsCount": "Available configurations", | ||
"version": "Version", | ||
"nodeEnvironment": "Node environment", | ||
"i18n": "Loaded I18n translation namespaces", | ||
"locales": "Configured I18n locales" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"colors": "Colors", | ||
"suffix": "{{color}} color" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"text": "Customizations allow you to configure and adjust your experience with Homarr to your preferences.", | ||
"accordeon": { | ||
"layout": { | ||
"name": "Layout", | ||
"description": "Enable and disable elements on your header and dashboard tiles" | ||
}, | ||
"gridstack": { | ||
"name": "Gridstack", | ||
"description": "Customize the behaviour and columns of your dashboard area" | ||
}, | ||
"pageMetadata": { | ||
"name": "Page Metadata", | ||
"description": "Adjust titles, logo and PWA" | ||
}, | ||
"appereance": { | ||
"name": "Appereance", | ||
"description": "Customize the background, colors and apps appereance" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"columnsCount": { | ||
"labelPreset": "Columns in {{size}} size", | ||
"descriptionPreset": "Number of columns when the screen is less than {{pixels}} pixels wide", | ||
"descriptionExceedsPreset": "Number of columns when the screen size exceeds {{pixels}} pixels" | ||
}, | ||
"unsavedChanges": "You have unsaved changes. Click the Apply changes button below to apply and save.", | ||
"applyChanges": "Apply changes", | ||
"defaultValues": "Default values" | ||
} |
16 changes: 11 additions & 5 deletions
16
public/locales/en/settings/customization/page-appearance.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.