mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
no issue - this PR references indirecty to https://github.com/TryGhost/Ghost/pull/8437 - i would like to have the settings change already in place before we release the beta - the i18n feature is able to change the locale of Ghost - most i18n libraries use locale - adding/changing settings doesn't require a migration file, but it can make the database a bit messy (because you can end up with default_locale and lang) - furthermore we agreed that the default locale for Ghost should be simply `en`, not `en_US` or `en_GB`
106 lines
2.4 KiB
JSON
106 lines
2.4 KiB
JSON
{
|
|
"core": {
|
|
"db_hash": {
|
|
"defaultValue": null
|
|
},
|
|
"next_update_check": {
|
|
"defaultValue": null
|
|
},
|
|
"display_update_notification": {
|
|
"defaultValue": null
|
|
},
|
|
"seen_notifications": {
|
|
"defaultValue": "[]"
|
|
}
|
|
},
|
|
"blog": {
|
|
"title": {
|
|
"defaultValue": "Ghost"
|
|
},
|
|
"description": {
|
|
"defaultValue": "Just a blogging platform."
|
|
},
|
|
"logo": {
|
|
"defaultValue": ""
|
|
},
|
|
"cover_image": {
|
|
"defaultValue": ""
|
|
},
|
|
"icon": {
|
|
"defaultValue": ""
|
|
},
|
|
"default_locale": {
|
|
"defaultValue": "en",
|
|
"validations": {
|
|
"isEmpty": false
|
|
}
|
|
},
|
|
"active_timezone": {
|
|
"defaultValue": "Etc/UTC",
|
|
"validations": {
|
|
"isTimezone": true,
|
|
"isEmpty": false
|
|
}
|
|
},
|
|
"force_i18n": {
|
|
"defaultValue": "true",
|
|
"validations": {
|
|
"isEmpty": false,
|
|
"isIn": [["true", "false"]]
|
|
}
|
|
},
|
|
"permalinks": {
|
|
"defaultValue": "/:slug/",
|
|
"validations": {
|
|
"matches": "^(\/:?[a-z0-9_-]+){1,5}\/$",
|
|
"matches": "(:id|:slug|:year|:month|:day|:author)",
|
|
"notContains": "/ghost/"
|
|
}
|
|
},
|
|
"amp": {
|
|
"defaultValue" : "true"
|
|
},
|
|
"ghost_head": {
|
|
"defaultValue" : ""
|
|
},
|
|
"ghost_foot": {
|
|
"defaultValue" : ""
|
|
},
|
|
"facebook": {
|
|
"defaultValue" : ""
|
|
},
|
|
"twitter": {
|
|
"defaultValue" : ""
|
|
},
|
|
"labs": {
|
|
"defaultValue": "{}"
|
|
},
|
|
"navigation": {
|
|
"defaultValue": "[{\"label\":\"Home\", \"url\":\"/\"}]"
|
|
},
|
|
"slack": {
|
|
"defaultValue": "[{\"url\":\"\"}]"
|
|
}
|
|
},
|
|
"theme": {
|
|
"active_theme": {
|
|
"defaultValue": "casper"
|
|
}
|
|
},
|
|
"app": {
|
|
"active_apps": {
|
|
"defaultValue": "[]"
|
|
},
|
|
"installed_apps": {
|
|
"defaultValue": "[]"
|
|
}
|
|
},
|
|
"private": {
|
|
"is_private": {
|
|
"defaultValue": "false"
|
|
},
|
|
"password": {
|
|
"defaultValue": ""
|
|
}
|
|
}
|
|
}
|