Advertisement
Guest User

Untitled

a guest
Sep 10th, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.83 KB | None | 0 0
  1. ---- English language strings
  2.  
  3. local L = LANG.CreateLanguage("English")
  4.  
  5. --- General text used in various places
  6. L.traitor = "Traitor"
  7. L.detective = "Detective"
  8. L.innocent = "Innocent"
  9. L.last_words = "Last Words"
  10.  
  11. L.terrorists = "Terrorists"
  12. L.spectators = "Spectators"
  13.  
  14. --- Round status messages
  15. L.round_minplayers = "Not enough players to start a new round..."
  16. L.round_voting = "Vote in progress, delaying new round by {num} seconds..."
  17. L.round_begintime = "A new round begins in {num} seconds. Prepare yourself."
  18. L.round_selected = "The Traitors have been selected."
  19. L.round_started = "The round has begun!"
  20. L.round_restart = "The round has been forced to restart by an admin."
  21.  
  22. L.round_traitors_one = "Traitor, you stand alone."
  23. L.round_traitors_more = "Traitor, these are your allies: {names}"
  24.  
  25. L.win_time = "Time has run out. The Traitors lose."
  26. L.win_traitor = "The Traitors have won!"
  27. L.win_innocent = "The Traitors have been defeated!"
  28. L.win_showreport = "Let's look at the round report for {num} seconds."
  29.  
  30. L.limit_round = "Round limit reached. {mapname} will load soon."
  31. L.limit_time = "Time limit reached. {mapname} will load soon."
  32. L.limit_vote = "Round or time limit reached. Voting time!"
  33. L.limit_left = "{num} round(s) or {time} minutes remaining before the map changes to {mapname}."
  34.  
  35. --- Credit awards
  36. L.credit_det_all = "Detectives, you have been awarded {num} equipment credit(s) for your performance."
  37. L.credit_tr_all = "Traitors, you have been awarded {num} equipment credit(s) for your performance."
  38.  
  39. L.credit_kill = "You have received {num} credit(s) for killing a {role}."
  40.  
  41. --- Karma
  42. L.karma_dmg_full = "Your Karma is {amount}, so you deal full damage this round!"
  43. L.karma_dmg_other = "Your Karma is {amount}. As a result all damage you deal is reduced by {num}%"
  44.  
  45. --- Body identification messages
  46. L.body_found = "{finder} found the body of {victim}. {role}"
  47.  
  48. -- The {role} in body_found will be replaced by one of the following:
  49. L.body_found_t = "He was a Traitor!"
  50. L.body_found_d = "He was a Detective."
  51. L.body_found_i = "He was innocent."
  52.  
  53. L.body_confirm = "{finder} confirmed the death of {victim}."
  54.  
  55. L.body_call = "{player} called a Detective to the body of {victim}!"
  56. L.body_call_error = "You must confirm the death of this player before calling a Detective!"
  57.  
  58. L.body_burning = "Ouch! This corpse is on fire!"
  59. L.body_credits = "You found {num} credit(s) on the body!"
  60.  
  61. --- Menus and windows
  62. L.close = "Close"
  63. L.cancel = "Cancel"
  64.  
  65. -- For navigation buttons
  66. L.next = "Next"
  67. L.prev = "Previous"
  68.  
  69. -- Equipment buying menu
  70. L.equip_title = "Equipment"
  71. L.equip_tabtitle = "Order Equipment"
  72.  
  73. L.equip_status = "Ordering status"
  74. L.equip_cost = "You have {num} credit(s) remaining."
  75. L.equip_help_cost = "Every piece of equipment you buy costs 1 credit."
  76.  
  77. L.equip_help_carry = "You can only buy things for which you have room."
  78. L.equip_carry = "You can carry this equipment."
  79. L.equip_carry_own = "You are already carrying this item."
  80. L.equip_carry_slot = "You are already carrying a weapon in slot {slot}."
  81.  
  82. L.equip_help_stock = "Of certain items you can only buy one per round."
  83. L.equip_stock_deny = "This item is no longer in stock."
  84. L.equip_stock_ok = "This item is in stock."
  85.  
  86. L.equip_custom = "Custom item added by this server."
  87.  
  88. L.equip_spec_name = "Name"
  89. L.equip_spec_type = "Type"
  90. L.equip_spec_desc = "Description"
  91.  
  92. L.equip_confirm = "Buy equipment"
  93.  
  94. -- Disguiser tab in equipment menu
  95. L.disg_name = "Disguiser"
  96. L.disg_menutitle = "Disguise control"
  97. L.disg_not_owned = "You are not carrying a Disguiser!"
  98. L.disg_enable = "Enable disguise"
  99.  
  100. L.disg_help1 = "When your disguise is active, your name, health and karma do not show when someone looks at you. In addition, you will be hidden from a Detective's radar."
  101. L.disg_help2 = "Press Numpad Enter to toggle the disguise without using the menu. You can also bind a different key to 'ttt_toggle_disguise' using the console."
  102.  
  103. -- Radar tab in equipment menu
  104. L.radar_name = "Radar"
  105. L.radar_menutitle = "Radar control"
  106. L.radar_not_owned = "You are not carrying a Radar!"
  107. L.radar_scan = "Perform scan"
  108. L.radar_auto = "Auto-repeat scan"
  109. L.radar_help = "Scan results show for {num} seconds, after which the Radar will have recharged and can be used again."
  110. L.radar_charging = "Your Radar is still charging!"
  111.  
  112. -- Transfer tab in equipment menu
  113. L.xfer_name = "Transfer"
  114. L.xfer_menutitle = "Transfer credits"
  115. L.xfer_no_credits = "You have no credits to give!"
  116. L.xfer_send = "Send a credit"
  117. L.xfer_help = "You can only transfer credits to fellow {role} players."
  118.  
  119. L.xfer_no_recip = "Recipient not valid, credit transfer aborted."
  120. L.xfer_no_credits = "Insufficient credits for transfer."
  121. L.xfer_success = "Credit transfer to {player} completed."
  122. L.xfer_received = "{player} has given you {num} credit."
  123.  
  124. -- Radio tab in equipment menu
  125. L.radio_name = "Radio"
  126. L.radio_help = "Click a button to make your Radio play that sound."
  127. L.radio_notplaced = "You must place the Radio to play sound on it."
  128.  
  129. -- Radio soundboard buttons
  130. L.radio_button_scream = "Scream"
  131. L.radio_button_expl = "Explosion"
  132. L.radio_button_pistol = "Pistol shots"
  133. L.radio_button_m16 = "M16 shots"
  134. L.radio_button_deagle = "Deagle shots"
  135. L.radio_button_mac10 = "MAC10 shots"
  136. L.radio_button_shotgun = "Shotgun shots"
  137. L.radio_button_rifle = "Rifle shot"
  138. L.radio_button_huge = "H.U.G.E burst"
  139. L.radio_button_c4 = "C4 beeping"
  140. L.radio_button_burn = "Burning"
  141. L.radio_button_steps = "Footsteps"
  142.  
  143.  
  144. -- Intro screen shown after joining
  145. L.intro_help = "If you're new to the game, press F1 for instructions!"
  146.  
  147. -- "Continue playing" vote
  148. L.contvote_continue = "Continue playing this"
  149. L.contvote_change = "Start a vote"
  150.  
  151. -- Radiocommands/quickchat
  152. L.quick_title = "Quickchat keys"
  153.  
  154. L.quick_yes = "Yes."
  155. L.quick_no = "No."
  156. L.quick_help = "Help!"
  157. L.quick_imwith = "I'm with {player}."
  158. L.quick_see = "I see {player}."
  159. L.quick_suspect = "{player} acts suspicious."
  160. L.quick_traitor = "{player} is a Traitor!"
  161. L.quick_inno = "{player} is innocent."
  162. L.quick_check = "Anyone still alive?"
  163.  
  164. -- {player} in the quickchat text normally becomes a player nickname, but can
  165. -- also be one of the below. Keep these lowercase.
  166. L.quick_nobody = "nobody"
  167. L.quick_disg = "someone in disguise"
  168. L.quick_corpse = "an unidentified body"
  169. L.quick_corpse_id = "{player}'s corpse"
  170.  
  171.  
  172. --- Body search window
  173. L.search_title = "Body Search Results"
  174. L.search_info = "Information"
  175. L.search_confirm = "Confirm Death"
  176. L.search_call = "Call Detective"
  177.  
  178. -- Descriptions of pieces of information found
  179. L.search_nick = "This is the body of {player}."
  180.  
  181. L.search_role_t = "This person was a Traitor!"
  182. L.search_role_d = "This person was a Detective."
  183. L.search_role_i = "This person was an innocent terrorist."
  184.  
  185. L.search_words = "Something tells you some of this person's last words were: '{lastwords}'"
  186. L.search_armor = "They were wearing nonstandard body armor."
  187. L.search_disg = "They were carrying a device that could hide their identity."
  188. L.search_radar = "They were carrying some sort of radar. It is no longer functioning."
  189. L.search_c4 = "In a pocket you found a note. It states that cutting wire {num} will safely disarm the bomb."
  190.  
  191. L.search_dmg_crush = "Many of their bones are broken. It seems the impact of a heavy object killed them."
  192. L.search_dmg_bullet = "It is obvious they were shot to death."
  193. L.search_dmg_fall = "They fell to their death."
  194. L.search_dmg_boom = "Their wounds and singed clothes indicate an explosion caused their end."
  195. L.search_dmg_club = "The body is bruised and battered. Clearly they were clubbed to death."
  196. L.search_dmg_drown = "The body shows the telltale signs of drowning."
  197. L.search_dmg_stab = "They were stabbed and cut before quickly bleeding to death."
  198. L.search_dmg_burn = "Smells like roasted terrorist around here..."
  199. L.search_dmg_tele = "It looks like their DNA was scrambled by tachyon emissions!"
  200. L.search_dmg_car = "When this terrorist crossed the road, they were run over by a reckless driver."
  201. L.search_dmg_other = "You cannot find a specific cause of this terrorist's death."
  202.  
  203. L.search_weapon = "It appears a {weapon} was used to kill them."
  204. L.search_head = "The fatal wound was a headshot. No time to scream."
  205. L.search_time = "They died roughly {time} before you conducted the search."
  206. L.search_dna = "Retrieve a sample of the killer's DNA with a DNA Scanner. The DNA sample will decay roughly {time} from now."
  207.  
  208. L.search_kills1 = "You found a list of kills that confirms the death of {player}."
  209. L.search_kills2 = "You found a list of kills with these names:"
  210. L.search_eyes = "Using your detective skills, you identified the last person they saw: {player}. The killer, or a coincidence?"
  211.  
  212.  
  213. -- Scoreboard
  214. L.sb_playing = "You are playing on..."
  215. L.sb_mapchange = "Map changes in {num} rounds or in {time}"
  216.  
  217. L.sb_mia = "Missing In Action"
  218. L.sb_confirmed = "Confirmed Dead"
  219.  
  220. L.sb_ping = "Ping"
  221. L.sb_deaths = "Deaths"
  222. L.sb_score = "Score"
  223. L.sb_karma = "Karma"
  224.  
  225. L.sb_info_help = "Search this player's body, and you can review the results here."
  226.  
  227. L.sb_tag_friend = "FRIEND"
  228. L.sb_tag_susp = "SUSPECT"
  229. L.sb_tag_avoid = "AVOID"
  230. L.sb_tag_kill = "KILL"
  231. L.sb_tag_miss = "MISSING"
  232.  
  233. --- Help and settings menu (F1)
  234.  
  235. L.help_title = "Help and Settings"
  236.  
  237. -- Tabs
  238. L.help_tut = "Tutorial"
  239. L.help_tut_tip = "How TTT works, in 6 steps"
  240.  
  241. L.help_settings = "Settings"
  242. L.help_settings_tip = "Client-side settings"
  243.  
  244. -- Settings
  245. L.set_title_gui = "Interface settings"
  246.  
  247. L.set_tips = "Show gameplay tips at the bottom of the screen while spectating"
  248.  
  249. L.set_startpopup = "Start of round info popup duration"
  250. L.set_startpopup_tip = "When the round starts, a small popup appears at the bottom of your screen for a few seconds. Change the time it displays for here."
  251.  
  252. L.set_cross_opacity = "Ironsight crosshair opacity"
  253. L.set_cross_disable = "Disable crosshair completely"
  254. L.set_minimal_id = "Minimalist Target ID under crosshair (no karma text, hints, etc)"
  255. L.set_healthlabel = "Show health status label on health bar"
  256. L.set_lowsights = "Lower weapon when using ironsights"
  257. L.set_lowsights_tip = "Enable to position the weapon model lower on the screen while using ironsights. This will make it easier to see your target, but it will look less realistic."
  258. L.set_fastsw = "Fast weapon switch"
  259. L.set_fastsw_tip = "Enable to cycle through weapons when you scroll without opening the weapon switcher menu."
  260. L.set_wswitch = "Disable weapon switch menu auto-closing"
  261. L.set_wswitch_tip = "By default the weapon switcher automatically closes a few seconds after you last scroll. Enable this to make it stay up."
  262. L.set_cues = "Play sound cue when a round begins or ends"
  263.  
  264.  
  265. L.set_title_play = "Gameplay settings"
  266.  
  267. L.set_specmode = "Spectate-only mode (always stay spectator)"
  268. L.set_specmode_tip = "Spectate-only mode will prevent you from respawning when a new round starts, instead you stay Spectator."
  269. L.set_mute = "Mute living players when dead"
  270. L.set_mute_tip = "Enable to mute living players while you are dead/spectator."
  271.  
  272.  
  273. L.set_title_lang = "Language settings"
  274.  
  275. -- It may be best to leave this next one english, so english players can always
  276. -- find the language setting even if it's set to a language they don't know.
  277. L.set_lang = "Select language:"
  278.  
  279.  
  280. --- Weapons and equipment, HUD and messages
  281.  
  282. -- Equipment actions, like buying and dropping
  283. L.buy_no_stock = "This weapon is out of stock: you already bought it this round."
  284. L.buy_pending = "You already have an order pending, wait until you receive it."
  285. L.buy_received = "You have received your special equipment."
  286.  
  287. L.drop_no_room = "You have no room here to drop your weapon!"
  288.  
  289. L.disg_turned_on = "Disguise enabled!"
  290. L.disg_turned_off = "Disguise disabled."
  291.  
  292. -- Equipment item descriptions
  293. L.item_passive = "Passive effect item"
  294. L.item_active = "Active use item"
  295. L.item_weapon = "Weapon"
  296.  
  297. L.item_armor = "Body Armor"
  298. L.item_armor_desc = [[
  299. Reduces bullet damage by 30% when
  300. you get hit.
  301.  
  302. Default equipment for Detectives.]]
  303.  
  304. L.item_radar = "Radar"
  305. L.item_radar_desc = [[
  306. Allows you to scan for life signs.
  307.  
  308. Starts automatic scans as soon as you
  309. buy it. Configure it in Radar tab of this
  310. menu.]]
  311.  
  312. L.item_disg = "Disguiser"
  313. L.item_disg_desc = [[
  314. Hides your ID info while on. Also avoids
  315. being the person last seen by a victim.
  316.  
  317. Toggle in the Disguise tab of this menu
  318. or press Numpad Enter.]]
  319.  
  320. -- C4
  321. L.c4_hint = "Press {usekey} to arm or disarm."
  322. L.c4_no_disarm = "You cannot disarm another Traitor's C4 unless they are dead."
  323. L.c4_disarm_warn = "A C4 explosive you planted has been disarmed."
  324. L.c4_armed = "You have successfully armed the bomb."
  325. L.c4_disarmed = "You have successfully disarmed the bomb."
  326. L.c4_no_room = "You cannot carry this C4."
  327.  
  328. L.c4_desc = "Powerful timed explosive."
  329.  
  330. L.c4_arm = "Arm C4"
  331. L.c4_arm_timer = "Timer"
  332. L.c4_arm_seconds = "Seconds until detonation:"
  333. L.c4_arm_attempts = "In disarm attempts, {num} of the 6 wires will cause instant detonation when cut."
  334.  
  335. L.c4_remove_title = "Removal"
  336. L.c4_remove_pickup = "Pick up C4"
  337. L.c4_remove_destroy1 = "Destroy C4"
  338. L.c4_remove_destroy2 = "Confirm: destroy"
  339.  
  340. L.c4_disarm = "Disarm C4"
  341. L.c4_disarm_cut = "Click to cut wire {num}"
  342.  
  343. L.c4_disarm_t = "Cut a wire to disarm the bomb. As you are Traitor, every wire is safe. Innocents don't have it so easy!"
  344. L.c4_disarm_owned = "Cut a wire to disarm the bomb. It's your bomb, so every wire will disarm it."
  345. L.c4_disarm_other = "Cut a safe wire to disarm the bomb. It will explode if you get it wrong!"
  346.  
  347. L.c4_status_armed = "ARMED"
  348. L.c4_status_disarmed = "DISARMED"
  349.  
  350. -- Visualizer
  351. L.vis_name = "Visualizer"
  352. L.vis_hint = "Press {usekey} to pick up (Detectives only)."
  353.  
  354. L.vis_help_pri = "{primaryfire} drops the activated device."
  355.  
  356. L.vis_desc = [[
  357. Crime scene visualization device.
  358.  
  359. Analyzes a corpse to show how
  360. the victim was killed, but only if
  361. he died of gunshot wounds.]]
  362.  
  363. -- Decoy
  364. L.decoy_name = "Decoy"
  365. L.decoy_no_room = "You cannot carry this decoy."
  366. L.decoy_broken = "Your Decoy has been destroyed!"
  367.  
  368. L.decoy_help_pri = "{primaryfire} plants the Decoy."
  369.  
  370. L.decoy_desc = [[
  371. Shows a fake radar sign to detectives,
  372. and makes their DNA scanner show the
  373. location of the Decoy if they scan for
  374. your DNA.]]
  375.  
  376. -- Defuser
  377. L.defuser_name = "Defuser"
  378. L.defuser_help = "{primaryfire} defuses targeted C4."
  379.  
  380. L.defuser_desc = [[
  381. Instantly defuse a C4 explosive.
  382.  
  383. Unlimited uses. C4 will be easier to
  384. notice if you carry this.]]
  385.  
  386. -- Flare gun
  387. L.flare_name = "Flare gun"
  388. L.flare_desc = [[
  389. Can be used to burn corpses so that
  390. they are never found. Limited ammo.
  391.  
  392. Burning a corpse makes a distinct
  393. sound.]]
  394.  
  395. -- Health station
  396. L.hstation_name = "Health Station"
  397. L.hstation_hint = "Press {usekey} to receive health. Charge: {num}."
  398. L.hstation_broken = "Your Health Station has been destroyed!"
  399. L.hstation_help = "{primaryfire} places the Health Station."
  400.  
  401. L.hstation_desc = [[
  402. Allows people to heal when placed.
  403.  
  404. Slow recharge. Anyone can use it, and
  405. it can be damaged. Can be checked for
  406. DNA samples of its users.]]
  407.  
  408. -- Knife
  409. L.knife_name = "Knife"
  410. L.knife_thrown = "Thrown knife"
  411.  
  412. L.knife_desc = [[
  413. Kills wounded targets instantly and
  414. silently, but only has a single use.
  415.  
  416. Can be thrown using alternate fire.]]
  417.  
  418. -- Poltergeist
  419. L.polter_desc = [[
  420. Plants thumpers on objects to shove
  421. them around violently.
  422.  
  423. The energy bursts damage people in
  424. close proximity.]]
  425.  
  426. -- Radio
  427. L.radio_broken = "Your Radio has been destroyed!"
  428. L.radio_help_pri = "{primaryfire} places the Radio."
  429.  
  430. L.radio_desc = [[
  431. Plays sounds to distract or deceive.
  432.  
  433. Place the radio somewhere, and then
  434. play sounds on it using the Radio tab
  435. in this menu.]]
  436.  
  437. -- Silenced pistol
  438. L.sipistol_name = "Silenced Pistol"
  439.  
  440. L.sipistol_desc = [[
  441. Low-noise handgun, uses normal pistol
  442. ammo.
  443.  
  444. Victims will not scream when killed.]]
  445.  
  446. -- Newton launcher
  447. L.newton_name = "Newton launcher"
  448.  
  449. L.newton_desc = [[
  450. Push people from a safe distance.
  451.  
  452. Infinite ammo, but slow to fire.]]
  453.  
  454. -- Binoculars
  455. L.binoc_name = "Binoculars"
  456. L.binoc_desc = [[
  457. Zoom in on corpses and identify them
  458. from a long distance away.
  459.  
  460. Unlimited uses, but identification
  461. takes a few seconds.]]
  462.  
  463. L.binoc_help_pri = "{primaryfire} identifies a body."
  464. L.binoc_help_sec = "{secondaryfire} changes zoom level."
  465.  
  466. -- UMP
  467. L.ump_desc = [[
  468. Experimental SMG that disorients
  469. targets.
  470.  
  471. Uses standard SMG ammo.]]
  472.  
  473. -- DNA scanner
  474. L.dna_name = "DNA scanner"
  475. L.dna_identify = "Corpse must be identified to retrieve killer's DNA."
  476. L.dna_notfound = "No DNA sample found on target."
  477. L.dna_limit = "Storage limit reached. Remove old samples to add new ones."
  478. L.dna_decayed = "DNA sample of the killer has decayed."
  479. L.dna_killer = "Collected a sample of the killer's DNA from the corpse!"
  480. L.dna_no_killer = "The DNA could not be retrieved (killer disconnected?)."
  481. L.dna_armed = "This bomb is live! Disarm it first!"
  482. L.dna_object = "Collected {num} new DNA sample(s) from the object."
  483. L.dna_gone = "DNA not detected in area."
  484.  
  485. L.dna_desc = [[
  486. Collect DNA samples from things
  487. and use them to find the DNA's owner.
  488.  
  489. Use on fresh corpses to get the killer's DNA
  490. and track them down.]]
  491.  
  492. L.dna_menu_title = "DNA scanning controls"
  493. L.dna_menu_sample = "DNA sample found on {source}"
  494. L.dna_menu_remove = "Remove selected"
  495. L.dna_menu_help1 = "These are DNA samples you have collected."
  496. L.dna_menu_help2 = [[
  497. When charged, you can scan for the location of
  498. the player the selected DNA sample belongs to.
  499. Finding distant targets drains more energy.]]
  500.  
  501. L.dna_menu_scan = "Scan"
  502. L.dna_menu_repeat = "Auto-repeat"
  503. L.dna_menu_ready = "READY"
  504. L.dna_menu_charge = "CHARGING"
  505. L.dna_menu_select = "SELECT SAMPLE"
  506.  
  507. L.dna_help_primary = "{primaryfire} to collect a DNA sample"
  508. L.dna_help_secondary = "{secondaryfire} to open scan controls"
  509.  
  510. -- Magneto stick
  511. L.magnet_name = "Magneto-stick"
  512. L.magnet_help = "{primaryfire} to attach body to surface."
  513.  
  514. -- Grenades and misc
  515. L.grenade_smoke = "Smoke grenade"
  516. L.grenade_fire = "Incendiary grenade"
  517.  
  518. L.unarmed_name = "Holstered"
  519. L.crowbar_name = "Crowbar"
  520. L.pistol_name = "Pistol"
  521. L.rifle_name = "Rifle"
  522. L.shotgun_name = "Shotgun"
  523.  
  524. -- Teleporter
  525. L.tele_name = "Teleporter"
  526. L.tele_failed = "Teleport failed."
  527. L.tele_marked = "Teleport location marked."
  528.  
  529. L.tele_no_ground = "Cannot teleport unless standing on solid ground!"
  530. L.tele_no_crouch = "Cannot teleport while crouched!"
  531. L.tele_no_mark = "No location marked. Mark a destination before teleporting."
  532.  
  533. L.tele_no_mark_ground = "Cannot mark a teleport location unless standing on solid ground!"
  534. L.tele_no_mark_crouch = "Cannot mark a teleport location while crouched!"
  535.  
  536. L.tele_help_pri = "{primaryfire} teleports to marked location."
  537. L.tele_help_sec = "{secondaryfire} marks current location."
  538.  
  539. L.tele_desc = [[
  540. Teleport to a previously marked spot.
  541.  
  542. Teleporting makes noise, and the
  543. number of uses is limited.]]
  544.  
  545. -- Ammo names, shown when picked up
  546. L.ammo_pistol = "9mm ammo"
  547.  
  548. L.ammo_smg1 = "SMG ammo"
  549. L.ammo_buckshot = "Shotgun ammo"
  550. L.ammo_357 = "Rifle ammo"
  551. L.ammo_alyxgun = "Deagle ammo"
  552. L.ammo_ar2altfire = "Flare ammo"
  553. L.ammo_gravity = "Poltergeist ammo"
  554.  
  555.  
  556. --- HUD interface text
  557.  
  558. -- Round status
  559. L.round_wait = "Waiting"
  560. L.round_prep = "Preparing"
  561. L.round_active = "In progress"
  562. L.round_post = "Round over"
  563.  
  564. -- Health, ammo and time area
  565. L.overtime = "OVERTIME"
  566. L.hastemode = "HASTE MODE"
  567.  
  568. -- TargetID health status
  569. L.hp_healthy = "Healthy"
  570. L.hp_hurt = "Hurt"
  571. L.hp_wounded = "Wounded"
  572. L.hp_badwnd = "Badly Wounded"
  573. L.hp_death = "Near Death"
  574.  
  575.  
  576. -- TargetID karma status
  577. L.karma_max = "Reputable"
  578. L.karma_high = "Crude"
  579. L.karma_med = "Trigger-happy"
  580. L.karma_low = "Dangerous"
  581. L.karma_min = "Liability"
  582.  
  583. -- TargetID misc
  584. L.corpse = "Corpse"
  585. L.corpse_hint = "Press {usekey} to search. {walkkey} + {usekey} to search covertly."
  586.  
  587. L.target_disg = " (DISGUISED)"
  588. L.target_unid = "Unidentified body"
  589.  
  590. L.target_traitor = "FELLOW TRAITOR"
  591. L.target_detective = "DETECTIVE"
  592.  
  593. L.target_credits = "Search to receive unspent credits"
  594.  
  595. -- Traitor buttons (HUD buttons with hand icons that only traitors can see)
  596. L.tbut_single = "Single use"
  597. L.tbut_reuse = "Reusable"
  598. L.tbut_retime = "Reusable after {num} sec"
  599. L.tbut_help = "Press {key} to activate"
  600.  
  601. -- Equipment info lines (on the left above the health/ammo panel)
  602. L.disg_hud = "Disguised. Your name is hidden."
  603. L.radar_hud = "Radar ready for next scan in: {time}"
  604.  
  605. -- Spectator muting of living/dead
  606. L.mute_living = "Living players muted"
  607. L.mute_specs = "Spectators muted"
  608. L.mute_off = "None muted"
  609.  
  610. -- Spectators and prop possession
  611. L.punch_title = "PUNCH-O-METER"
  612. L.punch_help = "Move keys or jump: punch object. Crouch: leave object."
  613. L.punch_bonus = "Your bad score lowered your punch-o-meter limit by {num}"
  614. L.punch_malus = "Your good score increased your punch-o-meter limit by {num}!"
  615.  
  616. L.spec_help = "Click to spectate players, or press {usekey} on a physics object to possess it."
  617.  
  618. --- Info popups shown when the round starts
  619.  
  620. -- These are spread over multiple lines, hence the square brackets instead of
  621. -- quotes. That's a Lua thing. Every line break (enter) will show up in-game.
  622. L.info_popup_innocent = [[You are an innocent Terrorist! But there are traitors around...
  623. Who can you trust, and who is out to fill you with bullets?
  624.  
  625. Watch your back and work with your comrades to get out of this alive!]]
  626.  
  627. L.info_popup_detective = [[You are a Detective! Terrorist HQ has given you special resources to find the traitors.
  628. Use them to help the innocent survive, but be careful:
  629. the traitors will be looking to take you down first!
  630.  
  631. Press {menukey} to receive your equipment!]]
  632.  
  633. L.info_popup_traitor_alone = [[You are a TRAITOR! You have no fellow traitors this round.
  634.  
  635. Kill all others to win!
  636.  
  637. Press {menukey} to receive your special equipment!]]
  638.  
  639. L.info_popup_traitor = [[You are a TRAITOR! Work with fellow traitors to kill all others.
  640. But take care, or your treason may be discovered...
  641.  
  642. These are your comrades:
  643. {traitorlist}
  644.  
  645. Press {menukey} to receive your special equipment!]]
  646.  
  647. --- Various other text
  648. L.name_kick = "A player was automatically kicked for changing their name during a round."
  649.  
  650. L.idle_popup = [[You were idle for {num} seconds and were moved into Spectator-only mode as a result. While you are in this mode, you will not spawn when a new round starts.
  651.  
  652. You can toggle Spectator-only mode at any time by pressing {helpkey} and unchecking the box in the Settings tab. You can also choose to disable it right now.]]
  653.  
  654. L.idle_popup_close = "Do nothing"
  655. L.idle_popup_off = "Disable Spectator-only mode now"
  656.  
  657. L.idle_warning = "Warning: you appear to be idle/AFK, and will be made to spectate unless you show activity!"
  658.  
  659. L.spec_mode_warning = "You are in Spectator Mode and will not spawn when a round starts. To disable this mode, press F1, go to Settings and uncheck 'Spectate-only mode'."
  660.  
  661.  
  662. --- Tips, shown at bottom of screen to spectators
  663.  
  664. -- Tips panel
  665. L.tips_panel_title = "Tips"
  666. L.tips_panel_tip = "Tip:"
  667.  
  668. -- Tip texts
  669.  
  670. L.tip1 = "Traitors can search a corpse silently, without confirming the death, by holding {walkkey} and pressing {usekey} on the corpse."
  671.  
  672. L.tip2 = "Arming a C4 explosive with a longer timer will increase the number of wires that cause it to explode instantly when an innocent attempts to disarm it. It will also beep softer and less often."
  673.  
  674. L.tip3 = "Detectives can search a corpse to find who is 'reflected in its eyes'. This is the last person the dead guy saw. That does not have to be the killer if they were shot in the back."
  675.  
  676. L.tip4 = "No one will know you have died until they find your dead body and identify you by searching it."
  677.  
  678. L.tip5 = "When a Traitor kills a Detective, they instantly receive a credit reward."
  679.  
  680. L.tip6 = "When a Traitor dies, all Detectives are rewarded equipment credits."
  681.  
  682. L.tip7 = "When the Traitors have made significant progress in killing innocents, they will receive an equipment credit as reward."
  683.  
  684. L.tip8 = "Traitors and Detectives can collect unspent equipment credits from the dead bodies of other Traitors and Detectives."
  685.  
  686. L.tip9 = "The Poltergeist can turn any physics object into a deadly projectile. Each punch is accompanied by a blast of energy hurting anyone nearby."
  687.  
  688. L.tip10 = "As Traitor or Detective, keep an eye on red messages in the top right. These will be important for you."
  689.  
  690. L.tip11 = "As Traitor or Detective, keep in mind you are rewarded extra equipment credits if you and your comrades perform well. Make sure you remember to spend them!"
  691.  
  692. L.tip12 = "The Detectives' DNA Scanner can be used to gather DNA samples from weapons and items and then scan to find the location of the player who used them. Useful when you can get a sample from a corpse or a disarmed C4!"
  693.  
  694. L.tip13 = "When you are close to someone you kill, some of your DNA is left on the corpse. This DNA can be used with a Detective's DNA Scanner to find your current location. Better hide the body after you knife someone!"
  695.  
  696. L.tip14 = "The further you are away from someone you kill, the faster your DNA sample on their body will decay."
  697.  
  698. L.tip15 = "Are you Traitor and going sniping? Consider trying out the Disguiser. If you miss a shot, run away to a safe spot, disable the Disguiser, and no one will know it was you who was shooting at them."
  699.  
  700. L.tip16 = "As Traitor, the Teleporter can help you escape when chased, and allows you to quickly travel across a big map. Make sure you always have a safe position marked."
  701.  
  702. L.tip17 = "Are the innocents all grouped up and hard to pick off? Consider trying out the Radio to play sounds of C4 or a firefight to lead some of them away."
  703.  
  704. L.tip18 = "Using the Radio as Traitor, you can play sounds through your Equipment Menu after the radio has been placed. Queue up multiple sounds by clicking multiple buttons in the order you want them."
  705.  
  706. L.tip19 = "As Detective, if you have leftover credits you could give a trusted Innocent a Defuser. Then you can spend your time doing the serious investigative work and leave the risky bomb defusal to them."
  707.  
  708. L.tip20 = "The Detectives' Binoculars allow long-range searching and identifying of corpses. Bad news if the Traitors were hoping to use a corpse as bait. Of course, while using the Binoculars a Detective is unarmed and distracted..."
  709.  
  710. L.tip21 = "The Detectives' Health Station lets wounded players recover. Of course, those wounded people could be Traitors..."
  711.  
  712. L.tip22 = "The Health Station records a DNA sample of everyone who uses it. Detectives can use this with the DNA Scanner to find out who has been healing up."
  713.  
  714. L.tip23 = "Unlike weapons and C4, the Radio equipment for Traitors does not contain a DNA sample of the person who planted it. Don't worry about Detectives finding it and blowing your cover."
  715.  
  716. L.tip24 = "Press {helpkey} to view a short tutorial or modify some TTT-specific settings. For example, you can permanently disable these tips there."
  717.  
  718. L.tip25 = "When a Detective searches a body, the result is available to all players via the scoreboard by clicking on the name of the dead person."
  719.  
  720. L.tip26 = "In the scoreboard, a magnifying glass icon next to someone's name indicates you have search information about that person. If the icon is bright, the data comes from a Detective and may contain additional information."
  721.  
  722. L.tip27 = "As Detective, corpses with a magnifying glass after the nickname have been searched by a Detective and their results are available to all players via the scoreboard."
  723.  
  724. L.tip28 = "Spectators can press {mutekey} to cycle through muting other spectators or living players."
  725.  
  726. L.tip29 = "If the server has installed additional languages, you can switch to a different language at any time in the Settings menu."
  727.  
  728. L.tip30 = "Quickchat or 'radio' commands can be used by pressing {zoomkey}."
  729.  
  730. L.tip31 = "As Spectator, press {duckkey} to unlock your mouse cursor and click the buttons on this tips panel. Press {duckkey} again to go back to mouseview."
  731.  
  732. L.tip32 = "The Crowbar's secondary fire will push other players."
  733.  
  734. L.tip33 = "Firing through the ironsights of a weapon will slightly increase your accuracy and decrease recoil. Crouching does not."
  735.  
  736. L.tip34 = "Smoke grenades are effective indoors, especially for creating confusion in crowded rooms."
  737.  
  738. L.tip35 = "As Traitor, remember you can carry dead bodies and hide them from the prying eyes of the innocent and their Detectives."
  739.  
  740. L.tip36 = "The tutorial available under {helpkey} contains an overview of the most important keys of the game."
  741.  
  742. L.tip37 = "On the scoreboard, click the name of a living player and you can select a tag for them such as 'suspect' or 'friend'. This tag will show up if you have them under your crosshair."
  743.  
  744. L.tip38 = "Many of the placeable equipment items (such as C4, Radio) can be stuck on walls using secondary fire."
  745.  
  746. L.tip39 = "C4 that explodes due to a mistake in disarming it has a smaller explosion than C4 that reaches zero on its timer."
  747.  
  748. L.tip40 = "If it says 'HASTE MODE' above the round timer, the round will at first be only a few minutes long, but with every death the available time increases (like capturing a point in TF2). This mode puts the pressure on the traitors to keep things moving."
  749.  
  750.  
  751. --- Round report
  752.  
  753. L.report_title = "Round report"
  754.  
  755. -- Tabs
  756. L.report_tab_hilite = "Highlights"
  757. L.report_tab_hilite_tip = "Round highlights"
  758. L.report_tab_events = "Events"
  759. L.report_tab_events_tip = "Log of the events that happened this round"
  760. L.report_tab_scores = "Scores"
  761. L.report_tab_scores_tip = "Points scored by each player in this round alone"
  762.  
  763. -- Event log saving
  764. L.report_save = "Save Log .txt"
  765. L.report_save_tip = "Saves the Event Log to a text file"
  766. L.report_save_error = "No Event Log data to save."
  767. L.report_save_result = "The Event Log has been saved to:"
  768.  
  769. -- Big title window
  770. L.hilite_win_traitors = "THE TRAITORS WIN"
  771. L.hilite_win_innocent = "THE INNOCENT WIN"
  772.  
  773. L.hilite_players1 = "{numplayers} players took part, {numtraitors} were traitors"
  774. L.hilite_players2 = "{numplayers} players took part, one of them the traitor"
  775.  
  776. L.hilite_duration = "The round lasted {time}"
  777.  
  778. -- Columns
  779. L.col_time = "Time"
  780. L.col_event = "Event"
  781. L.col_player = "Player"
  782. L.col_role = "Role"
  783. L.col_kills1 = "Innocent kills"
  784. L.col_kills2 = "Traitor kills"
  785. L.col_points = "Points"
  786. L.col_team = "Team bonus"
  787. L.col_total = "Total points"
  788.  
  789. -- Name of a trap that killed us that has not been named by the mapper
  790. L.something = "something"
  791.  
  792. -- Kill events
  793. L.ev_blowup = "{victim} blew himself up"
  794. L.ev_blowup_trap = "{victim} was blown up by {trap}"
  795.  
  796. L.ev_tele_self = "{victim} telefragged themselves"
  797. L.ev_sui = "{victim} couldn't take it and killed themselves"
  798. L.ev_sui_using = "{victim} killed themselves using {tool}"
  799.  
  800. L.ev_fall = "{victim} fell to their death"
  801. L.ev_fall_pushed = "{victim} fell to their death after {attacker} pushed him"
  802. L.ev_fall_pushed_using = "{victim} fell to their death after {attacker} used {trap} to push him"
  803.  
  804. L.ev_shot = "{victim} was shot by {attacker}"
  805. L.ev_shot_using = "{victim} was shot by {attacker} using a {weapon}"
  806.  
  807. L.ev_drown = "{victim} was drowned by {attacker}"
  808. L.ev_drown_using = "{victim} was drowned by {trap} triggered by {attacker}"
  809.  
  810. L.ev_boom = "{victim} was exploded by {attacker}"
  811. L.ev_boom_using = "{victim} was blown up by {attacker} using {trap}"
  812.  
  813. L.ev_burn = "{victim} was fried by {attacker}"
  814. L.ev_burn_using = "{victim} was burned by {trap} due to {attacker}"
  815.  
  816. L.ev_club = "{victim} was beaten up by {attacker}"
  817. L.ev_club_using = "{victim} was pummeled to death by {attacker} using {trap}"
  818.  
  819. L.ev_slash = "{victim} was stabbed by {attacker}"
  820. L.ev_slash_using = "{victim} was cut up by {attacker} using {trap}"
  821.  
  822. L.ev_tele = "{victim} was telefragged by {attacker}"
  823. L.ev_tele_using = "{victim} was atomized by {trap} set by {attacker}"
  824.  
  825. L.ev_goomba = "{victim} was crushed by the massive bulk of {attacker}"
  826.  
  827. L.ev_crush = "{victim} was crushed by {attacker}"
  828. L.ev_crush_using = "{victim} was crushed by {trap} of {attacker}"
  829.  
  830. L.ev_other = "{victim} was killed by {attacker}"
  831. L.ev_other_using = "{victim} was killed by {attacker} using {trap}"
  832.  
  833. -- Other events
  834. L.ev_body = "{finder} found the corpse of {victim}"
  835. L.ev_c4_plant = "{player} planted C4"
  836. L.ev_c4_boom = "The C4 planted by {player} exploded"
  837. L.ev_c4_disarm1 = "{player} disarmed C4 planted by {owner}"
  838. L.ev_c4_disarm2 = "{player} failed to disarm C4 planted by {owner}"
  839. L.ev_credit = "{finder} found {num} credit(s) on the corpse of {player}"
  840.  
  841. L.ev_start = "The round started"
  842. L.ev_win_traitor = "The dastardly traitors won the round!"
  843. L.ev_win_inno = "The lovable innocent terrorists won the round!"
  844. L.ev_win_time = "The traitors ran out of time and lost!"
  845.  
  846. --- Awards/highlights
  847.  
  848. L.aw_sui1_title = "Suicide Cult Leader"
  849. L.aw_sui1_text = "showed the other suiciders how to do it by being the first to go."
  850.  
  851. L.aw_sui2_title = "Lonely and Depressed"
  852. L.aw_sui2_text = "was the only one who killed himself."
  853.  
  854. L.aw_exp1_title = "Explosives Research Grant"
  855. L.aw_exp1_text = "was recognized for their research on explosions. {num} test subjects helped out."
  856.  
  857. L.aw_exp2_title = "Field Research"
  858. L.aw_exp2_text = "tested their own resistance to explosions. It was not high enough."
  859.  
  860. L.aw_fst1_title = "First Blood"
  861. L.aw_fst1_text = "delivered the first innocent death at a traitor's hands."
  862.  
  863. L.aw_fst2_title = "First Bloody Stupid Kill"
  864. L.aw_fst2_text = "scored the first kill by shooting a fellow traitor. Good job."
  865.  
  866. L.aw_fst3_title = "First Blooper"
  867. L.aw_fst3_text = "was the first to kill. Too bad it was an innocent comrade."
  868.  
  869. L.aw_fst4_title = "First Blow"
  870. L.aw_fst4_text = "struck the first blow for the innocent terrorists by making the first death a traitor's."
  871.  
  872. L.aw_all1_title = "Deadliest Among Equals"
  873. L.aw_all1_text = "was responsible for every kill made by the innocent this round."
  874.  
  875. L.aw_all2_title = "Lone Wolf"
  876. L.aw_all2_text = "was responsible for every kill made by a traitor this round."
  877.  
  878. L.aw_nkt1_title = "I Got One, Boss!"
  879. L.aw_nkt1_text = "managed to kill a single innocent. Sweet!"
  880.  
  881. L.aw_nkt2_title = "A Bullet For Two"
  882. L.aw_nkt2_text = "showed the first one was not a lucky shot by killing another."
  883.  
  884. L.aw_nkt3_title = "Serial Traitor"
  885. L.aw_nkt3_text = "ended three innocent lives of terrorism today."
  886.  
  887. L.aw_nkt4_title = "Wolf Among More Sheep-Like Wolves"
  888. L.aw_nkt4_text = "eats innocent terrorists for dinner. A dinner of {num} courses."
  889.  
  890. L.aw_nkt5_title = "Counter-Terrorism Operative"
  891. L.aw_nkt5_text = "gets paid per kill. Can now buy another luxury yacht."
  892.  
  893. L.aw_nki1_title = "Betray This"
  894. L.aw_nki1_text = "found a traitor. Shot a traitor. Easy."
  895.  
  896. L.aw_nki2_title = "Applied to the Justice Squad"
  897. L.aw_nki2_text = "escorted two traitors to the great beyond."
  898.  
  899. L.aw_nki3_title = "Do Traitors Dream Of Traitorous Sheep?"
  900. L.aw_nki3_text = "put three traitors to rest."
  901.  
  902. L.aw_nki4_title = "Internal Affairs Employee"
  903. L.aw_nki4_text = "gets paid per kill. Can now order their fifth swimming pool."
  904.  
  905. L.aw_fal1_title = "No Mr. Bond, I Expect You To Fall"
  906. L.aw_fal1_text = "pushed someone off a great height."
  907.  
  908. L.aw_fal2_title = "Floored"
  909. L.aw_fal2_text = "let their body hit the floor after falling from a significant altitude."
  910.  
  911. L.aw_fal3_title = "The Human Meteorite"
  912. L.aw_fal3_text = "crushed someone by falling on them from a great height."
  913.  
  914. L.aw_hed1_title = "Efficiency"
  915. L.aw_hed1_text = "discovered the joy of headshots and made {num}."
  916.  
  917. L.aw_hed2_title = "Neurology"
  918. L.aw_hed2_text = "removed the brains from {num} heads for a closer examination."
  919.  
  920. L.aw_hed3_title = "Videogames Made Me Do It"
  921. L.aw_hed3_text = "applied their murder simulation training and headshotted {num} foes."
  922.  
  923. L.aw_cbr1_title = "Thunk Thunk Thunk"
  924. L.aw_cbr1_text = "has a mean swing with the crowbar, as {num} victims found out."
  925.  
  926. L.aw_cbr2_title = "Freeman"
  927. L.aw_cbr2_text = "covered their crowbar in the brains of no less than {num} people."
  928.  
  929. L.aw_pst1_title = "Persistent Little Bugger"
  930. L.aw_pst1_text = "scored {num} kills using the pistol. Then they went on to hug someone to death."
  931.  
  932. L.aw_pst2_title = "Small Caliber Slaughter"
  933. L.aw_pst2_text = "killed a small army of {num} with a pistol. Presumably installed a tiny shotgun inside the barrel."
  934.  
  935. L.aw_sgn1_title = "Easy Mode"
  936. L.aw_sgn1_text = "applies the buckshot where it hurts, murdering {num} targets."
  937.  
  938. L.aw_sgn2_title = "A Thousand Little Pellets"
  939. L.aw_sgn2_text = "didn't really like their buckshot, so they gave it all away. {num} recipients did not live to enjoy it."
  940.  
  941. L.aw_rfl1_title = "Point and Click"
  942. L.aw_rfl1_text = "shows all you need for {num} kills is a rifle and a steady hand."
  943.  
  944. L.aw_rfl2_title = "I Can See Your Head From Here"
  945. L.aw_rfl2_text = "knows their rifle. Now {num} other people know the rifle too."
  946.  
  947. L.aw_dgl1_title = "It's Like A Tiny Rifle"
  948. L.aw_dgl1_text = "is getting the hang of the Desert Eagle and killed {num} people."
  949.  
  950. L.aw_dgl2_title = "Eagle Master"
  951. L.aw_dgl2_text = "blew away {num} people with the deagle."
  952.  
  953. L.aw_mac1_title = "Pray and Slay"
  954. L.aw_mac1_text = "killed {num} people with the MAC10, but won't say how much ammo they needed."
  955.  
  956. L.aw_mac2_title = "Mac and Cheese"
  957. L.aw_mac2_text = "wonders what would happen if they could wield two MAC10s. {num} times two?"
  958.  
  959. L.aw_sip1_title = "Be Quiet"
  960. L.aw_sip1_text = "shut {num} people up with the silenced pistol."
  961.  
  962. L.aw_sip2_title = "Silenced Assassin"
  963. L.aw_sip2_text = "killed {num} people who did not hear themselves die."
  964.  
  965. L.aw_knf1_title = "Knife Knowing You"
  966. L.aw_knf1_text = "stabbed someone in the face over the internet."
  967.  
  968. L.aw_knf2_title = "Where Did You Get That From?"
  969. L.aw_knf2_text = "was not a Traitor, but still killed someone with a knife."
  970.  
  971. L.aw_knf3_title = "Such A Knife Man"
  972. L.aw_knf3_text = "found {num} knives lying around, and made use of them."
  973.  
  974. L.aw_knf4_title = "World's Knifest Man"
  975. L.aw_knf4_text = "killed {num} people with a knife. Don't ask me how."
  976.  
  977. L.aw_flg1_title = "To The Rescue"
  978. L.aw_flg1_text = "used their flares to signal for {num} deaths."
  979.  
  980. L.aw_flg2_title = "Flare Indicates Fire"
  981. L.aw_flg2_text = "taught {num} men about the danger of wearing flammable clothing."
  982.  
  983. L.aw_hug1_title = "A H.U.G.E Spread"
  984. L.aw_hug1_text = "was in tune with their H.U.G.E, somehow managing to make their bullets hit {num} people."
  985.  
  986. L.aw_hug2_title = "A Patient Para"
  987. L.aw_hug2_text = "just kept firing, and saw their H.U.G.E patience rewarded with {num} kills."
  988.  
  989. L.aw_msx1_title = "Putt Putt Putt"
  990. L.aw_msx1_text = "picked off {num} people with the M16."
  991.  
  992. L.aw_msx2_title = "Mid-range Madness"
  993. L.aw_msx2_text = "knows how to take down targets with the M16, scoring {num} kills."
  994.  
  995. L.aw_tkl1_title = "Made An Oopsie"
  996. L.aw_tkl1_text = "had their finger slip just when they were aiming at a buddy."
  997.  
  998. L.aw_tkl2_title = "Double-Oops"
  999. L.aw_tkl2_text = "thought they got a Traitor twice, but was wrong both times."
  1000.  
  1001. L.aw_tkl3_title = "Karma-conscious"
  1002. L.aw_tkl3_text = "couldn't stop after killing two teammates. Three is their lucky number."
  1003.  
  1004. L.aw_tkl4_title = "Teamkiller"
  1005. L.aw_tkl4_text = "murdered the entirety of their team. OMGBANBANBAN."
  1006.  
  1007. L.aw_tkl5_title = "Roleplayer"
  1008. L.aw_tkl5_text = "was roleplaying a madman, honest. That's why they killed most of their team."
  1009.  
  1010. L.aw_tkl6_title = "Moron"
  1011. L.aw_tkl6_text = "couldn't figure out which side they were on, and killed over half of their comrades."
  1012.  
  1013. L.aw_tkl7_title = "Redneck"
  1014. L.aw_tkl7_text = "protected their turf real good by killing over a quarter of their teammates."
  1015.  
  1016. L.aw_brn1_title = "Like Grandma Used To Make Them"
  1017. L.aw_brn1_text = "fried several people to a nice crisp."
  1018.  
  1019. L.aw_brn2_title = "Pyroid"
  1020. L.aw_brn2_text = "was heard cackling loudly after burning one of their many victims."
  1021.  
  1022. L.aw_brn3_title = "Pyrrhic Burnery"
  1023. L.aw_brn3_text = "burned them all, but is now all out of incendiary grenades! How will they cope!?"
  1024.  
  1025. L.aw_fnd1_title = "Coroner"
  1026. L.aw_fnd1_text = "found {num} bodies lying around."
  1027.  
  1028. L.aw_fnd2_title = "Gotta Catch Em All"
  1029. L.aw_fnd2_text = "found {num} corpses for their collection."
  1030.  
  1031. L.aw_fnd3_title = "Death Scent"
  1032. L.aw_fnd3_text = "keeps stumbling on random corpses, {num} times this round."
  1033.  
  1034. L.aw_crd1_title = "Recycler"
  1035. L.aw_crd1_text = "scrounged up {num} leftover credits from corpses."
  1036.  
  1037. L.aw_tod1_title = "Pyrrhic Victory"
  1038. L.aw_tod1_text = "died only seconds before their team won the round."
  1039.  
  1040. L.aw_tod2_title = "I Hate This Game"
  1041. L.aw_tod2_text = "died right after the start of the round."
  1042.  
  1043.  
  1044. --- New and modified pieces of text are placed below this point, marked with the
  1045. --- version in which they were added, to make updating translations easier.
  1046.  
  1047.  
  1048. --- v23
  1049. L.set_avoid_det = "Avoid being selected as Detective"
  1050. L.set_avoid_det_tip = "Enable this to ask the server not to select you as Detective if possible. Does not mean you are Traitor more often."
  1051.  
  1052. --- v24
  1053. L.drop_no_ammo = "Insufficient ammo in your weapon's clip to drop as an ammo box."
  1054.  
  1055. --- v31
  1056. L.set_cross_brightness = "Crosshair brightness"
  1057. L.set_cross_size = "Crosshair size"
  1058.  
  1059. --- 5-25-15
  1060. L.hat_retrieve = "You picked up a Detective's hat."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement