Guest User

Untitled

a guest
May 14th, 2021
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.20 KB | None | 0 0
  1. zmlab2 = zmlab2 or {}
  2. zmlab2.language = zmlab2.language or {}
  3.  
  4. if (zmlab2.config.SelectedLanguage == "en") then
  5.     zmlab2.language["YouDontOwnThis"] = "You dont own this!"
  6.     zmlab2.language["Minutes"] = "Minutes"
  7.     zmlab2.language["Seconds"] = "Seconds"
  8.     zmlab2.language["CratePickupFail"] = "Crate is empty!"
  9.     zmlab2.language["CratePickupSuccess"] = "Collected $MethAmount $MethName, Quality: $MethQuality%"
  10.     zmlab2.language["Interaction_Fail_Job"] = "You dont have the right job to interact with this!"
  11.     zmlab2.language["Interaction_Fail_Dropoff"] = "This dropoff point is not assigned to you!"
  12.     zmlab2.language["Dropoff_assinged"] = "Dropoff assigned!"
  13.     zmlab2.language["Dropoff_cooldown"] = "Dropoff cooldown!"
  14.     zmlab2.language["Equipment"] = "Equipment"
  15.     zmlab2.language["Equipment_Build"] = "Build"
  16.     zmlab2.language["Equipment_Move"] = "Move"
  17.     zmlab2.language["Equipment_Repair"] = "Repair"
  18.     zmlab2.language["Equipment_Remove"] = "Remove"
  19.     zmlab2.language["NotEnoughMoney"] = "You dont have enough money!"
  20.     zmlab2.language["ExtinguisherFail"] = "Object is not on fire!"
  21.     zmlab2.language["Start"] = "Start"
  22.     zmlab2.language["Drop"] = "Drop"
  23.     zmlab2.language["Move Liquid"] = "Move Liquid"
  24.     zmlab2.language["Frezzer_NeedTray"] = "No tray with unfrozen meth found!"
  25.     zmlab2.language["ERROR"] = "ERROR"
  26.     zmlab2.language["SPACE"] = "Press SPACE"
  27.     zmlab2.language["NPC_InteractionFail01"] = "I dont deal with normies! [Wrong Job]"
  28.     zmlab2.language["NPC_InteractionFail02"] = "You dont have any meth!"
  29.     zmlab2.language["NPC_InteractionFail03"] = "I dont have a free dropoff point currenty, come back later."
  30.     zmlab2.language["PoliceWanted"] = "Sold Meth!"
  31.     zmlab2.language["MissingCrate"] = "Missing Crate"
  32.     zmlab2.language["Storage"] = "STORAGE"
  33.     zmlab2.language["ItemLimit"] = "You reached the entity limit for $ItemName!"
  34.     zmlab2.language["TentFoldInfo01"] = "Are you sure you want to remove the tent?"
  35.     zmlab2.language["TentFoldInfo02"] = "Any equipment inside will be removed too!"
  36.     zmlab2.language["TentFoldAction"] = "FOLD"
  37.     zmlab2.language["TentType_None"] = "NONE"
  38.     zmlab2.language["TentAction_Build"] = "BUILD"
  39.     zmlab2.language["TentBuild_Info"] = "Please clear the area!"
  40.     zmlab2.language["TentBuild_Abort"] = "Something was in the way!"
  41.     zmlab2.language["Enabled"] = "Enabled"
  42.     zmlab2.language["Disabled"] = "Disabled"
  43.     zmlab2.language["MethTypeRestricted"] = "You are not allowed to make this type of meth!"
  44.     zmlab2.language["SelectMethType"] = "Select Meth Type"
  45.     zmlab2.language["SelectTentType"] = "Select Tent Type"
  46.     zmlab2.language["LightColor"] = "Light Color"
  47.     zmlab2.language["Cancel"] = "Cancel"
  48.     zmlab2.language["Deconstruct"] = "Deconstruct"
  49.     zmlab2.language["Construct"] = "Construct"
  50.     zmlab2.language["Choosepostion"] = "Choose new postion"
  51.     zmlab2.language["ChooseMachine"] = "Choose Machine"
  52.     zmlab2.language["Extinguish"] = "Extinguish"
  53.     zmlab2.language["PumpTo"] = "Pump to"
  54.     zmlab2.language["ConstructionCompleted"] = "Construction Completed!"
  55.     zmlab2.language["Duration"] = "Duration"
  56.     zmlab2.language["Amount"] = "Yield"
  57.     zmlab2.language["Difficulty"] = "Difficulty"
  58.     zmlab2.language["Money"] = "Money"
  59.     zmlab2.language["Difficulty_Easy"] = "Easy"
  60.     zmlab2.language["Difficulty_Medium"] = "Medium"
  61.     zmlab2.language["Difficulty_Hard"] = "Hard"
  62.     zmlab2.language["Difficulty_Expert"] = "Expert"
  63.     zmlab2.language["Connected"] = "Connected!"
  64.     zmlab2.language["Missed"] = "Missed!"
  65.  
  66.     // Tent Config
  67.     // Note: "Vamonos Pest" and "Crystale Castle" are the names of those tents so you dont need to translate them if you dont want
  68.     zmlab2.language["tent01_title"] = "Vamonos Pest Tent - Small"
  69.     zmlab2.language["tent01_desc"] = "This small tent provides room for 6 machines."
  70.     zmlab2.language["tent02_title"] = "Vamonos Pest Tent - Medium"
  71.     zmlab2.language["tent02_desc"] = "This medium sized tent provides room for 9 machines."
  72.     zmlab2.language["tent03_title"] = "Vamonos Pest Tent - Large"
  73.     zmlab2.language["tent03_desc"] = "This large tent provides room for 16 machines."
  74.     zmlab2.language["tent04_title"] = "Crystale Castle"
  75.     zmlab2.language["tent04_desc"] = "This stolen circus tent provides room for 24 machines."
  76.  
  77.     // Equipment Config
  78.     zmlab2.language["ventilation_title"] = "Ventilation"
  79.     zmlab2.language["ventilation_desc"] = "Clears the surrounding area from pollution."
  80.     zmlab2.language["storage_title"] = "Storage"
  81.     zmlab2.language["storage_desc"] = "Provides chemicals and equipment."
  82.     zmlab2.language["furnace_title"] = "Thorium furnace"
  83.     zmlab2.language["furnace_desc"] = "Used for heating acid."
  84.     zmlab2.language["mixer_title"] = "Mixer"
  85.     zmlab2.language["mixer_desc"] = "Used as the main reaction vessel to combining the compounds."
  86.     zmlab2.language["filter_title"] = "Filter"
  87.     zmlab2.language["filter_desc"] = "Used to refine the final mixture to increase its quality."
  88.     zmlab2.language["filler_title"] = "Filler"
  89.     zmlab2.language["filler_desc"] = "Used to fill the final mixture on frezzer trays."
  90.     zmlab2.language["frezzer_title"] = "Frezzer"
  91.     zmlab2.language["frezzer_desc"] = "Used to stop the final methamphetamine solution from reacting further."
  92.     zmlab2.language["packingtable_title"] = "Packing Table"
  93.     zmlab2.language["packingtable_desc"] = "Provides a fast way to break / pack meth. Can hold up to 12 frezzer trays. Can be upgraded with a automatic Ice Breaker."
  94.  
  95.     // Storage Config
  96.     zmlab2.language["acid_title"] = "Hydrofluoric Acid"
  97.     zmlab2.language["acid_desc"] = "A catalyst to increase the rate of reaction."
  98.     zmlab2.language["methylamine_title"] = "Methylamine"
  99.     zmlab2.language["methylamine_desc"] = "Methylamine (CH3NH2) is an organic compound and one of the main ingredients for the production of methamphetamine."
  100.     zmlab2.language["aluminum_title"] = "Aluminum"
  101.     zmlab2.language["aluminum_desc"] = "Aluminum amalgam is used as a chemical reagent to reduce compounds."
  102.     zmlab2.language["lox_title"] = "Liquid Oxygen"
  103.     zmlab2.language["lox_desc"] = "Liquid Oxygen is used in the Frezzer to stop the final methamphetamine solution from reacting any further."
  104.     zmlab2.language["crate_title"] = "Transportcrate"
  105.     zmlab2.language["crate_desc"] = "Used for transporting big amounts of meth."
  106.     zmlab2.language["palette_title"] = "Palette"
  107.     zmlab2.language["palette_desc"] = "Used for transporting large amounts of meth."
  108.     zmlab2.language["crusher_title"] = "Ice Breaker"
  109.     zmlab2.language["crusher_desc"] = "Automaticly breaks and packs meth when intalled on a packing table."
  110.  
  111.     // Meth Config
  112.     // Note: Hard to say what about the meth should be translated and what not. Decide for yourself whats important here.
  113.     zmlab2.language["meth_title"] = "Meth"
  114.     zmlab2.language["meth_desc"] = "Normal street meth."
  115.     zmlab2.language["bluemeth_title"] = "Crystal Blue"
  116.     zmlab2.language["bluemeth_desc"] = "The original Heisenberg formula."
  117.     zmlab2.language["kalaxi_title"] = "Kalaxian Crystal"
  118.     zmlab2.language["kalaxi_desc"] = "The Kalaxian Crystals are very similar to many drugs, as the crystals give you a good sensation."
  119.     zmlab2.language["glitter_title"] = "Glitter"
  120.     zmlab2.language["glitter_desc"] = "Glitter is a highly psychedelic drug and recent arrival on Night City's streets. It's truly strong stuff, even for the booster glutted residents of Night City."
  121.     zmlab2.language["kronole_title"] = "Kronole"
  122.     zmlab2.language["kronole_desc"] = "Kronole is a street-drug sold aboard Snowpiercer on the black market. The drug has the ability to block pain receptors, Kronole is so powerful it blocks out all feelings, not just pain."
  123.     zmlab2.language["melange_title"] = "Melange"
  124.     zmlab2.language["melange_desc"] = "Melange (Spice) is a drug able to prolong life, bestow heightened vitality and awareness, and unlock prescience in some humans."
  125.     zmlab2.language["mdma_title"] = "MDMA"
  126.     zmlab2.language["mdma_desc"] = "MDMA was first developed in 1912 by Merck. It was used to enhance psychotherapy beginning in the 1970s and became popular as a street drug in the 1980s."
  127. end
  128.  
Add Comment
Please, Sign In to add comment