fix(yaml): yes & no are reserved keywords in yaml, so they have to be quoted

This commit is contained in:
Colin Darie 2023-04-19 18:26:40 +02:00
parent f80cccba93
commit e5df31fd66
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
en:
yes: "Yes"
no: "No"
"yes": "Yes"
"no": "No"
legend: "Yes/No"

View file

@ -1,4 +1,4 @@
fr:
yes: "Oui"
no: "Non"
"yes": "Oui"
"no": "Non"
legend: "Oui/Non"