Config schema: fix language
This commit is contained in:
parent
567bc7a5f2
commit
2a9e94389b
1 changed files with 2 additions and 7 deletions
|
@ -1,11 +1,5 @@
|
||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"definitions": {
|
|
||||||
"language": {
|
|
||||||
"type": "string",
|
|
||||||
"enum": ["en", "fi"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"lunchBreakDuration": {
|
"lunchBreakDuration": {
|
||||||
|
@ -13,7 +7,8 @@
|
||||||
"description": "Remove or set as \"00:00\" if you don't have an unpaid lunch break or if you normally log your lunch break hours"
|
"description": "Remove or set as \"00:00\" if you don't have an unpaid lunch break or if you normally log your lunch break hours"
|
||||||
},
|
},
|
||||||
"language": {
|
"language": {
|
||||||
"$ref": "#/definitions/language",
|
"type": "string",
|
||||||
|
"enum": ["en", "fi"],
|
||||||
"description": "The language of the application. Currently supported languages are 'en', 'fi'"
|
"description": "The language of the application. Currently supported languages are 'en', 'fi'"
|
||||||
},
|
},
|
||||||
"timestampFormat": {
|
"timestampFormat": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue