upper case first letter of title

This commit is contained in:
Zutatensuppe 2021-07-11 22:56:52 +02:00
parent e5fb49ecb1
commit 126384e5bd

View file

@ -48,8 +48,8 @@ export default defineComponent({
}, },
shapeMode () { shapeMode () {
switch (this.game.shapeMode) { switch (this.game.shapeMode) {
case ShapeMode.FLAT: return ['Flat', 'all pieces flat on all sides'] case ShapeMode.FLAT: return ['Flat', 'All pieces flat on all sides']
case ShapeMode.ANY: return ['Any', 'flat pieces can occur anywhere'] case ShapeMode.ANY: return ['Any', 'Flat pieces can occur anywhere']
case ShapeMode.NORMAL: case ShapeMode.NORMAL:
default: default:
return ['Normal', ''] return ['Normal', '']
@ -57,10 +57,10 @@ export default defineComponent({
}, },
snapMode () { snapMode () {
switch (this.game.snapMode) { switch (this.game.snapMode) {
case SnapMode.REAL: return ['Real', 'pieces snap only to corners, already snapped pieces and to each other'] case SnapMode.REAL: return ['Real', 'Pieces snap only to corners, already snapped pieces and to each other']
case SnapMode.NORMAL: case SnapMode.NORMAL:
default: default:
return ['Normal', 'pieces snap to final destination and to each other'] return ['Normal', 'Pieces snap to final destination and to each other']
} }
}, },
}, },