Benny/gamemodes/benny/gamemode/languages/en-us.lua

224 lines
8.0 KiB
Lua
Raw Permalink Normal View History

2024-03-07 22:34:29 -05:00
local L = {}
Languages["en-us"] = L
L["Name"] = "English (United States)"
-- Convars
L["Convar.cam_f.Name"] = "Camera Forward Offset"
L["Convar.cam_f.Description"] = ""
L["Convar.cam_fov.Name"] = "Camera FOV"
L["Convar.cam_fov.Description"] = "Field-of-view of the camera, horizontally, in 4:3 (further in higher aspect-ratios)"
L["Convar.cam_fp.Name"] = "First-person Mode"
L["Convar.cam_fp.Description"] = "First-person perspective"
L["Convar.cam_fp_fov.Name"] = "First-person weapon FOV"
L["Convar.cam_fp_fov.Description"] = "How close objects in the player's hand will appear"
L["Convar.cam_r.Name"] = "Camera Right Offset"
L["Convar.cam_r.Description"] = ""
L["Convar.cam_u.Name"] = "Camera Up Offset"
L["Convar.cam_u.Description"] = ""
L["Convar.cheat_endround.Name"] = "Cheat: End Round"
L["Convar.cheat_endround.Description"] = "Cheat"
L["Convar.cheat_rewardxp.Name"] = "Cheat: Reward XP"
L["Convar.cheat_rewardxp.Description"] = "Cheat"
L["Convar.cheat_setxp.Name"] = "Cheat: Set XP"
L["Convar.cheat_setxp.Description"] = "Cheat"
L["Convar.cheat_scoreadd.Name"] = "Cheat: Add Score"
L["Convar.cheat_scoreadd.Description"] = "Cheat"
L["Convar.cheat_scoreset.Name"] = "Cheat: Set Score"
L["Convar.cheat_scoreset.Description"] = "Cheat"
L["Convar.cheat_setstate.Name"] = "Cheat: Set Game State"
L["Convar.cheat_setstate.Description"] = "Cheat"
L["Convar.cheat_setteam.Name"] = "Cheat: Set Team"
L["Convar.cheat_setteam.Description"] = "Cheat"
L["Convar.debug_listbones.Name"] = "debug_listbones"
L["Convar.debug_listbones.Description"] = "List all bones of the current character"
L["Convar.g_intermission.Name"] = "g_intermission"
L["Convar.g_intermission.Description"] = "Intermission time"
L["Convar.g_minplayers.Name"] = "g_minplayers"
L["Convar.g_minplayers.Description"] = "Minimal players necessary to start the game"
L["Convar.g_pregame.Name"] = "g_pregame"
L["Convar.g_pregame.Description"] = "Pre-game time"
L["Convar.g_postgame.Name"] = "g_postgame"
L["Convar.g_postgame.Description"] = "Post-game time"
L["Convar.g_snd_scorelimit.Name"] = "g_snd_scorelimit"
L["Convar.g_snd_scorelimit.Description"] = "Search and Destroy: Score Limit"
L["Convar.g_snd_timelimit.Name"] = "g_snd_timelimit"
L["Convar.g_snd_timelimit.Description"] = "Search and Destroy: Time Limit"
L["Convar.g_tdm_scorelimit.Name"] = "g_tdm_scorelimit"
L["Convar.g_tdm_scorelimit.Description"] = "Team Deathmatch: Score Limit"
L["Convar.g_tdm_timelimit.Name"] = "g_tdm_timelimit"
L["Convar.g_tdm_timelimit.Description"] = "Team Deathmatch: Time Limit"
L["Convar.g_ctf_scorelimit.Name"] = "g_ctf_scorelimit"
L["Convar.g_ctf_scorelimit.Description"] = "Capture the Flag: Score Limit"
L["Convar.g_ctf_timelimit.Name"] = "g_ctf_timelimit"
L["Convar.g_ctf_timelimit.Description"] = "Capture the Flag: Time Limit"
L["Convar.g_dem_scorelimit.Name"] = "g_dem_scorelimit"
L["Convar.g_dem_scorelimit.Description"] = "Demolition: Score Limit"
L["Convar.g_dem_timelimit.Name"] = "g_dem_timelimit"
L["Convar.g_dem_timelimit.Description"] = "Demolition: Time Limit"
L["Convar.g_dom_roundlimit.Name"] = "g_dom_roundlimit"
L["Convar.g_dom_roundlimit.Description"] = "Domination: Round Limit"
L["Convar.g_dom_scorelimit.Name"] = "g_dom_scorelimit"
L["Convar.g_dom_scorelimit.Description"] = "Domination: Score Limit"
L["Convar.g_dom_timelimit.Name"] = "g_dom_timelimit"
L["Convar.g_dom_timelimit.Description"] = "Domination: Time Limit"
L["Convar.g_ffa_scorelimit.Name"] = "g_ffa_scorelimit"
L["Convar.g_ffa_scorelimit.Description"] = "Free For All: Score Limit"
L["Convar.g_ffa_timelimit.Name"] = "g_ffa_timelimit"
L["Convar.g_ffa_timelimit.Description"] = "Free For All: Time Limit"
L["Convar.g_hp_scorelimit.Name"] = "g_hp_scorelimit"
L["Convar.g_hp_scorelimit.Description"] = "Hardpoint: Score Limit"
L["Convar.g_hp_timelimit.Name"] = "g_hp_timelimit"
L["Convar.g_hp_timelimit.Description"] = "Hardpoint: Time Limit"
L["Convar.gamemode.Name"] = "Gamemode"
L["Convar.gamemode.Description"] = "Game mode"
L["Convar.gametype.Name"] = "Gametype"
L["Convar.gametype.Description"] = "Game type: SP or MP"
-- Gamemodes
L["Gamemode.free.Name"] = "Freeplay"
L["Gamemode.free.Description"] = "Objectiveless free-roam."
L["Gamemode.tdm.Name"] = "Team Deathmatch"
L["Gamemode.tdm.Description"] = "Several teams fight to the death for the most kills."
L["Gamemode.ffa.Name"] = "Free-for-all"
L["Gamemode.ffa.Description"] = "Every man for himself."
L["Gamemode.snd.Name"] = "Search and Destroy"
L["Gamemode.snd.Description"] = "One half tries to plant a bomb while the other half attempts to stop it."
L["Gamemode.ctf.Name"] = "Capture the Flag"
L["Gamemode.ctf.Description"] = "Bring your enemies flags to your base."
L["Gamemode.dom.Name"] = "Domination"
L["Gamemode.dom.Description"] = "Several teams fight to hold capture points for the longest amount of time"
L["Gamemode.dem.Name"] = "Demolition"
L["Gamemode.dem.Description"] = "One half tries to destroy the other halves objectives."
L["Gamemode.hp.Name"] = "Hardpoint"
L["Gamemode.hp.Description"] = "Several teams fight to hold a singular capture point for the longest amount of time."
-- Teams
L["Team.cia.Name"] = "CIA"
L["Team.cia.Description"] = "CIA black ops, coverup crew"
L["Team.halo.Name"] = "HALO"
L["Team.halo.Description"] = "Assassination agency?"
L["Team.plasof.Name"] = "PLASOF"
L["Team.plasof.Description"] = "People's Liberation Army Special Operations Forces"
L["Team.arng.Name"] = "NATIONAL GUARD"
L["Team.arng.Description"] = "United States National Guard"
L["Team.militia.Name"] = "MILITIA"
L["Team.militia.Description"] = "Brazilian militia??? what"
L["Team.viper.Name"] = "VIPERS"
L["Team.viper.Description"] = "Gang"
-- Items
L["Item.mk23.Name"] = "MK.23"
L["Item.mk23.Description"] = "Special forces sidearm"
L["Item.cz75.Name"] = "CZ-75"
L["Item.cz75.Description"] = "Rugged semi-automatic handgun"
L["Item.g18.Name"] = "G18"
L["Item.g18.Description"] = "Automatic machine pistol"
2024-03-12 18:43:31 -04:00
L["Item.fnc.Name"] = "FNC Para"
L["Item.fnc.Description"] = "Imported assault rifle"
2024-03-25 00:48:36 -04:00
L["Item.qbz.Name"] = "QBZ-95"
L["Item.qbz.Description"] = "Low-profile bullpup assault rifle"
2024-08-30 18:30:03 -04:00
L["Item.qbb.Name"] = "QBB-LSW"
L["Item.qbb.Description"] = "Bullpup machine gun"
L["Item.stoner.Name"] = "STONER-63"
L["Item.stoner.Description"] = "Modular machine gun"
L["Item.hk21.Name"] = "HK-21"
L["Item.hk21.Description"] = "Powerful medium machine gun"
L["Item.m16a2.Name"] = "M16A2"
L["Item.m16a2.Description"] = "Rugged burst rifle"
2024-03-25 00:48:36 -04:00
L["Item.oicw.Name"] = "OICW"
L["Item.oicw.Description"] = "Advanced combat rifle"
L["Item.spas12.Name"] = "SPAS-12"
L["Item.spas12.Description"] = "Chrome-lined autoshotgun"
2024-04-07 19:04:18 -04:00
L["Item.tmp.Name"] = "TMP"
L["Item.tmp.Description"] = "Concealable machine pistol"
2024-08-30 18:30:03 -04:00
L["Item.mp5k.Name"] = "MP5K"
L["Item.mp5k.Description"] = "High-quality SMG"
2024-08-30 18:30:03 -04:00
L["Item.mp7.Name"] = "MP7"
L["Item.mp7.Description"] = "Special forces PDW"
2024-08-30 18:30:03 -04:00
L["Item.mac11.Name"] = "MAC-11"
L["Item.mac11.Description"] = "Tiny hornet gun"
2024-08-30 18:30:03 -04:00
L["Item.1887.Name"] = "1887"
L["Item.1887.Description"] = "Lever-action"
L["Item.db.Name"] = "DB"
L["Item.db.Description"] = "Side-by-side shotgun"
L["Item.aa12.Name"] = "AA-12"
L["Item.aa12.Description"] = "Automatic combat shotgun"
L["Item.striker.Name"] = "Streetsweeper"
L["Item.striker.Description"] = "Semi-automatic drum-fed shotgun"
L["Item.r870.Name"] = "R870"
L["Item.r870.Description"] = "Sawn-off pump-action shotgun"
L["Item.spas15.Name"] = "SPAS-15"
L["Item.spas15.Description"] = "Mag-fed pump-action shotgun"
L["Item.satchels.Name"] = "Satchels"
L["Item.satchels.Description"] = "Packs of bombs and a detonator"
2024-08-30 18:30:03 -04:00
L["Item.toolgun.Name"] = "Tool gun"
L["Item.toolgun.Description"] = "Developer tools"