1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
include "scripting/richtext.lua"
won_game = {
title = _"Congratulations!",
body = p(_"You have won this game!")
}
lost_game = {
title = _"You are defeated!",
body = p(_"You lost your last warehouse and are therefore defeated. You may continue as spectator if you want.")
}
won_game_over = {
title = _"You won",
body = h2(_"You are the winner!")
}
lost_game_over = {
title = _"You lost",
body = h2(_"You’ve lost this game!")
}
game_status = {
title = _"Status",
-- TRANSLATORS: This is an overview for all players.
body = h2(_"Player overview:")
}
|