fix(yaml): yes & no are reserved keywords in yaml, so they have to be quoted
This commit is contained in:
parent
f80cccba93
commit
e5df31fd66
2 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
en:
|
||||
yes: "Yes"
|
||||
no: "No"
|
||||
"yes": "Yes"
|
||||
"no": "No"
|
||||
legend: "Yes/No"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
fr:
|
||||
yes: "Oui"
|
||||
no: "Non"
|
||||
"yes": "Oui"
|
||||
"no": "Non"
|
||||
legend: "Oui/Non"
|
||||
|
|
Loading…
Reference in a new issue