share/hedgewars/Data/Maps/Basketball/map.lua
changeset 3050 d6937fc885a1
parent 3004 e9b3613cc3fb
child 3197 e1fa864fd6ca
equal deleted inserted replaced
3049:05ec3482930d 3050:d6937fc885a1
     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 	}
     7 	}
     7 
     8 
     8 local subcaption = {
     9 local subcaption = {
     9 	["en"] = "Not So Friendly Match",
    10 	["en"] = "Not So Friendly Match",
    10 	["de"] = "Kein-so-Freundschaftsspiel"
    11 	["de"] = "Kein-so-Freundschaftsspiel",
       
    12 	["es"] = "Partido no-tan-amistoso"
    11 	}
    13 	}
    12 
    14 
    13 local goal = {
    15 local goal = {
    14 	["en"] = "Bat your opponents through the|baskets and out of the map!",
    16 	["en"] = "Bat your opponents through the|baskets and out of the map!",
    15 	["de"] = "Schlage deine Widersacher durch|die Körbe und aus der Karte hinaus!"
    17 	["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!"
    16 	}
    19 	}
    17 
    20 
    18 local scored = {
    21 local scored = {
    19 	["en"] = " scored a point!",
    22 	["en"] = " scored a point!",
    20 	["de"] = " erhält einen Punkt!"
    23 	["de"] = " erhält einen Punkt!",
       
    24 	["es"] = " anotó un tanto!"
    21 	}
    25 	}
    22 
    26 
    23 local failed = {
    27 local failed = {
    24 	["en"] = " scored a penalty!",
    28 	["en"] = " scored a penalty!",
    25 	["de"] = " erhält eine Strafe!"
    29 	["de"] = " erhält eine Strafe!",
       
    30 	["es"] = " anotó una falta!"
    26 	}
    31 	}
    27 
    32 
    28 	local sscore = {
    33 	local sscore = {
    29 	["en"] = "Score",
    34 	["en"] = "Score",
    30 	["de"] = "Punktestand"
    35 	["de"] = "Punktestand",
       
    36 	["es"] = "Puntuación"
    31 	}
    37 	}
    32 
    38 
    33 local team = {
    39 local team = {
    34 	["en"] = "Team"
    40 	["en"] = "Team",
       
    41 	["es"] = "Equipo"
    35 	}
    42 	}
    36 
    43 
    37 local drowning = {
    44 local drowning = {
    38 	["en"] = "is out and",
    45 	["en"] = "is out and",
    39 	["de"] = "ist draußen und"
    46 	["de"] = "ist draußen und",
       
    47 	["es"] = "cayó y"
    40 	}
    48 	}
    41 
    49 
    42 local function loc(text)
    50 local function loc(text)
    43 	if text == nil then return "**missing**"
    51 	if text == nil then return "**missing**"
    44 	elseif text[L] == nil then return text["en"]
    52 	elseif text[L] == nil then return text["en"]