mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-03-29 06:47:03 +00:00
improved some messages
This commit is contained in:
parent
e97d1c966e
commit
bfa29e6d47
@ -530,7 +530,7 @@ EX string geometry_name() {
|
|||||||
return XLAT("~SL(2,R)~");
|
return XLAT("~SL(2,R)~");
|
||||||
|
|
||||||
case gcProduct:
|
case gcProduct:
|
||||||
return PIU(geometry_name()) + " x E";
|
return XLAT("%1 x E", PIU(geometry_name()));
|
||||||
}
|
}
|
||||||
return "?";
|
return "?";
|
||||||
}
|
}
|
||||||
@ -739,7 +739,7 @@ EX void showEuclideanMenu() {
|
|||||||
XLAT(
|
XLAT(
|
||||||
"In S2xE, objects at spherical distances which are multiples of π will look like "
|
"In S2xE, objects at spherical distances which are multiples of π will look like "
|
||||||
"rings, and objects close to these will look like crescents. "
|
"rings, and objects close to these will look like crescents. "
|
||||||
"This setting constrols the quality of rendering these rings and crescents.")
|
"This setting controls the quality of rendering these rings and crescents.")
|
||||||
);
|
);
|
||||||
dialog::bound_low(1);
|
dialog::bound_low(1);
|
||||||
dialog::bound_up(256);
|
dialog::bound_up(256);
|
||||||
|
@ -105,6 +105,10 @@ EX void welcomeMessage() {
|
|||||||
addMessage(XLAT("Good luck in the elliptic space!"));
|
addMessage(XLAT("Good luck in the elliptic space!"));
|
||||||
else if(sphere)
|
else if(sphere)
|
||||||
addMessage(XLAT("Welcome to Spherogue!"));
|
addMessage(XLAT("Welcome to Spherogue!"));
|
||||||
|
else if(in_s2xe())
|
||||||
|
addMessage(XLAT("Welcome to Spherindrogue!"));
|
||||||
|
else if(in_h2xe())
|
||||||
|
addMessage(XLAT("Welcome to Hyper-X-R-Rogue!"));
|
||||||
else if(sol)
|
else if(sol)
|
||||||
addMessage(XLAT("Welcome to SolvRogue!"));
|
addMessage(XLAT("Welcome to SolvRogue!"));
|
||||||
else if(nil)
|
else if(nil)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user