share/hedgewars/Data/Missions/Training/Bazooka Training.lua
changeset 3223 f0e590790f3b
parent 3013 dfc1f16aeb53
equal deleted inserted replaced
3222:b7abfe647631 3223:f0e590790f3b
    16 -- Text may then be accessed using "arrayname[L]".
    16 -- Text may then be accessed using "arrayname[L]".
    17 
    17 
    18 local caption = {
    18 local caption = {
    19 	["en"] = "Bazooka Training",
    19 	["en"] = "Bazooka Training",
    20 	["de"] = "Bazooka-Training",
    20 	["de"] = "Bazooka-Training",
    21 	["es"] = "Entrenamiento con bazuca"
    21 	["es"] = "Entrenamiento con bazuca",
       
    22 	["pl"] = "Trening bazooki"
    22 	-- To add other languages, just add lines similar to the
    23 	-- To add other languages, just add lines similar to the
    23 	-- existing ones - don't forget the trailing ","!
    24 	-- existing ones - don't forget the trailing ","!
    24 	}
    25 	}
    25 
    26 
    26 local subcaption = {
    27 local subcaption = {
    27 	["en"] = "Aiming Practice",
    28 	["en"] = "Aiming Practice",
    28 	["de"] = "Zielübung",
    29 	["de"] = "Zielübung",
    29 	["es"] = "Practica tu puntería"
    30 	["es"] = "Practica tu puntería",
       
    31 	["pl"] = "Potrenuj celność"
    30 	}
    32 	}
    31 
    33 
    32 local goal = {
    34 local goal = {
    33 	["en"] = "Eliminate all targets before your time runs out.|You have unlimited ammo for this mission.",
    35 	["en"] = "Eliminate all targets before your time runs out.|You have unlimited ammo for this mission.",
    34 	["de"] = "Eliminiere alle Ziele bevor die Zeit ausläuft.|Du hast in dieser Mission unbegrenzte Munition.",
    36 	["de"] = "Eliminiere alle Ziele bevor die Zeit ausläuft.|Du hast in dieser Mission unbegrenzte Munition.",
    35 	["es"] = "Destruye todos los objetivos antes de que se agote el tiempo.|La munición en esta misión es ilimitada."
    37 	["es"] = "Destruye todos los objetivos antes de que se agote el tiempo.|La munición en esta misión es ilimitada.",
       
    38 	["pl"] = "Zniszcz wszystkie cele zanim upłynie czas.|W tej misji masz nieskończoną ilość amunicji."
    36 	}
    39 	}
    37 
    40 
    38 local timeout = {
    41 local timeout = {
    39 	["en"] = "Oh no! Time's up! Just try again.",
    42 	["en"] = "Oh no! Time's up! Just try again.",
    40 	["de"] = "Oh nein! Die Zeit ist um! Versuche es nochmal.",
    43 	["de"] = "Oh nein! Die Zeit ist um! Versuche es nochmal.",
    41 	["es"] = "¡Oh, no, se te acabó el tiempo! ¿Por qué no lo intentas de nuevo?"
    44 	["es"] = "¡Oh, no, se te acabó el tiempo! ¿Por qué no lo intentas de nuevo?",
       
    45 	["pl"] = "Ajajaj! Koniec czasu! Spróbuj jeszcze raz."
    42 	}
    46 	}
    43 
    47 
    44 local success = {
    48 local success = {
    45 	["en"] = "Congratulations! You've eliminated all targets|within the allowed time frame.",
    49 	["en"] = "Congratulations! You've eliminated all targets|within the allowed time frame.",
    46 	["de"] = "Gratulation! Du hast alle Ziele innerhalb der|verfügbaren Zeit ausgeschaltet.",
    50 	["de"] = "Gratulation! Du hast alle Ziele innerhalb der|verfügbaren Zeit ausgeschaltet.",
    47 	["es"] = "¡Felicidades! Has destruido todos los objectivos|dentro del tiempo establecido."
    51 	["es"] = "¡Felicidades! Has destruido todos los objectivos|dentro del tiempo establecido.",
       
    52 	["pl"] = "Gratulacje! Zniszczyłeś przed czasem wszystkie cele."
    48 	}
    53 	}
    49 
    54 
    50 local teamname = {
    55 local teamname = {
    51 	["en"] = "'Zooka Team",
    56 	["en"] = "'Zooka Team",
    52 	["de"] = "Die Knalltüten",
    57 	["de"] = "Die Knalltüten",
    53 	["es"] = "Bazuqueros"
    58 	["es"] = "Bazuqueros",
       
    59 	["pl"] = "Bazookinierzy",
    54 	}
    60 	}
    55 
    61 
    56 local hogname = {
    62 local hogname = {
    57 	["en"] = "Hunter",
    63 	["en"] = "Hunter",
    58 	["de"] = "Jäger",
    64 	["de"] = "Jäger",
    59 	["es"] = "Artillero"
    65 	["es"] = "Artillero",
       
    66 	["pl"] = "Strzelec"
    60 	}
    67 	}
    61 
    68 
    62 -- To handle missing texts we define a small wrapper function that
    69 -- To handle missing texts we define a small wrapper function that
    63 -- we'll use to retrieve text.
    70 -- we'll use to retrieve text.
    64 local function loc(text)
    71 local function loc(text)