Fixing word issue

English has some false friends... like the German "Enter" is actually return in English.
This commit is contained in:
SinusFox
2024-10-07 17:27:50 +02:00
parent eaa5edc231
commit 17bd1f391c
+4 -4
View File
@@ -19,19 +19,19 @@ export default function Home() {
</header> </header>
<Box <Box
title={"Objective"} title={"Objective"}
placeholder={"Insert your objective here. One objective is allowed. Use one line for it (no \"enter\"!) Allowed symbols are 0-9, a-z, A-Z and <>=.\nExample:\nx + y\n-786433 x1 + 655361 x2"} placeholder={"Insert your objective here. One objective is allowed. Use one line for it (no \"return\"!) Allowed symbols are 0-9, a-z, A-Z and <>=.\nExample:\nx + y\n-786433 x1 + 655361 x2"}
id="objective"/> id="objective"/>
<Box <Box
title={"Subject"} title={"Subject"}
placeholder={"Insert your subject here. One per line (divide by 'enter' button). Allowed symbols are 0-9, a-z, A-Z and <>=.\nExample:\n+1 x + 2 y <= 15\n524321 x14 + 524305 x15 <= 4194303.5"} placeholder={"Insert your subject here. One per line (divide by 'return' button). Allowed symbols are 0-9, a-z, A-Z and <>=.\nExample:\n+1 x + 2 y <= 15\n524321 x14 + 524305 x15 <= 4194303.5"}
id="subject"/> id="subject"/>
<Box <Box
title={"Bounds"} title={"Bounds"}
placeholder={"Insert your bounds here. One per line (divide by 'enter' button). Allowed symbols are 0-9, a-z, A-Z and <>=.\nExample:\nx >= 0\nx > 0\n0 <= x1 <= 1"} placeholder={"Insert your bounds here. One per line (divide by 'return' button). Allowed symbols are 0-9, a-z, A-Z and <>=.\nExample:\nx >= 0\nx > 0\n0 <= x1 <= 1"}
id="bounds"/> id="bounds"/>
<Box <Box
title={"Variables"} title={"Variables"}
placeholder={"List all your variables. One per line (divide by 'enter' button). Allowed symbols are a-z, A-Z.\nExample:\nx\ny"} placeholder={"List all your variables. One per line (divide by 'return' button). Allowed symbols are a-z, A-Z.\nExample:\nx\ny"}
id="vars" /> id="vars" />
<Button <Button
title={"Calculate"} title={"Calculate"}