1 -- Hedgewars - Basketball for 2+ Players |
1 -- Hedgewars - Basketball for 2+ Players |
2 |
2 |
3 local caption = { |
3 local caption = { |
4 ["en"] = "Hedgewars-Basketball", |
4 ["en"] = "Hedgewars-Basketball", |
5 ["de"] = "Hedgewars-Basketball", |
5 ["de"] = "Hedgewars-Basketball", |
6 ["es"] = "Hedgewars-Baloncesto" |
6 ["es"] = "Hedgewars-Baloncesto", |
|
7 ["pl"] = "Hedgewars-Koszykówka" |
7 } |
8 } |
8 |
9 |
9 local subcaption = { |
10 local subcaption = { |
10 ["en"] = "Not So Friendly Match", |
11 ["en"] = "Not So Friendly Match", |
11 ["de"] = "Kein-so-Freundschaftsspiel", |
12 ["de"] = "Kein-so-Freundschaftsspiel", |
12 ["es"] = "Partido no-tan-amistoso" |
13 ["es"] = "Partido no-tan-amistoso", |
|
14 ["pl"] = "Mecz Nie-Taki-Towarzyski" |
13 } |
15 } |
14 |
16 |
15 local goal = { |
17 local goal = { |
16 ["en"] = "Bat your opponents through the|baskets and out of the map!", |
18 ["en"] = "Bat your opponents through the|baskets and out of the map!", |
17 ["de"] = "Schlage deine Widersacher durch|die Körbe und aus der Karte hinaus!", |
19 ["de"] = "Schlage deine Widersacher durch|die Körbe und aus der Karte hinaus!", |
18 ["es"] = "¡Batea a tus oponentes fuera del mapa a través de la canasta!" |
20 ["es"] = "¡Batea a tus oponentes fuera del mapa a través de la canasta!", |
|
21 ["pl"] = "Spałuj swoich przekiwników|wyrzucając ich przez kosz, za mapę!" |
19 } |
22 } |
20 |
23 |
21 local scored = { |
24 local scored = { |
22 ["en"] = " scored a point!", |
25 ["en"] = " scored a point!", |
23 ["de"] = " erhält einen Punkt!", |
26 ["de"] = " erhält einen Punkt!", |
24 ["es"] = " anotó un tanto!" |
27 ["es"] = " anotó un tanto!", |
|
28 ["pl"] = " zdobył punkt!" |
25 } |
29 } |
26 |
30 |
27 local failed = { |
31 local failed = { |
28 ["en"] = " scored a penalty!", |
32 ["en"] = " scored a penalty!", |
29 ["de"] = " erhält eine Strafe!", |
33 ["de"] = " erhält eine Strafe!", |
30 ["es"] = " anotó una falta!" |
34 ["es"] = " anotó una falta!", |
|
35 ["pl"] = " zdobył punkt karny!" |
31 } |
36 } |
32 |
37 |
33 local sscore = { |
38 local sscore = { |
34 ["en"] = "Score", |
39 ["en"] = "Score", |
35 ["de"] = "Punktestand", |
40 ["de"] = "Punktestand", |
36 ["es"] = "Puntuación" |
41 ["es"] = "Puntuación", |
|
42 ["pl"] = "Punktacja" |
37 } |
43 } |
38 |
44 |
39 local team = { |
45 local team = { |
40 ["en"] = "Team", |
46 ["en"] = "Team", |
41 ["es"] = "Equipo" |
47 ["es"] = "Equipo", |
|
48 ["pl"] = "Drużyna" |
42 } |
49 } |
43 |
50 |
44 local drowning = { |
51 local drowning = { |
45 ["en"] = "is out and", |
52 ["en"] = "is out and", |
46 ["de"] = "ist draußen und", |
53 ["de"] = "ist draußen und", |
47 ["es"] = "cayó y" |
54 ["es"] = "cayó y", |
|
55 ["en"] = "jest wyautowany i", |
48 } |
56 } |
49 |
57 |
50 local function loc(text) |
58 local function loc(text) |
51 if text == nil then return "**missing**" |
59 if text == nil then return "**missing**" |
52 elseif text[L] == nil then return text["en"] |
60 elseif text[L] == nil then return text["en"] |