share/hedgewars/Data/Maps/TrophyRace/map.lua
changeset 4080 5809a2360d45
parent 4074 b73fd6ca06dd
child 4106 6a52c80a20ba
equal deleted inserted replaced
4079:f14faef5478a 4080:5809a2360d45
     2 
     2 
     3 local caption = {
     3 local caption = {
     4 	["en"] = "ShoppaKing Map Three: TrophyRace",
     4 	["en"] = "ShoppaKing Map Three: TrophyRace",
     5 	["sv"] = "ShoppaKing bana tre: TrophyRace",
     5 	["sv"] = "ShoppaKing bana tre: TrophyRace",
     6 	["pl"] = "ShoppaKing: TrophyRace",
     6 	["pl"] = "ShoppaKing: TrophyRace",
       
     7 	["es"] = "ShoppaKing, tercer mapa: TrophyRace"
     7 	}
     8 	}
     8 
     9 
     9 local subcaption = {
    10 local subcaption = {
    10 	["en"] = "Made by Wolfmarc and Dragonfly",
    11 	["en"] = "Made by Wolfmarc and Dragonfly",
    11 	["sv"] = "Skapad av Wolfmarc och Dragonfly",
    12 	["sv"] = "Skapad av Wolfmarc och Dragonfly",
    12 	["pl"] = "Zrobione przez Wolfmarca i Dragonfly",
    13 	["pl"] = "Zrobione przez Wolfmarca i Dragonfly",
       
    14 	["es"] = "Por Wolfmarc y Dragonfly"
    13 	}
    15 	}
    14 
    16 
    15 local goal = {
    17 local goal = {
    16 	["en"] = "Use your rope to get from start to finish as fast as you can!",
    18 	["en"] = "Use your rope to get from start to finish as fast as you can!",
    17 	["sv"] = "Använd ditt rep för att ta dig från start till mål så fort du kan!",
    19 	["sv"] = "Använd ditt rep för att ta dig från start till mål så fort du kan!",
    18 	["pl"] = "Użyj liny by jak najszybciej dotrzec od startu do mety",
    20 	["pl"] = "Użyj liny by jak najszybciej dotrzec od startu do mety",
       
    21 	["es"] = "¡Usa tu cuerda para llegar a la salida lo más rápido que puedas!"
    19 	}
    22 	}
    20 
    23 
    21 local done = {
    24 local done = {
    22 	["en"] = "You've reached the goal!| |Time: ",
    25 	["en"] = "You've reached the goal!| |Time: ",
    23 	["sv"] = "Du är i mål!| |Tid: ",
    26 	["sv"] = "Du är i mål!| |Tid: ",
    24 	["pl"] = "Dotarłeś do celu!| |Czas: ",
    27 	["pl"] = "Dotarłeś do celu!| |Czas: ",
       
    28 	["es"] = "¡Has llegado a la meta!| |Tiempo: "
    25 	}
    29 	}
    26 local eliminated = {
    30 local eliminated = {
    27 	["en"] = "Eliminating worst hedgehog this round...| |%s is OUT!",
    31 	["en"] = "Eliminating worst hedgehog this round...| |%s is OUT!",
    28 	["sv"] = "Eliminerar sämsta igelkotten den här omgången...| |%s är UTE!",
    32 	["sv"] = "Eliminerar sämsta igelkotten den här omgången...| |%s är UTE!",
    29 	["pl"] = "Eliminujemy najgorszego jeża tej rundy...| |%s ODPADŁ!",
    33 	["pl"] = "Eliminujemy najgorszego jeża tej rundy...| |%s ODPADŁ!",
       
    34 	["es"] = "Eliminando al peor erizo de esta ronda...| |¡%s está FUERA!"
    30 	}
    35 	}
    31 
    36 
    32 local newbesttime = {
    37 local newbesttime = {
    33 	["en"] = "NEW fastest lap: ",
    38 	["en"] = "NEW fastest lap: ",
    34 	["sv"] = "NY snabbaste tid: ",
    39 	["sv"] = "NY snabbaste tid: ",
    35 	["pl"] = "NOWE najszybsze okrążenie: ",
    40 	["pl"] = "NOWE najszybsze okrążenie: ",
       
    41 	["es"] = "NUEVA vuelta rápida: "
    36 	}
    42 	}
    37 
    43 
    38 local oldbesttime = {
    44 local oldbesttime = {
    39 	["en"] = "Fastest lap: ",
    45 	["en"] = "Fastest lap: ",
    40 	["sv"] = "Snabbaste tid: ",
    46 	["sv"] = "Snabbaste tid: ",
    41 	["pl"] = "Najszybsze okrążenie: ",
    47 	["pl"] = "Najszybsze okrążenie: ",
       
    48 	["es"] = "Vuelta rápida: "
    42 	}
    49 	}
    43 local bestclantimes = {
    50 local bestclantimes = {
    44 	["en"] = "Best laps per team: ",
    51 	["en"] = "Best laps per team: ",
    45 	["sv"] = "Bästa tider per lag: ",
    52 	["sv"] = "Bästa tider per lag: ",
    46 	["pl"] = "Najszybsze okrążenie drużyny: ",
    53 	["pl"] = "Najszybsze okrążenie drużyny: ",
       
    54 	["es"] = "Mejores tiempos por equipo: "
    47 	}
    55 	}
    48 local clantime = {
    56 local clantime = {
    49 	["en"] = "Team %d: ",
    57 	["en"] = "Team %d: ",
    50 	["sv"] = "Lag %d: ",
    58 	["sv"] = "Lag %d: ",
    51 	["pl"] = "Drużyna %d: ",
    59 	["pl"] = "Drużyna %d: ",
       
    60 	["es"] = "Equipo %d"
    52 	}
    61 	}
    53 
    62 
    54 	local function loc(text)
    63 	local function loc(text)
    55 	if text == nil then return "**missing**"
    64 	if text == nil then return "**missing**"
    56 	elseif text[L] == nil then return text["en"]
    65 	elseif text[L] == nil then return text["en"]