File: win_condition_texts.lua

package info (click to toggle)
widelands 1%3A21-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 594,308 kB
  • sloc: cpp: 134,669; ansic: 18,676; python: 7,200; sh: 912; xml: 439; makefile: 175
file content (27 lines) | stat: -rw-r--r-- 576 bytes parent folder | download
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:")
}