mirror of https://github.com/Lissy93/dashy.git
🗺️ Adds default value for language, English
This commit is contained in:
parent
075e63f9b5
commit
b1f176260b
|
@ -11,6 +11,8 @@ module.exports = {
|
|||
},
|
||||
/* Default appConfig to be used, if user does not specify their own */
|
||||
appConfig: {},
|
||||
/* Default language code */
|
||||
language: 'en',
|
||||
/* Default icon size to be applied on initial load */
|
||||
iconSize: 'medium',
|
||||
/* Default layout to be applied on initial load */
|
||||
|
@ -58,6 +60,7 @@ module.exports = {
|
|||
},
|
||||
/* Key names for local storage identifiers */
|
||||
localStorageKeys: {
|
||||
LANGUAGE: 'language',
|
||||
HIDE_WELCOME_BANNER: 'hideWelcomeHelpers',
|
||||
LAYOUT_ORIENTATION: 'layoutOrientation',
|
||||
COLLAPSE_STATE: 'collapseState',
|
||||
|
@ -87,6 +90,7 @@ module.exports = {
|
|||
REBUILD_APP: 'REBUILD_APP',
|
||||
THEME_MAKER: 'THEME_MAKER',
|
||||
ABOUT_APP: 'ABOUT_APP',
|
||||
LANG_SWITCHER: 'LANG_SWITCHER',
|
||||
},
|
||||
/* Key names for the top-level objects in conf.yml */
|
||||
topLevelConfKeys: {
|
||||
|
|
Loading…
Reference in New Issue