Fix wording (#2174)

This commit is contained in:
Aurélien Vivet
2021-01-05 09:12:59 +01:00
committed by GitHub
parent c115d61234
commit 8bdc710ac4
2 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ gd::String InstructionSentenceFormatter::LabelFromType(const gd::String &type) {
else if (type == "mouse")
return _("Mouse button");
else if (type == "yesorno")
return _("Yes or no");
return _("Yes or No");
else if (type == "police")
return _("Font");
else if (type == "color")

View File

@@ -385,11 +385,11 @@ export default class EventsFunctionParametersEditor extends React.Component<
/>
<SelectOption
value="yesorno"
primaryText={t`Yes or no (boolean)`}
primaryText={t`Yes or No (boolean)`}
/>
<SelectOption
value="trueorfalse"
primaryText={t`True or false (boolean)`}
primaryText={t`True or False (boolean)`}
/>
</SelectField>
)}