Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 160.42 KB | None | 0 0
  1. --[[
  2. © 2019 Thriving Ventures AB, do not share, re-distribute or modify
  3.  
  4. without permission of its author (gustaf@thrivingventures.com).
  5. ]]
  6.  
  7. local gamemode = GAMEMODE or GM
  8.  
  9. Monolith.LocaleBuilder( "de", true )
  10.  
  11. --@TODO: put the translations in subtables (has to be mirrored in the places that use them)
  12.  
  13. gamemode_version = "Version " .. gamemode.Version -- @TODO: Find all instances and remove
  14.  
  15. monolith.version = "Update " .. gamemode.Version
  16.  
  17. ok = "OK"
  18. yes = "Ja"
  19. no = "Nein"
  20. on = "An"
  21. off = "Aus"
  22. cancel = "Abbrechen"
  23. err = "Fehler"
  24. confirm = "Bestätigen"
  25. moneySymbol = "$"
  26.  
  27. -- Callbacks for opening inventory
  28. inventory_open_in_vehicle = "Du kannst dein Inventar in einem Fahrzeug nicht benutzen."
  29. inventory_open_handcuffed = "Du kannst dein Inventar in Handschellen nicht benutzen."
  30. inventory_open_surrendered = "Du kannst dein Inventar während du dich ergibst nicht benutzen."
  31. inventory_open_arrested = "Du kannst dein Inventar während du verhaftet bist nicht benutzen."
  32. inventory_open_unconscious = "Du musst auf deinen Beinen stehen um diese Aktion auszuführen."
  33.  
  34. trash.reward = "Du erhälst %s für das reinigen des Drecks."
  35. trash.isEmpty = "Diese Mülltonne ist leer."
  36.  
  37. --[[
  38. Modules
  39. --]]
  40.  
  41. -- Actions Module
  42. actions.timeremaining = "Verbleibende Zeit" -- ? Verbleibende Zeit oder Zeit verbleibend
  43. actions.movingcancel = "Bewegungen brechen deine Aktion ab"
  44. actions.cancelled = "Du hast dich bewegt, so wurde deine Aktion abgebrochen"
  45.  
  46. actions.log.invalid = "[AKTION] %s versucht eine ungültige Aktion auszuführen"
  47. actions.debug.invalid = "[AKTION] Spieler: %s versucht eine Aktion auszuführen"
  48.  
  49. -- Areas Module
  50. -- @TODO: Map-specific areas
  51.  
  52. -- Banking Module
  53. banking.gui.deposit = "Einzahlen"
  54. banking.gui.withdraw = "Abheben"
  55. banking.gui.specify = "Wie viel Geld möchtest du %s" -- %s = banking.gui.deposit or banking.gui.withdraw
  56. banking.gui.funds = "GELD"
  57. banking.gui.balance = "Kontostand"
  58. banking.gui.account = "KONTO"
  59.  
  60. banking.notif.combat = "Du kannst dies im Kampf Modus nicht tuen"
  61. banking.notif.full = "Deine Bank ist voll! Du musst zuerst Platz schaffen bevor du mehrere Gegenstände hinzufügst"
  62. banking.notif.jobonly = "Du kannst keine Beruf Gegenstände hinzufügen."
  63. banking.notif.depositInvalidAmount = "Einzahlen fehlgeschlagen. Ungültige Anzahl."
  64. banking.notif.depositInvalidSlip = "Einzahlen fehlgeschlagen. Ungültiger Widerrufsbeleg. Error BANK_01"
  65. banking.notif.withdrawInvalidAmount = "Auszahlen fehlgeschlagen. Ungültige Anzahl." -- ?
  66. banking.notif.withdrawInvalidSlip = "Auszahlen fehlgeschlagen. Ungültiger Widerrufsbeleg. Error BANK_02"
  67. banking.notif.deposit = "Du zahlst ein %s" -- %s = formatted money
  68. banking.notif.depositInsufficient = "Du hast nicht genug Geld um diese Summe einzuzahlen."
  69. banking.notif.withdraw = "Du zahlst aus %s" -- %s = formatted money
  70. banking.notif.withdrawError = "Etwas ging während des Auszahlprozess schief. Error Code: BANK_02"
  71. banking.notif.withdrawInsufficient = "Du hast nicht genug Geld um diese Summe auszuzahlen."
  72. banking.notif.loadingError = "Etwas ging mit dem laden deiner Spielerdaten schief, bitte verbinde dich erneut."
  73. -- @TODO: Formatting money configuration
  74.  
  75. banking.log.deposit = "%s fügt Bank Gegenstand hinzu: %s"
  76. banking.log.withdraw = "%s nahm Bank Gegenstand rauß: %s"
  77. banking.log.depositMoney = "%s zahlt ein %s"
  78. banking.log.withdrawMoney = "%s zahlt aus %s"
  79.  
  80. -- Budget Module
  81. budget.gui.locker = "Schrank für Equipment"
  82. budget.gui.equipLoadout = "Loadout ausrüsten"
  83. budget.gui.primary = "Primärwaffen"
  84. budget.gui.secondary = "Sekundärwaffen"
  85. budget.gui.costs = "Kosten: %s"
  86. budget.gui.deptBudget = "%s Budget des departments: %s"
  87. budget.gui.full = "Voll"
  88. budget.gui.locked = "GESPERRT, KEIN BÜRGERMEISTER"
  89.  
  90. budget.notif.ratingGain = "You gained %s%% Mayor Rating"
  91. budget.notif.ratingLoss = "You lost %s%% Mayor Rating"
  92. budget.notif.tooLow = "The department's budget is too low to perform this action."
  93. budget.notif.refill = "The '%s' department's budget needs refilling."
  94. budget.notif.lowCityBudget = "The 'City Budget' is low"
  95. budget.notif.lowDepartment = "The '%s' department's budget is low, it needs refilling."
  96. budget.notif.lowBudget = "Das Budget des departments ist zu niedrig!"
  97. -- @TODO: sh_budget job categories
  98.  
  99. -- Carm modification module
  100. carmod.gui.noVehicles = "Du besitzt kein Fahrzeug zum modifizieren"
  101. carmod.gui.selectCar = "WÄHLE EIN FAHRZEUG"
  102. carmod.gui.modificationsTitle = "MODIFIKATIONEN"
  103. carmod.gui.bodygroups = "Körpergruppen"
  104. carmod.gui.modifications = "Fahrzeug Modifikationen"
  105. carmod.gui.purchasePartPrompt = "Möchtest du dieses Teil wirklich kaufen?"
  106. carmod.gui.noAdditionalParts = "Keine zusätzlichen Teile verfügbar."
  107. carmod.gui.parts = "Teile"
  108. carmod.gui.engineUpgradePrompt = "Möchtest du dieses Motor Upgrade wirklich kaufen?"
  109. carmod.gui.engine = "Motor"
  110. carmod.gui.resprayPurchasePrompt = "Möchtest du diese Lackierung wirklich kaufen?"
  111. carmod.gui.respray = "Lackierung"
  112. carmod.gui.skins = "Folie"
  113. carmod.gui.purchase = "KAUFEN"
  114. carmod.gui.wrapNum = "Wrap #%s"
  115. carmod.gui.wrapPurchasePrompt = "Are you sure you want to purchase this wrap?"
  116. carmod.gui.wraps = "Wraps" -- ????
  117. carmod.gui.underglow = "Unterbodenbeleuchtung"
  118. carmod.gui.underglowPurchasePrompt = "Möchtest du diese Unterbodenbeleuchtung wirklich kaufen?"
  119. carmod.gui.licensePlates = "Nummernschild"
  120. carmod.gui.licensePurchasePrompt = "Möchtest du dieses Nummernschild wirklich kaufen?"
  121.  
  122. carmod.gui.colors.stock = "Anzahl"
  123. carmod.gui.colors.white = "Weiß"
  124. carmod.gui.colors.red = "Rot"
  125. carmod.gui.colors.lime = "Limettengrün"
  126. carmod.gui.colors.green = "Grün"
  127. carmod.gui.colors.blue = "Blau"
  128. carmod.gui.colors.orange = "Orange"
  129. carmod.gui.colors.yellow = "Gelb"
  130. carmod.gui.colors.cyan = "Cyan"
  131. carmod.gui.colors.purple = "Lila"
  132. carmod.gui.colors.pink = "Pink"
  133.  
  134. carmod.gui.upgrades.stock = "Anzahl"
  135. carmod.gui.upgrades.street = "Straße"
  136. carmod.gui.upgrades.race = "Rennen"
  137. carmod.gui.upgrades.pro = "Professionel"
  138. carmod.gui.upgrades.super = "Super"
  139.  
  140. carmod.notif.premium = "Du benötigst eine Premium Mitgliedschaft um dies zu kaufen. (!store für weiter Informationen)"
  141. carmod.notif.engineUpgrade = "Dein Motor wurde umgerüstet auf %s"
  142. carmod.notif.cannotAffordRespray = "Du kannst dir diese Lackierung nicht leisten."
  143. carmod.notif.resprayBought = "Du kaufst eine Lackierung für %s"
  144. carmod.notif.cannotAffordEngine = "Du kannst dir dieses Motor Upgrade nicht leisten."
  145. carmod.notif.currentEngine = "Dies ist dein aktuelles Motor Upgrade."
  146. carmod.notif.engineReimburse = "Dir wurde %s erstattet für %s Motor Upgrade"
  147. carmod.notif.engineBought = "Du kaufst %s Motor Upgrade. Es kostete %s"
  148. carmod.notif.cannotAffordUnderglow = "Du kannst dir diese Unterbodenbeleuchtung nicht leisten"
  149. carmod.notif.underglowBought = "Du kaufst %s Unterbodenbeleuchtung. Es kostete %s"
  150. carmod.notif.cannotAffordBodygroup = "Du kannst dir diese Körpergruppe nicht leisten"
  151. carmod.notif.bodygroupBought = "Du kaufst eine Körpergruppe. Es kostete %s"
  152. carmod.notif.licenseLong = "Dein Nummernschild ist zu lang. Stell sicher, dass es %s Ziffern enthält."
  153. carmod.notif.licenseShort = "Dein Nummernschild ist zu kurz. Stell sicher, dass es %s Ziffern enthält."
  154. carmod.notif.licenseProfanity = "Dein Nummernschild darf keine Schimpfwörter enthalten."
  155. carmod.notif.cannotAffordLicense = "Du kannst dir dieses Nummernschild nicht leisten."
  156. carmod.notif.purchaseLicense = "Du kaufst ein Nummernschild. Es kostete %s"
  157. carmod.notif.skinDisabled = "Folie ist deaktiviert"
  158. carmod.notif.cannotAffordSkin = "Du kannst dir diese Folie nicht leisten"
  159. carmod.notif.purchaseVehicleSkin = "Du kaufst eine Fahrzeug Folie. Es kostet %s"
  160.  
  161. -- Christmas module
  162. christmas.gui.title = "Weihnachten naht"
  163. christmas.gui.titleRewards = "Weihnachten naht - Belohnungen"
  164. christmas.gui.rewards = "Deine Belohnung aus dem Geschenk:"
  165. christmas.gui.gift.opened = "Bereits geöffnet"
  166. christmas.gui.gift.missed = "Geschenk verpasst"
  167. christmas.gui.calendar = "Kalender"
  168.  
  169. christmas.reward.skillBoost = "%sx %s skill booster für %s" -- e.g. "2x Chemistry Skill Booster for 12 hours"
  170.  
  171. christmas.notif.christmas = "Weihnachten"
  172. christmas.notif.activeReward = "Du hast eine aktive Kalender Belohnung, die du einfordern kannst! Öffne dazu dein Mono Tablet."
  173. christmas.notif.itemReward = "Du hast ein Geschenk geöffnet und einen Gegenstand erhalten: %s"
  174. christmas.notif.cashReward = "Du hast ein Geschenk geöffnet und Geld erhalten: %s"
  175.  
  176. -- Client Settings module
  177. clientsettings.gui.keybinds = "Tastenbelegungen"
  178. clientsettings.gui.subheader = "Die Heimat aller Optionen von Modern Gaming."
  179. clientsettings.gui.confirm = "Bestätigen"
  180. clientsettings.gui.change = "Ändern"
  181.  
  182. clientsettings.gui.multicore = "Multi-Core"
  183. clientsettings.gui.performance = "Leistung"
  184. clientsettings.gui.viewRange = "Sichtweite"
  185. clientsettings.gui.apperance = "Aussehen"
  186. clientsettings.gui.vignette = "Viguette"
  187. clientsettings.gui.blur = "Blur"
  188. clientsettings.gui.betaNameplates = "Beta Nameplates" -- ???
  189. clientsettings.gui.gameHints = "Spielhinweise"
  190. clientsettings.gui.minimapStyle = "Minimap Style"
  191. clientsettings.gui.streamer = "Streamer Modus"
  192. clientsettings.gui.insurance = "Insurance Prompts" -- ? command console ?
  193. clientsettings.gui.chatSettings = "Chat Einstellungen"
  194.  
  195. -- Commands module
  196. commands.notif.noPlayer = "Kein Spieler gefunden"
  197. commands.notif.invalidModel = "Ungültiges Modell"
  198. commands.notif.invalidScale = "Ungültige Größe"
  199. commands.notif.syncingNames = "Synchronisiere Roleplay Namen..."
  200. commands.notif.cooldown = "Du musst %s Sekunden warten um diesen Befehl zu benutzen."
  201. commands.notif.entitiesFixed = "Entities fixed! (hoffentlich)"
  202. commands.notif.noDeaths = "Dieser Spieler hat keine Todesfälle, die erstattet werden müssen."
  203. commands.notif.theyRefunded = "Erfolgreich zurückerstattet %s."
  204. commands.notif.youRefunded = "Dein Tod wurde von einem Administrator erstattet! Besuche den jeweiligen NPC um ihre Gegenstände einzufordern."
  205. commands.notif.targetNotPlayer = "Du hast etwas ausgewählt, das kein Spieler ist"
  206. commands.notif.targetTooFar = "Du bist zu weit von deinem Ziel entfernt"
  207. commands.notif.cantAfford = "Du kannst dir das nicht leisten, oder du hast den falschen Betrag eingegeben"
  208. commands.notif.youGave = "Du gabst jemanden %s"
  209. commands.notif.gaveYou = "Jemand gab dir %s"
  210.  
  211. commands.roll.prefix = "[ROLLEN] " -- keep the spaces
  212. commands.roll.rolled = " gerollt "
  213. commands.roll.cooldown = "Warte %s Sekunden um erneut zu rollen."
  214.  
  215. commands.unstuck.sitting = "Du kannst dies während des sitzen nicht tuen"
  216. commands.unstuck.quickly = "Du kannst dies so schnell nicht machen"
  217. commands.unstuck.attempting = "Wir versuchen dich zu unstucken"
  218. commands.unstuck.notStuck = "Du steckst nirgendwo fest"
  219. commands.unstuck.couldntFind = "Konnte keinen passenden Platz finden. Rufe einen Admin."
  220.  
  221. commands.log.refund = "%s erstattet %s zu %s für seinen tod." -- [admin] refunded [money] to [player] for their death
  222. commands.log.give = "%s gab %s zu %s durch den geben command."
  223. commands.log.unstuck = "%s versucht sich zu unstucken"
  224. -- @TODO: Should we localize command names too?
  225.  
  226. -- Communication module
  227. -- @TODO: Should we translate chat commands?
  228. communication.notif.freqLimit = "Radiokanäle müssen innerhalb der Frequenzen 100 und 200 liegen"
  229. communication.notif.radioAccess = "Du hast kein Zugriff auf diesen Radiokanal"
  230. communication.notif.radioSet = "Du setzt dein Radiokanal auf Frequenz %s"
  231. communication.notif.radioWasSet = "Deine Radiofrequenz wurde gesetzt auf '%s'"
  232. communication.notif.msgRestrained = "Du kannst keine iMessage senden während du gefesselt bist."
  233. communication.notif.noComm = "Du besitzt momentan keine Kommunikationsgeräte."
  234. communication.notif.spam = "Hör auf zu spammen, sonst wirst du stumm geschaltet."
  235. communication.notif.muted = "Du wurdest für 60 Sekunden für Spamming stumm geschaltet."
  236. communication.notif.unmuted = "Du wurdest entstummt."
  237. communication.notif.oocBlacklist = "Du wurdest aus dem OOC Chat geblacklisted."
  238. communication.notif.cooldown = "OOC Chat ist auf Abklingzeit. Bitte warte %s bevor du es erneut versuchst."
  239. communication.notif.profanity = "Ihr Text darf keine Schimpfwörter enthalten!"
  240. -- @TODO: Add language-specific profanity filter
  241. communication.notif.restrained = "Du kannst nicht kommunizieren, solange du gefesselt bist"
  242. communication.notif.advertCharge = "Dir wurde %s für ihre Anzeige in Rechnung gestellt."
  243. communication.notif.advertInsufficient = "Du hast keine %s um eine Anzeige zu veröffentlichen."
  244. communication.notif.noRadio = "Du hast kein Funkgerät."
  245. communication.notif.enableRadio = "Du musst dein Funkgerät aktivieren."
  246. communication.notif.radioRestrained = "Du kannst mit deinem Funkgerät während du gefesselt bist, nicht interagieren."
  247. communication.notif.needCrew = "Du brauchst eine Crew, um dies zu tun."
  248. communication.notif.orgCantComm = "Du kannst mit deiner Organisation momentan nicht kommunizieren."
  249. communication.notif.orgRestrained = "Du kannst mit deiner Organisation nicht kommunizieren, solange du gefesselt bist."
  250. communication.notif.cantDead = "Du kannst dies nicht tuen, solange du tod bist."
  251.  
  252. communication.commands.says = " sagt "
  253. communication.commands.yells = " schreit "
  254. communication.commands.whispers = " flüstert "
  255.  
  256. communication.chat.ooc = "OOC"
  257. communication.chat.looc = "LOOC"
  258. communication.chat.ad = "Ad"
  259. communication.chat.radio = "Funk Chat"
  260. communication.chat.org = "ORG"
  261. communication.chat.gov = "GOV"
  262. communication.chat.somebody = "Jemanden"
  263. communication.chat.unconscious = "Du kannst nicht sprechen, während du tod oder bewusstlos bist."
  264. communication.chat.somebody = "Jemanden"
  265.  
  266. communication.channels.publicServices = "Öffentliche Dienste"
  267. communication.channels.police = "Strafverfolgung"
  268. communication.channels.guards = "Gefängniswärter"
  269. communication.channels.emergency = "Notdienste"
  270. communication.channels.ss = "Geheimdienst"
  271. communication.channels.bank = "Bank Sicherheit"
  272. communication.channels.military = "Militär"
  273. -- @TODO: Emojis? line 496 @ sh_chat.lua
  274.  
  275. communication.log.msgSent = "%s sendet eine iMessage zu: '%s' sagt: '%s'"
  276. communication.log.spamming = "%s wurde wegen spamming gemuted."
  277. communication.log.chatCmd = "%s führt chat command aus: %s"
  278.  
  279. communication.gui.iMessage = "iMessage"
  280. communication.gui.quickReplyBind = "Schnell Antwort (F6)"
  281. communication.gui.quickReply = "Schnell Antwort"
  282. communication.gui.radio = "FUNK"
  283. communication.gui.close = "SCHLIESSEN ✕"
  284. communication.gui.frequency = "FREQUENZ - %s"
  285. communication.gui.setCustomFreq = "Benutzerdefinierte Frequenz einstellen"
  286. communication.gui.setFreq = "Frequenz setzen"
  287. communication.gui.inputFreq = "Gib die Frequenz ein, auf die du umschalten möchtest. (muss zwischen 100-200 liegen)"
  288. communication.gui.confirmFreq = "Bist du sicher das du deine Frequenz wechseln willst auf '%s'?"
  289. communication.gui.switchFreq = "WECHSEL FREQUENZ (%s)"
  290. communication.gui.existing = "Bestehende Kanäle"
  291.  
  292. communication.chat.newMessage = "Neue Nachricht von %s"
  293.  
  294. communication.binds.radioTalk = "Radio Talk"
  295.  
  296. -- Cosmetics module
  297. cosmetics.gui.title = "KOSMETIKA"
  298. cosmetics.gui.equip = "ausrüsten"
  299. cosmetics.gui.unequip = "ablegen"
  300. cosmetics.gui.limited = "LIMITIERT" -- as in, limited edition
  301. cosmetics.gui.free = "KOSTENLOS"
  302. cosmetics.gui.promptEquip = "Möchtest du %s dein %s" -- Do you wish to [equip] your [item name] -- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  303. cosmetics.gui.promptPurchase = "Möchtest du %s kaufen für %s" -- Do you wish to purchase [name] for [price]
  304. cosmetics.gui.version = "VERSION"
  305. cosmetics.gui.updateLog = "Klick hier, um unser Update-Protokoll anzuzeigen!"
  306.  
  307. -- CPR module
  308. cpr.notif.emergencyOnly = "Nur Rettungsdienste können Erstehilfe an Menschen durchführen!"
  309. cpr.notif.stabalized = "Der Spieler wurde stabilisiert, du kannst nun einen starken Puls fühlen."
  310. cpr.notif.noPulse = "Du kannst keinen Puls fühlen"
  311. cpr.notif.almostWake = "Diese Person ist bei Bewusstsein und steht kurz vor dem Aufwachen."
  312. cpr.notif.feelPulse = "Du kannst einen %s Puls fühlen" -- %s = cpr.strength.XXX
  313. cpr.notif.alreadyStable = "Dieser Spieler wurde bereits stabilisiert!"
  314. cpr.notif.tooFarGone = "Es wird nicht funktionieren, er ist zu weit weg."
  315. cpr.notif.alreadyConscious = "Du kannst bei einer Person die bei bewusstsein ist keine Erstehilfe durchführen!"
  316. cpr.notif.alreadyPerforming = "Jemand führt bereits Erstehilfe bei dieser Person durch!"
  317. cpr.notif.needKit = "Du brauchst ein Erstehilfe Kasten um diese Aktion durchzuführen!"
  318. cpr.notif.kitRunOut = "Dein Erstehilfe Kasten ist leer, bitte fülle es an einen Geräteschrank auf."
  319. cpr.notif.startedCPR = "%s hat begonnen, Erstehilfe an %s anzuwenden"
  320.  
  321. cpr.strength.veryStrong = "sehr starken"
  322. cpr.strength.barely = "lebensbedrohlichen" -- ?
  323. cpr.strength.weak = "schwachen"
  324. cpr.strength.veryWeak = "sehr schwachen"
  325. cpr.strength.strong = "starken"
  326.  
  327. cpr.action.checkPulse = "%s untersucht %s's Puls."
  328. cpr.action.succeedCPR = "%s successfully performed CPR on %s."
  329. cpr.action.failedCPR = "%s unsuccessfully performed CPR on %s."
  330. cpr.action.youSucceedCPR = "You have succeeded at CPRing the patient!"
  331. cpr.action.youFailedCPR = "You have failed at CPRing the patient!"
  332. cpr.action.noComplete = "%s failed to perform CPR on %s."
  333. cpr.action.performing = "FÜHRE ERSTEHILFE DURCH"
  334.  
  335. -- Crafting Module
  336. crafting.gui.title = "HANDWERK MENÜ"
  337. crafting.gui.queue = "HANDWERK WARTESCHLANGE"
  338. crafting.gui.search = "Suche"
  339. crafting.gui.claim = "GEGENSTAND BEANSPRUCHEN"
  340. crafting.gui.duration = "Dauer: "
  341. crafting.gui.amount = "Anzahl: %s"
  342. crafting.gui.skill = "Fähigkeit: %s"
  343. crafting.gui.craft = "BAUEN"
  344. crafting.gui.requires = "BAUEN (BENÖTIGT %s)"
  345. crafting.gui.notEnough = "BAUEN (NICHT GENUG RESSOURCEN)"
  346. crafting.gui.amt = "Anzahl"
  347. crafting.gui.ing = "Bestandteil"
  348. crafting.gui.inv = "Inventar"
  349. crafting.gui.search = "Suche"
  350. crafting.gui.noCatItems = "Es gibt keine Gegenstände in dieser Kategorie. Verwende eine Werkbank oder Filter richtig."
  351. crafting.gui.allRecipes = "Alle Baupläne"
  352.  
  353. crafting.type.crafting = "Werkbank"
  354. crafting.type.woodcutting = "Holz Werkbank"
  355. crafting.type.metalworking = "Metal Werkbank"
  356. crafting.type.cooking = "Kochherd"
  357.  
  358. crafting.notif.noResources = "Du besitzt nicht die erforderlichen Ressourcen, um diesen Gegenstand herzustellen."
  359. crafting.notif.noLevel = "Du besitzt nicht das erforderliche Level, um diesen Gegenstand herzustellen."
  360. crafting.notif.queueLimit = "Du hast das Warteschlangen limit erreicht."
  361. crafting.notif.someoneStole = "%s hat deine Werkbank gestohlen!"
  362. crafting.notif.youStole = "%s du stehlst %s's Werkbank!"
  363. crafting.notif.youCrafted = "Du baust %s"
  364. crafting.notif.noInventory = "Du hast kein Inventarplatz um %s aufzuheben"
  365.  
  366. -- Crews module
  367. crews.gui.crewName = "Crew Name"
  368. crews.gui.defaultName = "Lorem Ipsum"
  369. crews.gui.listOnline = "Liste der derzeit anwesenden Crewmitglieder."
  370. crews.gui.invalidRank = "Ungültiger Rang"
  371. crews.gui.promptKick = "Möchtest du sicher %s von der Crew kicken?"
  372. crews.gui.setRank = "Rang setzen"
  373. crews.gui.promptRank = "Möchtest du sicher %s zum %s befördern?"
  374. crews.gui.transferLeadership = "Leaderschaft übertragen"
  375. crews.gui.promptTransfer = "Möchtest du sicher %s die Leaderschaft übertragen?"
  376. crews.gui.invalidName = "Ungültiger Name"
  377. crews.gui.offlineMembers = "OFFLINE MITGLIEDER"
  378. crews.gui.noOffline = "Derzeit sind keine Crewmitglieder offline."
  379. crews.gui.listOffline = "Liste der derzeitigen Crewmitglieder die offline sind."
  380. crews.gui.loading = "Lade..."
  381. crews.gui.inviteMembers = "MITGLIED EINLADEN"
  382. crews.gui.inviteDesc = "Der Ort um neue Mitglieder einzuladen."
  383. crews.gui.search = "Suche: "
  384. crews.gui.promptInvite = "Möchtest du sicher %s in deine Crew?"
  385. crews.gui.information = "INFORMATIONEN"
  386. crews.gui.numMembers = "Es sind momentan %s Mitglieder in %s."
  387. crews.gui.yourRank = "You are ranked '%s'"
  388. crews.gui.actions = "AKTIONEN"
  389. crews.gui.editName = "Bearbeite Crew Namen"
  390. crews.gui.promptEditName = "What do you want to change the crew name to?"
  391. crews.gui.editColor = "Bearbeite Crew Farbe"
  392. crews.gui.color = "BEARBEITE FARBE"
  393. crews.gui.modifyColor = "Make modifications to your crew color."
  394. crews.gui.setColor = "Set Color"
  395. crews.gui.promptColor = "Are you sure you want this to be your new crew color?"
  396. crews.gui.editLogo = "Edit Crew Logo"
  397. crews.gui.editLogoCaps = "EDIT LOGO"
  398. crews.gui.clickLogo = "Click a logo to update your current logo."
  399. crews.gui.haventSelectedLogo = "You haven't selected a logo!"
  400. crews.gui.promptLogo = "Are you sure you want this to be your new crew logo?"
  401. crews.gui.inviteMembers = "Mitglieder einladen"
  402. crews.gui.viewMembers = "Mitglieder Liste anschauen"
  403. crews.gui.leaveCrew = "Leave %s"
  404. crews.gui.promptLeave = "Are you sure you want to leave %s?"
  405. crews.gui.promptOwnerLeave = "I'm going to ask you again: As the leader of %s, after leaving your crew will be disbanded. This is irreversible. Are you sure?"
  406. crews.gui.anotherMembersList = "%s members"
  407. crews.gui.crew = "Crew"
  408. crews.gui.pending = "Pending crew"
  409. crews.gui.nameColon = "Name: "
  410. crews.gui.colorColon = "Farbe: "
  411. crews.gui.logoColon = "Logo: "
  412. crews.gui.createAndCost = "Erstellen (%s)"
  413. crews.gui.promptCreate = "Möchtest du sicher diese Crew erstellen? Es kostet %s."
  414. crews.gui.crews = "Crews"
  415. crews.gui.sectionSubhead = "Führen sie von hier Verwaltungsaktionen für ihre Crew durch."
  416.  
  417. crews.notif.notInCrew = "Du bist in keiner Crew."
  418. crews.notif.noPermInvite = "Du hast keine Berechtigung, um neue Mitglieder einzuladen"
  419. crews.notif.alreadyInCrew = "%s ist bereits in einer Crew."
  420. crews.notif.defaultError = "You could not perform this action"
  421. crews.notif.youWereInvited = "Du wurdest zu ${crewName} eingeladen von ${name}"
  422. crews.notif.youInvited = "Du lädst ${name} ein zu ${crewName}"
  423. crews.notif.noPerm = "You don't have permission to perform this action."
  424. crews.notif.higherImmunity = "The rank you're trying to add this member to has a higher immunity than your own rank."
  425. crews.notif.updatedRank = "You updated a member's rank."
  426. crews.notif.somethingWrong = "Something went wrong while updating a member's rank"
  427. crews.notif.cantKickYourself = "Du kannst dich selber nicht kicken."
  428. crews.notif.noRightsKick = "Du hast keine Berechtigung um dieses Mitglied zu kicken."
  429. crews.notif.youKicked = "Du kickst jemanden aus der Crew."
  430. crews.notif.gotKicked = "Du wurdest aus der Crew gekickt von ${name}"
  431. crews.notif.youJoined = "Du betrittst ${name}"
  432. crews.notif.acceptedInvitation = "${name} accepted your crew invitation."
  433. crews.notif.noInvite = "There is no current invite to this crew."
  434. crews.notif.transferLeadership = "You transferred leadership of ${crewName}."
  435. crews.notif.nowLeader = "Du bist nun die Leaderschaft von ${crewName}, GLÜCKWUNSCH!"
  436. crews.notif.nameLongShort = "Crew Name ist zu lang oder zu kurz"
  437. crews.notif.cantAfford = "You can't afford to make a crew."
  438. crews.notif.crewCreated = "You have created your new crew!"
  439. crews.notif.disbanded = "You disbanded %s"
  440.  
  441. crews.ranks.user = "Mitglied"
  442. crews.ranks.mod = "Moderator"
  443. crews.ranks.admin = "Administrator"
  444. crews.ranks.leader = "Leaderschaft"
  445.  
  446. -- Daily Rewards
  447. drewards.gui.title = "Tägliche Belohnungen"
  448. drewards.gui.rewardsTitle = "Heutige Belohnung"
  449. drewards.gui.skillBooster = "%s%% Fähigkeit booster für %s" -- 50% skill booster for 30:00
  450. drewards.gui.possibleRewardsHeader = "Belohnungen die du heute bekommen könntest"
  451. drewards.gui.rewardsMessage = "Belohnungen können jeden Tag eingefordert werden. Jede nacheinander beanspruchte Belohnung erhört ihre Preisstufe."
  452. drewards.gui.claimReward = "Belohnung einfordern"
  453.  
  454. drewrads.rewards.money = "Geld Belohnung"
  455. drewards.rewards.booster = "%s Booster"
  456.  
  457. drewards.notif.activeReward = "Du hast eine aktive tägliche Belohnung! Öffne dein F3 Menü um sie anzufordern."
  458. drewards.notif.alreadyClaimed = "Du hast bereits die heutige Belohnung eingefordert!"
  459. drewards.notif.received = "Du hast %s von der täglichen Belohnung erhalten!"
  460.  
  461. -- Dispatch Module
  462. dispatch.gui.title = "Neuer Notruf!"
  463. dispatch.gui.accept = "ANNEHMEN (O)"
  464. dispatch.gui.dismiss = "ABLEHNEN (N)"
  465. dispatch.gui.caller = "Anrufer: %s"
  466. dispatch.gui.description = "Beschreibung: %s"
  467.  
  468. dispatch.notif.leaveToNotify = "If you wish to receive notifications about callouts again, go to your emergency/service app and leave your current callout."
  469. dispatch.notif.newCall = "A new 911 call has been placed! Check your Emergency app!"
  470. dispatch.notif.newCallout = "There's a new callout available! Check your tablet!"
  471. dispatch.notif.callConcluded = "A 911 call you have been taking part in has been concluded."
  472. dispatch.notif.automatic = "Automatic Callout"
  473. dispatch.notif.alreadyInCallout = "You're already taking a part in some callout!"
  474. dispatch.notif.youreResponder = "You're the first responder of the call-out! Remember to end the call-out when you're finished with it!"
  475. dispatch.notif.onlyOne = "Only one person can participate in this call-out!"
  476. dispatch.notif.callDelay = "Please wait ${second} seconds before making a new 911 call."
  477. dispatch.notif.useRadio = "You can't place a call if you're working an goverment/emergency job, use radio to communicate with your fellow workers!"
  478. dispatch.notif.autoClose = "Your call-out will automatically close itself after ${minutes} minutes!"
  479. dispatch.notif.tooEarly = "You can't end a call-out so early!"
  480. dispatch.notif.jobChangeClear = "Your 911 call-outs have been cleared because of your job change!"
  481.  
  482. dispatch.action.newCall = "%s creates a new 911 call."
  483.  
  484. dispatch.log.newCall = "%s has created a new 911 call to ${department} with a descripton of \"${description}\""
  485.  
  486. -- Durability Module
  487. durability.gui.title = "REPAIR BENCH"
  488. durability.gui.subTitle = "Insert an item to check how much its repair cost will be."
  489. durability.gui.brokenCantRepair = "This item is broken and can not be repaired."
  490. durability.gui.noNeedRepair = "You do not need to repair this"
  491. durability.gui.promptRepair = "Are you sure you want to repair this item?"
  492.  
  493. durability.notif.cantRepair = "You can't repair this item."
  494. durability.notif.noSelect = "You didn't select an item to repair."
  495. durability.notif.noNeedRepair = "You don't need to repair this item."
  496. durability.notif.completelyBroken = "You can't repair items that are completely broken."
  497. durability.notif.cantAffordRepair = "You can't afford this repair."
  498. durability.notif.youRepaired = "You repaired your %s"
  499. durability.notif.thingBroken = "The %s is broken. Repair it at a repair bench!"
  500. durability.notif.equipHandcuff = "You cannot equip items while handcuffed"
  501. durability.notif.notJammed = "Your weapon is not jammed."
  502.  
  503. durability.action.unJamming = "UN-JAMMING"
  504.  
  505. durability.binds.unjamWeapon = "Unjam Weapon"
  506.  
  507. -- EXP module
  508. exp.gui.xp = "xp"
  509. exp.gui.jobEXP = "< Job EXP"
  510.  
  511. -- Factory module
  512. factory.gui.close = "CLOSE ✕"
  513. factory.gui.none = "None"
  514. factory.gui.active = "Active"
  515. factory.gui.notActive = "Not Active"
  516. factory.gui.conveyorColon = "Conveyor Belt: %s"
  517. factory.gui.powerConsumption = "Power consumption: %s W"
  518. factory.gui.placed = "Placed"
  519. factory.gui.status = "STATUS"
  520. factory.gui.ingredient = "Ingredient"
  521. factory.gui.amount = "Amount"
  522. factory.gui.available = "Available"
  523. factory.gui.craft = "Craft"
  524. factory.gui.metalIngots = "Metal Ingots"
  525. factory.gui.searchFailed = "Your search found no items"
  526. factory.gui.cantCraftComp = "You can't craft anything with the current components"
  527. factory.gui.removeQueue = "Remove from queue"
  528. factory.gui.furnace = "Furnace"
  529. factory.gui.highEndManufacturing = "High end manufacturing."
  530. factory.gui.items = "Items"
  531. factory.gui.listItems = "A list of items you can manufacture."
  532. factory.gui.factoryQueue = "FACTORY QUEUE"
  533. factory.gui.search = "Search"
  534. factory.gui.inspect = "INSPECT"
  535. factory.gui.invItemsSub = "Items in your inventory that you can insert to the component list."
  536. factory.gui.components = "COMPONENTS"
  537. factory.gui.usedCreateNew = "The items used to create new items."
  538. factory.gui.take = "Take"
  539. factory.gui.noItemsInFurnace = "There are no items in the furnace"
  540. factory.gui.insert = "Insert"
  541. factory.gui.inventory = "INVENTORY"
  542. factory.gui.storageBoxColon = "Storage Box: %s"
  543.  
  544. factory.notif.entFarExist = "Entity doesn't exist, or not furnace, or too far away"
  545. factory.notif.failedCraft = "Failed to craft item"
  546. factory.notif.furnaceTakeItems = "You took some items from the Furnace."
  547. factory.notif.somethingWrong = "Something went wrong."
  548. factory.notif.furnaceCancelCratf = "You cancelled crafting an item. All of its required components were placed back into Furnace Components."
  549. factory.notif.itemNotFound = "Item not found."
  550. factory.notif.elseUsing = "%s is using your factory."
  551. factory.notif.usingSomeonesFactory = "You started using %s's factory."
  552. factory.notif.noConveyor = "No conveyor belt. Attach one."
  553. factory.notif.notFactoryItem = "Not a factory item"
  554. factory.notif.lvlInsuff = "You do not meet the level requirements to perform this action"
  555. factory.notif.coneyorInactive = "Conveyor belt not active, toggle it"
  556. factory.notif.cantAffordManufacture = "Can't afford to manufacture item"
  557. factory.notif.tooManyQueue = "Too many items in Queue"
  558. factory.notif.addedQueue = "You added an item to the Crafting Queue."
  559.  
  560. factory.misc.energyUnit = "J"
  561.  
  562. -- HUD module
  563. hud.notif.noPlayerFound = "No player found"
  564. hud.notif.noTaxiDrivers = "There are no taxi drivers available at this time."
  565. hud.notif.silentToggle = "Toggled Silent Status on your Tablet."
  566.  
  567. hud.gui.outOfStock = "Out of stock!"
  568. hud.gui.unknown = "Unknown"
  569. hud.gui.noAmmo = "No Ammo"
  570. hud.gui.levelStuff = "Level: %s - EXP Remaining: %s"
  571. hud.gui.levelReached = "Level %s Reached!"
  572. hud.gui.male = "MALE"
  573. hud.gui.female = "FEMALE"
  574. hud.gui.noResidence = "NO RESIDENCE"
  575. hud.gui.policeTape = "Police Tape"
  576. hud.gui.nobody = "Nobody"
  577. hud.gui.frozenHead = "You have been FROZEN by a staff member. Please remain calm"
  578. hud.gui.frozenSub = "If you feel this is unjust, please use !report."
  579. hud.gui.invisible = "Invisible"
  580.  
  581. hud.gui.election.header = "MAYORAL ELECTION"
  582. hud.gui.election.text = "%s ends in %s seconds"
  583. hud.gui.election.registration = "Registration"
  584. hud.gui.election.voting = "Voting"
  585. hud.gui.election.err = "ERROR"
  586.  
  587. hud.gui.emergency.active = "Currently Active"
  588. hud.gui.emergency.header = "EMERGENCY STATE"
  589. hud.gui.emergency.reason = "Reason: \"%s\""
  590.  
  591. hud.scoreboard.players = "Players: %s/%s"
  592. hud.scoreboard.premiumStore = "Premium Store"
  593. hud.scoreboard.serverUpdates = "Server Updates"
  594. hud.scoreboard.guides = "Guides"
  595. hud.scoreboard.forums = "Forums"
  596. hud.scoreboard.discord = "Discord"
  597. hud.scoreboard.steamGroup = "Steam Group"
  598. hud.scoreboard.apply = "Apply for Staff"
  599. hud.scoreboard.serverFallback = "SERVER 1"
  600. -- @TODO: Replace serverguard's howtoapply command in cl_scoreboard.lua line 200
  601. -- @TODO: Change spookfest name to localized in line 229 of cl_scoreboard.lua
  602.  
  603. -- don't know which of these might change w/ your guys' server, so i'm adding them all:
  604. hud.links.servers = "https://monolithservers.com/servers"
  605. hud.links.premium = "https://monolithservers.com/store"
  606. hud.links.forums = "https://monolithservers.com/forums"
  607. hud.links.updates = "https://monolithservers.com/forums/forums/updates.43/"
  608. hud.links.guides = "https://monolithservers.com/forums/forums/guides.19/"
  609. hud.links.discord = "https://discord.gg/uj6NRBS"
  610. hud.links.group = "http://steamcommunity.com/groups/MonolithServers"
  611.  
  612. hud.menu.copySteamName = "Copy Steam Name"
  613. hud.menu.copyRPName = "Copy RP Name"
  614. hud.menu.copySteamID = "Copy SteamID"
  615. hud.menu.openProfile = "Open Profile"
  616. hud.menu.bringPlayer = "Bring Player"
  617. hud.menu.gotoPlayer = "Goto Player"
  618. hud.menu.cancel = "Cancel"
  619.  
  620. hud.tablet.taxi = "Taxi"
  621. hud.tablet.taxi.call = "CALL A TAXI"
  622. hud.tablet.taxi.inside = "GET INSIDE THE TAXI"
  623. hud.tablet.licenses = "Licenses"
  624. hud.tablet.licenses.request = "Request"
  625. hud.tablet.imessage = "iMessage"
  626. hud.tablet.imessage.chatOffline = "You can't chat with offline users"
  627. hud.tablet.imessage.available = "Available"
  628. hud.tablet.imessage.online = "Online"
  629. hud.tablet.imessage.offline = "Offline"
  630. hud.tablet.trading = "Trading"
  631. hud.tablet.trading.selectPlayer = "Select a player to trade with"
  632. hud.tablet.trading.sentRequest = "You have sent a trading request to %s."
  633. hud.tablet.laws = "Laws"
  634. hud.tablet.laws.permanent = "Permanent Laws"
  635. hud.tablet.laws.temporary = "Temporary Laws"
  636. hud.tablet.monomap = "Mono-Map"
  637. hud.tablet.monomap.layer = "Layer %s"
  638. hud.tablet.monotablet = "Mono-Tablet"
  639. hud.tablet.settings = "Settings"
  640. hud.tablet.settings.suppressSMS = "Suppress SMS Messages"
  641. hud.tablet.emergency = "Services & 911"
  642. hud.tablet.emergency.callouts = "CURRENT CALLOUTS"
  643. hud.tablet.emergency.endCallout = "END"
  644. hud.tablet.emergency.leave = "LEAVE"
  645. hud.tablet.emergency.focus = "FOCUS"
  646. hud.tablet.emergency.noOne = "No one!"
  647. hud.tablet.emergency.info =
  648. [[Callout identifier: ${calloutID}
  649. Responding units: ${officerAmt}
  650. First Responder: ${firstResponder}
  651. Caller: ${caller}
  652. Department: ${department}
  653.  
  654. Description: ${description}]]
  655. hud.tablet.emergency.message = "EMERGENCY MESSAGE"
  656. hud.tablet.emergency.dept.fire = "Fire Dept."
  657. hud.tablet.emergency.dept.police = "Police Dept."
  658. hud.tablet.emergency.dept.ems = "EMS Dept."
  659. hud.tablet.emergency.dept.tow = "Tow Company"
  660. hud.tablet.emergency.request = "REQUEST HELP"
  661. hud.tablet.emergency.unit = "%s Unit"
  662. hud.tablet.moveDesktop = "Move to desktop"
  663. hud.tablet.successMove = "Successfully moved the app to your desktop."
  664.  
  665. hud.misc.hz = "%s Hz" -- Hertz abbreviation
  666. -- @TODO: modules/hud/sh_toast.lua zones
  667. -- @TODO: job category line 388 cl_scoreboard.lua
  668.  
  669. -- Hunger module
  670. hunger.notif.hungry = "You are currently feeling hungry."
  671. hunger.notif.thirsty = "You are currently feeling thirsty."
  672.  
  673. -- Instanced housing module
  674. instancedhousing.gui.promptEnter = "Do you want to enter this house?"
  675. instancedhousing.gui.youWillTP = "You will teleport to a new location."
  676.  
  677. instancedhousing.notif.entered = "You entered your house"
  678. instancedhousing.notif.left = "You left your house"
  679.  
  680. -- Instanced layers module
  681. instancedlayers.notif.cantDeploy = "You can't deploy entities while in another instance"
  682. instancedlayers.notif.cantDrop = "You can't drop items while in another instance"
  683. instancedlayers.notif.anotherInstance = "%s is in another instance. You've joined them."
  684. instancedlayers.notif.returning = "Returning to your old instance."
  685.  
  686. -- Insurance module
  687. insurance.gui.unemployed = "Unemployed"
  688. insurance.gui.understandClose = "I understand, close this."
  689. insurance.gui.treatmentWouldHave = "The treatment would have costed %s, but your insurance applies, for more details, read more below;\n\n"
  690. insurance.gui.fullRate = "Payable %s from wallet at 100%% rate.\n"
  691. insurance.gui.someRate = "Payable %s (after discounts) from bank at 70%% rate or at 40%% in case of premium rate.\n"
  692. insurance.gui.premiumApplied = "Premium rate applies, the bank fee should be lowered.\n"
  693. insurance.gui.wantedNoDiscount = "You were wanted, so no discounts were applied.\n"
  694. insurance.gui.tip = "\nTIP: Any fee paid from bank is reduced - To save money, try to pay fees from bank only."
  695.  
  696. insurance.notif.newbie = "Since you are new here, your hospital fees were paid by the State. Take note, when you are above level 40 you will have to pay your insurance fees."
  697. insurance.notif.paidWallet = "You paid your hospital fees (%s) from your wallet."
  698. insurance.notif.paidPartWallet = "You paid a part of your hospital fee (%s) from your wallet."
  699. insurance.notif.paidPartBank = "You paid a part of your hospital fee (%s) from your bank."
  700. insurance.notif.paidBank = "You paid your hospital fees (%s) from your bank."
  701.  
  702. insurance.log.paidTreatment = "%s paid %s for their treatment."
  703.  
  704. -- Intro Screen Module
  705. intro.gui.startLife = "START YOUR NEW LIFE"
  706. intro.gui.rpName = "ROLEPLAY NAME"
  707. intro.gui.fallbackName = "John Doe"
  708. intro.gui.warning = [[
  709. • Please choose a serious roleplay name.
  710. • Name cannot be a celebrity / meme name.
  711. • Refusal to follow this will result in a ban.]]
  712. intro.gui.gender = "GENDER"
  713. intro.gui.face = "FACE"
  714. intro.gui.variants = " VARIANTS (PREMIUM ONLY)"
  715. intro.gui.presents = "Presents..."
  716. intro.gui.spookfest.sponsored = "Sponsored by..."
  717. intro.gui.spookfest.spooky = "Spooky Scary Skeletons"
  718. intro.gui.undocumented = "Undocumented"
  719. intro.gui.citizen = "Citizen"
  720. intro.gui.example = "Example"
  721. intro.gui.name = "Name"
  722. -- @TODO: Update profanity filter intro_screen/sh_charactercreation.lua
  723. -- @TODO: Expand invalid characters check in intro_screen/sh_charactercreation.lua
  724.  
  725. intro.notif.invalidName = "You have entered an invalid name (Min 3 letters, Max 15. Characters A-Z only, no profanity.)"
  726.  
  727. -- Inventory module (imported from legacy)
  728. inventory.inventory = "Inventory"
  729. inventory.inventory_description = "Your inventory. It can store up to %i items."
  730.  
  731. inventory.actions = "Actions"
  732. inventory.stats = "Stats"
  733. inventory.confiscatable = "Confiscatable"
  734. inventory.drop_on_death = "Drop on Death"
  735. inventory.deploy_instructions = "Left click to spawn, CTRL to cancel"
  736. inventory.character_load_failure = "Failed to load character data"
  737. inventory.notifications = "Notifications"
  738. inventory.cant_put_x_on_y = "You can't put %s on %s"
  739.  
  740. inventory.equip = "Equip"
  741. inventory.use = "Use"
  742. inventory.deploy = "Deploy"
  743. inventory.consume = "Consume"
  744. inventory.sell_with_price = "Sell (%s)"
  745. inventory.drop = "Drop"
  746. inventory.drop_singular = "Drop One"
  747. inventory.drop_half = "Drop Half"
  748. inventory.drop_custom = "Drop X"
  749. inventory.drop_helper_description = "State the amount of items you would like to drop"
  750. inventory.split = "Split"
  751. inventory.split_amount = "How much do you want to split (Max %i)"
  752. inventory.market = "Market"
  753. inventory.marketing = "Marketing"
  754. inventory.marketing_helper_description = "What would you like to set the price for this item?"
  755. inventory.form_requirement_number = "Form requires a numeric answer."
  756. inventory.form_requirement_string = "Form requires a string answer."
  757. inventory.form_requirement_specific_length = "Form requires an answer of length: %i"
  758. inventory.custom_title_prompt = "Would you like to give it a custom title?"
  759. inventory.remove_attachment = "Remove Attachment"
  760. inventory.delete_item = "Delete"
  761. inventory.are_you_sure_prompt = "Are you sure you want to perform this action? This action may be irreversable."
  762. inventory.inventory_load_failure = "Failed to load inventory data"
  763. inventory.unequip = "Unequip"
  764. inventory.streamer_mode = "Streamer Mode"
  765. inventory.unknownPlayerName = "Unknown Player Name"
  766. inventory.mainMenuToggle = "Main Menu Toggle"
  767. inventory.splitIt = "Split It!"
  768. inventory.titleLongerThan17 = "The title can't be longer than 17 characters."
  769. inventory.enterValidPrice = "You must enter a valid price."
  770. inventory.hey = "Hey!"
  771. inventory.promptDelete = "Are you sure you want to delete %s?"
  772. inventory.promptHigherHundredThou = "The price can't be higher than %s"
  773.  
  774. inventory.tooltip_changelog = "Click here to view our update log!"
  775. inventory.tooltip_servers = "Click here to view our servers page!"
  776.  
  777. inventory.viewer.someonesInventory = "%s'S INVENTORY"
  778. inventory.viewer.primary = "PRIMARY WEAPON"
  779. inventory.viewer.secondary = "SECONDARY WEAPON"
  780. inventory.viewer.misc = "MISC ITEMS"
  781. inventory.viewer.player = "PLAYER"
  782. inventory.viewer.money = "They have %s"
  783. inventory.viewer.confiscate = "Confiscate"
  784. inventory.viewer.confiscateIllegal = "CONFISCATE ILLEGAL ITEMS"
  785.  
  786. inventory.labels.premium = "Premium Only"
  787. inventory.labels.job = "Job Item"
  788. inventory.labels.limited = "Limited Edition"
  789. inventory.labels.soulbound = "Soulbound"
  790. inventory.labels.stackSize = "Stack Size: %s"
  791. inventory.labels.thirst = "${state} ${amount} Thirst"
  792. inventory.labels.hunger = "${state} ${amount} Hunger"
  793. inventory.labels.ticket = "Expires: ${date}"
  794. inventory.labels.jammed = "Jammed"
  795. inventory.labels.stats = "Weapon Stats:"
  796. inventory.labels.damage = "Damage: %s"
  797. inventory.labels.supportedAttachments = "Supported Attachments:"
  798.  
  799. inventory.notif.blacklistWeapons = "You cannot equip weapons while blacklisted."
  800. inventory.notif.weaponsOnDuty = "You cannot equip weapons on duty."
  801. inventory.notif.itemOnDuty = "You cannot equip this item on duty."
  802. inventory.notif.equipLimit = "You can't equip more than %s of this item."
  803. inventory.notif.cantEquip = "You can't equip this item."
  804. inventory.notif.cantUseItem = "You can't use this item."
  805. inventory.notif.dropPremium = "You can't drop premium only items."
  806. inventory.notif.dropSoulbound = "You can't drop soul bound items."
  807. inventory.notif.dropJobItems = "You can't drop job items"
  808. inventory.notif.alreadyDeployed = "This item is already deployed. Please pick it up first."
  809. inventory.notif.cantUseNotEnough = "You can't use this item. (Not enough)"
  810.  
  811. inventory.actions.startsSearching = "/me starts searching their backpack"
  812. inventory.actions.equips = "/me equips a %s"
  813. inventory.actions.unEquips = "/me unequips their %s"
  814. inventory.actions.unEquipDrop = "/me drops their equipped %s"
  815. inventory.actions.unEquipping = "Unequipping Weapon..."
  816. inventory.actions.equipping = "Equipping Weapon..."
  817.  
  818. inventory.log.equipped = "%s equipped item: %s"
  819. inventory.log.unEquipped = "%s un-equipped item: %s"
  820. inventory.log.unEquipDrop = "%s un-equipped and dropped item: %s"
  821. inventory.log.deployed = "%s deployed %s"
  822.  
  823. inventory.item.consumable = "Comsumable"
  824. inventory.item.equipment = "Equipment"
  825. inventory.item.ingredient = "Ingredient"
  826. inventory.item.attachment = "Attachment"
  827. inventory.item.food = "Food"
  828. inventory.item.noDescription = "This item has no description"
  829. inventory.item.alreadyEquipped = "You already have this weapon equipped"
  830. inventory.item.deployingDisabled = "Deploying items is disabled: %s"
  831. inventory.item.deployingDisableFallback = "Server Instability"
  832. inventory.item.cantDeployThis = "You can't deploy this"
  833. inventory.item.entityLimit = "You have reached the entity limit."
  834. inventory.item.inCombat = "You can't do this in combat."
  835. inventory.item.tooClose = "Too close for deploy"
  836.  
  837. inventory.sell_to_store = "Sell to %s (%s)"
  838.  
  839. -- Inventory Containers
  840. invcontainers.gui.container = "CONTAINER"
  841. invcontainers.gui.subHeader = "This is a container."
  842. invcontainers.gui.currentObservers = "Current Observers:"
  843. invcontainers.gui.storeUpTo = "You can store up to %s items in this container."
  844.  
  845. invcontainers.notif.somethingWrong = "Something went wrong while trying to open this container."
  846. invcontainers.notif.cantUse = "You can't use this container."
  847. invcontainers.notif.container = "Container"
  848. invcontainers.notif.invalidQuantity = "Transfer failed. Invalid quantity."
  849. invcontainers.notif.failWithdraw = "You failed to withdraw this item."
  850. invcontainers.notif.withdrawInvalidAmt = "Withdraw failed. Invalid amount requested."
  851. invcontainers.notif.confiscatedIllegal = "You confiscated this illegal item."
  852.  
  853. invcontainers.lootBox = "LOOT BOX"
  854. invcontainers.corpse = "CORPSE"
  855. invcontainers.corpse.info = "The remains of %s"
  856. invcontainers.backpack = "BACKPACK"
  857.  
  858. invcontainers.log.deposited = "%s deposited item: %s to a container%s."
  859. invcontainers.log.ownedBy = " owned by %s"
  860. invcontainers.log.tookItem = "%s took item: %s from a container%s."
  861. invcontainers.log.confiscated = "%s confiscated item: %s from a container%s"
  862.  
  863. -- Jobs module
  864. jobs.notif.unknownJob = "Unknown job"
  865. jobs.notif.positionsFilled = "All positions are filled. Please check back later."
  866. jobs.notif.unableBecome = "You are unable to become this job"
  867. jobs.notif.requiresLevelCategory = "This job requires level %s %s"
  868. jobs.notif.requiresLevel = "This job requires level"
  869. jobs.notif.tow.inNeedRepair = "A car is currently in need of repair."
  870. jobs.notif.tow.proceedMarked = "Please proceed to the marked location."
  871. jobs.notif.tow.repairmanOnWay = "A repairman is on the way!"
  872. jobs.notif.tow.needMoneyToCall = "You need atleast $500 to call a tow truck."
  873. jobs.notif.tow.nextToVehicle = "You need to be next to your vehicle!"
  874. jobs.notif.tow.repairScheduled = "A repair job has already been scheduled for your vehicle!"
  875. jobs.notif.tow.unableFindTow = "We were unable to find a tow truck!"
  876. jobs.notif.tow.vehicleRepaired = "Nice work! The vehicle has been repaired."
  877. jobs.notif.tow.onlyMechanicsRepair = "Only mechanics can repair your vehicle at this time."
  878. jobs.notif.employDetained = "You cannot be employed while detained."
  879. jobs.notif.blacklistedJob = "You are blacklisted from this job."
  880. jobs.notif.wanted = "You are wanted and can not be employed."
  881. jobs.notif.waitBeforeChanging = "Please wait %s before changing jobs."
  882. jobs.notif.demote.pd = "The Police Department recently demoted you. You must wait %s"
  883. jobs.notif.demote.tow = "The Towing Department recently demoted you. You must wait %s"
  884. jobs.notif.demote.ems = "The EMS Department recently demoted you. You must wait %s"
  885. jobs.notif.demote.fire = "The Fire Department recently demoted you. You must wait %s"
  886. jobs.notif.demote.security = "The Security Department recently demoted you. You must wait %s"
  887. jobs.notif.demote.mayor = "The mayor recently demoted you. You must wait %s"
  888. jobs.notif.premiumOnly = "You need to be a Premium Member for this job."
  889. jobs.notif.quitFromJob = "You have quit from your current job"
  890. jobs.notif.reachedJobLevel = "You've reached %s level %s."
  891. jobs.notif.demotedToLevel = "You've been demoted to %s level %s."
  892. jobs.notif.cantSpawnInHouse = "!!!LET US KNOW WHEN THIS HAPPENS!!!" -- devul why didnt u add it :(
  893.  
  894. jobs.convar.jobmultiplier = "What's job exp multiplier"
  895.  
  896. jobs.misc.unknown = "Unknown"
  897. jobs.misc.hospital = "Hospital"
  898. jobs.misc.tow.vehicleRepairs = "Vehicle Repairs"
  899. jobs.misc.noReason = "No Reason"
  900.  
  901. jobs.cats.health = "Health Professional"
  902. jobs.cats.police = "Police"
  903. jobs.cats.fire = "Fire Department"
  904. jobs.cats.mayor = "Mayor"
  905. jobs.cats.bank = "Bank Security"
  906. jobs.cats.security = "Security Agency"
  907. jobs.cats.tow = "Tow Truck Driver"
  908. jobs.cats.delivery = "Delivery Driver"
  909. jobs.cats.employment = "Employment Agency"
  910. jobs.cats.cab = "Cab Driver"
  911. jobs.cats.foodTruck = "Food Truck Driver"
  912.  
  913. jobs.log.became = "%s became a %s"
  914.  
  915. -- Loadout module
  916. loadout.gui.header = "EQUIPMENT LOCKER"
  917. loadout.gui.subheader = "Choose your methods of destruction."
  918. loadout.gui.close = "CLOSE ✕"
  919. loadout.gui.purchase = "Purchase"
  920. loadout.gui.miscSubhead = "A list of all available miscellaneous utilities."
  921. loadout.gui.ammoRefill = "AMMO REFILL - ${price}"
  922. loadout.gui.free = "Free"
  923. loadout.gui.refillSubhead = "Refill all of your current weapons to maximum capacity."
  924. loadout.gui.refillCurrentArmor = "Refill your current armor to maximum capacity."
  925. loadout.gui.medkitRefill = "MEDKIT REFILL - ${price}"
  926. loadout.gui.refillJobMedkit = "Refill your job medkit."
  927. loadout.gui.grenadesSubhead = "A list of all available grenades."
  928. loadout.gui.currentBudget = "CURRENT BUDGET"
  929. loadout.gui.numInBudget = "There is currently ${price} in the Mayoral Budget."
  930. loadout.gui.budgetNoMayor = [[There is no Mayor - all purchases will directly subtract from
  931. your wallet.]]
  932. loadout.gui.listOfWeapons = "A list of all available ${name} weapons."
  933. -- @TODO: How does Monolith.Keybinds.GetBindFromName work?
  934.  
  935. loadout.grenade.smoke = "Smoke Grenade"
  936. loadout.grenade.smoke.desc = "Useful for dispersing your opponents, or as cover."
  937. loadout.grenade.flash = "Flashbang"
  938. loadout.grenade.flash.desc = "Useful for disorientating your opponents."
  939. loadout.grenade.frag = "HE Grenade"
  940. loadout.grenade.frag.desc = "Useful for mass destruction."
  941. -- @TODO: What is "cloud" "certificate" and "bomb" in lines 168-170 sh_loadout.lua?
  942.  
  943. loadouts.misc.primary = "Primary"
  944. loadouts.misc.secondary = "Secondary"
  945. loadouts.misc.grenades = "Grenades"
  946. loadouts.misc.misc = "Misc"
  947.  
  948. loadout.notif.refillTimeout = "You are not currently able to purchase this item, you will be able to purchase it in ${time} seconds."
  949. loadout.notif.cantFit = "You can't fit"
  950. loadout.notif.deptCantAfford = "Your department can't afford this."
  951. loadout.notif.youCantAfford = "You can't afford this."
  952. loadout.notif.noSpaceToStore = "You have no spcae to store this item!"
  953. loadout.notif.medkitNoNeedRefill = "Your medkit doesn't need a refill."
  954. loadout.notif.boughtMedkit = "You have bought a new Job Medkit."
  955. loadout.notif.refillJobMedkit = "You have refilled your Job Medkit."
  956. loadout.notif.purchasedXforY = "You purchased a ${weapon} for ${price}"
  957. loadout.notif.purchasedXArmorforY = "You purchased ${amount} Armor for ${price}"
  958. loadout.notif.refilledAmmo = "You refilled your ammunition."
  959.  
  960. -- Log module
  961. log.sgCommand = "%s ran ServerGuard command \"%s\" %s"
  962. log.monolithCommand = "%s ran Monolith command \"%s\" %s"
  963. log.connected = "%s (%s) connected to the server"
  964. log.left = "%s (%s) left the server (%s)"
  965. log.fallDamage = "%s was killed by: fall damage."
  966. log.unknownEntity = "%s was killed by: an unknown entity. Possibly the map."
  967. log.suicide = "%s was killed by: suicide."
  968. log.killedByXWithY = "%s was killed by: %s with a %s"
  969. log.killedByX = "%s was killed by: %s"
  970. log.killedByXDriving = "%s was killed by: %s whilst driving a vehicle."
  971. log.killedByEmptyVehicle = "%s was killed by: an empty vehicle."
  972. log.killedByEntity = "%s was killed by: a %s"
  973. log.damagedThemself = "%s was damaged by: themself for %s damage"
  974. log.damagedVehicle = "%s was damaged by a vehicle driven by: %s for %s damage"
  975. log.damagedByXForYWith = "%s was damaged by: %s for %s damage with a %s"
  976. log.damagedByXForY = "%s was damaged by: %s for %s damage"
  977. log.damagedVehicleDriven = "%s was damaged by a vehicle driven by: %s for %s damage"
  978. log.damagedLooseVehicle = "%s was damaged by a loose vehicle owned by: %s for %s damage"
  979. log.spawnSENT = "%s spawned sent \"%s\""
  980. log.spawnSWEP = "%s spawned SWEP \"%s\""
  981. log.useTool = "%s tried to use tool \"%s\" on %s"
  982.  
  983. log.gui.title = "Logger Suite"
  984. log.gui.showing = "Showing %s logs for %s"
  985. log.gui.showing.all = "all"
  986. log.gui.noServerName = "No server name"
  987. log.gui.liveUpdate = "Live Update"
  988. log.gui.searchColon = "Search: "
  989. log.gui.na = "N/A"
  990. log.gui.actions = "Actions"
  991. log.gui.time = "Time"
  992. log.gui.category = "Category"
  993. log.gui.message = "Message"
  994. log.gui.copyLog = "Copy log to clipboard"
  995. log.gui.playerNotOnlineNow = "This player is not online right now"
  996. log.gui.tpToPlayer = "Teleport to Player"
  997. log.gui.bringPlayer = "Bring Player to Me"
  998. log.gui.filterLogsOf = "Filter Logs of %s"
  999. log.gui.noParticipants = "No participants to view"
  1000. log.gui.itemsFound = "Items Found"
  1001. log.gui.loading = "Loading"
  1002. log.gui.allLogs = "All Logs"
  1003.  
  1004. log.prompt.pageSelect = "What page do you want to select?"
  1005.  
  1006. log.cat.transaction = "Transactions"
  1007. log.cat.roleplay = "Roleplay"
  1008. log.cat.iMessage = "Communication"
  1009. log.cat.inventory = "Inventory"
  1010. log.cat.system = "System"
  1011. log.cat.police = "Police"
  1012. log.cat.deaths = "Deaths"
  1013. log.cat.admin = "Administration"
  1014. log.cat.damage = "Damage"
  1015. log.cat.commands = "Commands"
  1016. log.cat.connections = "Connections"
  1017. log.cat.rrl = "RRL"
  1018. log.cat.spawning = "Spawning"
  1019. log.cat.externalAddons = "External Addons"
  1020.  
  1021. log.report.created = "%s created a report (#%s) with message: %s"
  1022. log.report.opened = "%s opened a report (#%s)"
  1023. log.report.closed = "%s closed a report (#%s)"
  1024. log.report.claimed = "%s claimed a report (#%s)"
  1025. log.report.unclaimed = "%s unclaimed a report (#%s)"
  1026. log.report.respond = "%s responded to a report (#%s) with message: %s"
  1027. log.report.removed = "%s removed a report (#%s)"
  1028. -- @NOTE: Logs comand sv_logger.lua
  1029.  
  1030. -- Money Module
  1031. money.notif.withdrawnTooMuch = "%s has earned or withdrawn more than %s"
  1032. money.notif.youMustDeclare = "You have to declare your earnings."
  1033.  
  1034. -- Nameplates module
  1035. nameplates.gui.outOfStock = "Out of stock!"
  1036.  
  1037. -- Navigation module
  1038. nav.gui.below = "Below"
  1039. nav.gui.above = "Above"
  1040. nav.gui.aboveBelowDisplay = "%s (%sm)" -- Below (50m)
  1041. nav.gui.unknownArea = "Unknown Area"
  1042.  
  1043. nav.misc.meters = "m"
  1044.  
  1045. nav.poi.pVehicle = "Personal Vehicle"
  1046. nav.poi.jVehicle = "Job Vehicle"
  1047. nav.poi.myProperty = "My Property"
  1048. nav.poi.gps = "GPS"
  1049. nav.poi.personalApartment = "Personal Apartment"
  1050.  
  1051. -- New intro module
  1052. newintro.gui.map.title = "INTERACTIVE MAP"
  1053. newintro.gui.map.hint = "Double click an icon to spawn there."
  1054. newintro.gui.dynamic = "DYNAMIC"
  1055. newintro.gui.buyToSpawnElsewhere = "You can spawn in new locations by buying a Personal Home."
  1056. newintro.gui.cantSpawnPersonal = "You cannot spawn in a personal house."
  1057. newintro.gui.static = "STATIC"
  1058. newintro.gui.monolith = "MONOLITH ROLEPLAY"
  1059. newintro.gui.continueLife = "CONTINUE LIFE AS %s"
  1060. newintro.gui.serverTitle = "(%s) Version %s" -- (SERVER 1) Version 6.0.0
  1061.  
  1062. newintro.prompt.spawnHere = "Are you sure you want to spawn here?"
  1063.  
  1064. -- Notifications
  1065. notify.btn.view = "View"
  1066. notify.btn.accept = "Accept"
  1067. notify.btn.deny = "Deny"
  1068. notify.btn.dismiss = "Dismiss"
  1069. notify.btn.joinGarage = "Join Garage"
  1070. notify.btn.discard = "Discard"
  1071.  
  1072. notify.title.notice = "Notice"
  1073. notify.title.warning = "Warning"
  1074. notify.title.tip = "Tip"
  1075. notify.title.alert = "Alert"
  1076. notify.title.admin = "Admin"
  1077. notify.title.noticePush = "Notice (Push)"
  1078.  
  1079. notify.notif.unreadNotifications = "You have %s unread notifications."
  1080.  
  1081. -- NPC module
  1082. npc.gui.leave = "Leave"
  1083. npc.gui.welcomeTo = "WELCOME TO"
  1084. npc.gui.workersOnDuty = "WORKERS ON DUTY"
  1085. npc.gui.levelX = "Level %s"
  1086. npc.gui.join = "JOIN"
  1087. npc.gui.quit = "QUIT"
  1088. npc.gui.unlockedAt = "Unlocked at player level %s"
  1089. npc.gui.unlocksAt = "Unlocks at player level %s"
  1090. npc.gui.unlockedAtJob = "Unlocked at %s level %s" -- Unlocked at Police level 10
  1091. npc.gui.unlocksAtJob = "Unlocks at %s level %s"
  1092.  
  1093. npc.prompt.leaveJob = "Are you sure you want to leave your %s job?"
  1094. npc.prompt.leaveJob.title = "You already have a job"
  1095.  
  1096. npc.notif.youNeedToBeX = "You need to be a %s in order to access this."
  1097. npc.notif.invalidRank = "You do not have a valid rank to access this."
  1098. npc.notif.noValidCareerLicense = "You need a valid career driving license, acquired from town hall to deploy vehicles."
  1099. npc.notif.blacklistedDeployingVehicles = "You are blacklisted from deploying vehicles."
  1100.  
  1101. -- Ownership module
  1102. own.gui.onlineFilter = "Online Filter: "
  1103. own.gui.onlinePlayers = "Online Players"
  1104. own.gui.noOneOnline = "No one is online to edit"
  1105. own.gui.offlinePlayers = "Offline Players"
  1106. own.gui.addViaSteamID = "Add via SteamID"
  1107. own.gui.promptInsertSteamID = "Insert a Steam ID of the player you want to edit"
  1108. own.gui.haventEditedOfflinePlayers = "You haven't edited any offline players"
  1109. own.gui.noOwner = "No Owner"
  1110. own.gui.sharedAccess = "Shared Access"
  1111. own.gui.sharedAccessSubhead = "You can modify anyone's access rights to things you own."
  1112.  
  1113. -- Player module
  1114. ply.notif.invalidName = "You enterd an invalid nickname, try again."
  1115. ply.notif.nickProfanity = "Your nickname cannot contain profanity."
  1116. ply.notif.nickLonger15Chars = "Your nickname cannot be longer than 15 characters."
  1117.  
  1118. ply.prompt.nickname = "Nickname"
  1119. ply.prompt.newNickname = "What would you like your nickname to be?"
  1120.  
  1121. ply.misc.unknown = "Unknown"
  1122.  
  1123. -- Property module
  1124. -- @NOTE: We skipped furniture layouts here
  1125. -- @TODO: Test this extensively. Cut some corners due to furniture, don't want to see anything missed on the real gamemode.
  1126. property.gui.youreRenting = "You're renting this"
  1127. property.gui.close = "CLOSE ✕"
  1128. property.gui.noOwner = "No Owner"
  1129. property.gui.goBack = "< Go back"
  1130. property.gui.propertyListing = "Property Listing"
  1131. property.gui.details = "DETAILS"
  1132. property.gui.deedOwner = "Deed Owner"
  1133. property.gui.rentPrice = "Rent Price"
  1134. property.gui.pricePerTime = "%s per 15 minutes"
  1135. property.gui.rentBuy = "Rent/Buy"
  1136. property.gui.rentWithPrice = "Rent (%s)"
  1137. property.gui.alreadyOwned = " (Already Owned)"
  1138. property.gui.deedsLast = "Deeds last 30 days before expiring."
  1139. property.gui.purchaseDeeds = "Purchase Deeds (%s)"
  1140. property.gui.rentingActions = "Renting Actions"
  1141. property.gui.cancelRent = "Cancel Rent"
  1142. property.gui.deedOwnerActions = "Deed Owner Actions"
  1143. property.gui.viewDeedInfo = "View Deed Info"
  1144. property.gui.listing = "Listing ${amount} ${plural}."
  1145. property.gui.listing.singular = "property"
  1146. property.gui.listing.plural = "properties"
  1147. property.gui.propDeed = "Property Deed"
  1148. property.gui.deedInfo = "Deed Information"
  1149. property.gui.boughtDeed = "You bought this deed for %s"
  1150. property.gui.deedStartDate = "Deed start date: %s"
  1151. property.gui.unknown = "Unknown"
  1152. property.gui.deedEndDate = "Deed end date: %s"
  1153. property.gui.earnedFromDeed = "You have earned %s from this deed"
  1154. property.gui.actions = "Actions"
  1155. property.gui.collectUnclaimed = "Collect unclaimed earnings (%s)"
  1156. property.gui.changeRentPrice = "Change rent price (currently %s)"
  1157. property.gui.currentRenter = "Current Renter"
  1158. property.gui.deed = "Deed"
  1159. property.gui.myDeeds = "My Deeds"
  1160. property.gui.mapControls =
  1161. [[WASD controls to move. Alternatively you may click-drag to move.
  1162. Scroll wheel to zoom in/out.]]
  1163. property.gui.layerX = "Layer %s"
  1164. property.gui.viewCurrentDeeds = "View your current deeds."
  1165. property.gui.viewInfoAnyProperty = "View information about any property."
  1166. property.gui.pleaseSelectProperty = "Please select a property"
  1167. property.gui.propertyView = "Property View"
  1168. property.gui.propertyFinder = "Property Finder"
  1169.  
  1170. property.notif.updatedRentPrice = "You updated the rent price for this property."
  1171. property.notif.somethingWentWrong = "Something went wrong. You failed to update the rent price."
  1172.  
  1173. property.prompt.startRent = "Are you sure you want to start renting this property for %s every 15 minutes?"
  1174. property.prompt.startRent.title = "Property System"
  1175. property.prompt.purchaseDeed = "Are you sure you want to purchase the deeds to this property? NOTE: Deeds last 30 days and then they will expire."
  1176. property.prompt.rentPriceAdjustment = "What price would you like to update this to? (must be >0)"
  1177. property.prompt.rentPriceAdjustment.tit = "Property Rent Price Adjustment"
  1178.  
  1179. -- Purge module
  1180. purge.gui.text = [[
  1181. This is not a test.
  1182.  
  1183. This is your emergency broadcast system announcing the commencement of the Annual Purge sanctioned by the U.S. Government.
  1184.  
  1185. Weapons of class 4 and lower have been authorized for use during the Purge. All other weapons are restricted.
  1186. Government officials of ranking 10 have been granted immunity from the Purge and shall not be harmed.
  1187. Commencing at the siren, any and all crime, including murder, will be legal for 12 continuous hours.
  1188.  
  1189. Police, fire, and emergency medical services will be unavailable until tomorrow morning until 7 a.m., when The Purge concludes.
  1190.  
  1191. Blessed be our New Founding Fathers and America, a nation reborn.
  1192.  
  1193. May God be with you all.
  1194. ]]
  1195. purge.gui.starting = "PURGE STARTING"
  1196. purge.gui.active = "PURGE ACTIVE"
  1197. purge.gui.emergencyBroadcastSystem = "Emergency Broadcast System"
  1198.  
  1199. -- Quests module
  1200. quests.gui.complete = "QUEST COMPLETE"
  1201. quests.gui.rewardsColon = "Rewards: "
  1202. quests.gui.goBack = "< Go back"
  1203. quests.gui.completed = "COMPLETED QUEST"
  1204. quests.gui.questInProgress = "QUEST IN PROGRESS"
  1205. quests.gui.description = "DESCRIPTION"
  1206. quests.gui.noDescription = "No description."
  1207. quests.gui.requirements = "REQUIREMENTS"
  1208. quests.gui.notApplicable = "N/A."
  1209. quests.gui.difficulty = "DIFFICULTY"
  1210. quests.gui.rewards = "REWARDS"
  1211. quests.gui.noRewards = "No rewards."
  1212. quests.gui.actions = "ACTIONS"
  1213. quests.gui.focusQuest = "Focus Quest"
  1214. quests.gui.stopFocusingQuest = "Stop Focusing Quest"
  1215. quests.gui.filter = "Filter"
  1216. quests.gui.questLog = "Quest Log"
  1217. quests.gui.questLog.subHeader = "Your adventure, all in one place. Click a Quest to view more information."
  1218.  
  1219. quests.already_completed_quest = "You have already completed this Quest."
  1220. quests.cannot_start_quest = "You can't start this quest."
  1221. quests.new_quest = "NEW QUEST"
  1222.  
  1223. quests.notif.youStartedQuest = "You started a quest: %s"
  1224. quests.notif.drankSomeWater = "You drink some water. You seem to forget some of your past memories."
  1225.  
  1226. quests.misc.easy = "Easy"
  1227.  
  1228. quests.q.tutorial.name = "Tutorial Quest"
  1229. quests.q.tutorial.desc = "An introduction to Monolith."
  1230. quests.q.tutorial.requirements = "No requirements."
  1231. quests.q.tutorial.rewards = "250 XP, $10,000 (Bank Account), 2x Bottled Water"
  1232. quests.q.tutorial.onFinish = "You finished the tutorial! Here are your rewards."
  1233. quests.q.tutorial.steps.say = "Say something in the chat!"
  1234. quests.q.tutorial.steps.deposit = "Deposit your money into any ATM machine."
  1235. quests.q.tutorial.steps.tablet = "Open the Mono-Tablet"
  1236. quests.q.tutorial.steps.drink = "Drink some Bottled Water (${amount}/1)"
  1237.  
  1238. quests.q.mine.name = "Born to Mine"
  1239. quests.q.mine.desc = "Teaches you how to mine."
  1240. quests.q.mine.requirements = "No requirements."
  1241. quests.q.mine.rewards = "1000 XP, $2,000, 32x Stone"
  1242. quests.q.mine.onFinish = "You finished a quest! Here are you rewards."
  1243. quests.q.mine.steps.pickaxe = "Buy 1x Pickaxe from the Tools Cashier (${amount}/1)"
  1244. quests.q.mine.steps.stone = "Go to the Mines and Gather 32x Stone Chunk (${amount}/32)"
  1245.  
  1246. quests.q.wood.name = "Life of the Lumberjack"
  1247. quests.q.wood.desc = "Teahces you how to utilize woodcutting."
  1248. quests.q.wood.requirements = "No requirements."
  1249. quests.q.wood.rewards = "1000 XP, $2,000, 32x Wood Log"
  1250. quests.q.wood.onFinish = "You finished a quest! Here are your rewards."
  1251. quests.q.wood.steps.axe = "Buy 1x Woodcutter's Axe from the Tools Cashier (${amount}/1)"
  1252. quests.q.wood.steps.logs = "Go to the Mines and Gather 32x Wood Log (${amount}/32)"
  1253.  
  1254. quests.q.home.name = "Homely Compromises"
  1255. quests.q.home.desc = "Introduces you to living in your own home."
  1256. quests.q.home.rewards = "1250 XP, $3,000, 1x Smart TV"
  1257. quests.q.home.onFinish = "You finished a quest! Here are your rewards."
  1258. quests.q.home.requirements = "You must be Level 5 to start this quest."
  1259. quests.q.home.steps.talkNPC = "Talk to a Real Estate Agent"
  1260. quests.q.home.steps.rent = "Rent a Residential, House or Apartment Property."
  1261.  
  1262. quests.q.fish.name = "A Fish out of Water"
  1263. quests.q.fish.desc = "Introduces you to the world of fishing."
  1264. quests.q.fish.requirements = "No requirements."
  1265. quests.q.fish.rewards = "1000 XP, 962 Fishing XP, $1,500"
  1266. quests.q.fish.onFinish = "You finished a quest! Here are your rewards."
  1267. quests.q.fish.steps.talkNPC = "Talk to a Fisherman Supplier"
  1268. quests.q.fish.steps.buyRod = "Buy a fishing rod"
  1269. quests.q.fish.steps.buyWormBait = "Buy Worm Bait 5x"
  1270. quests.q.fish.steps.gatherEel = "Go to a fishing spot and Gather 5x Eel"
  1271.  
  1272. -- Recognition module
  1273. recog.unknown = "Unknown"
  1274.  
  1275. recog.gui.getID = "Get ID"
  1276.  
  1277. recog.notif.copiedID = "Copied target's ID to your cliboard"
  1278. recog.notif.introducedSelf = "You introduced yourself."
  1279. recog.notif.theyIntroduced = "%s introduced themself to you."
  1280.  
  1281. -- @NOTE: Skipped sit system
  1282.  
  1283. -- Skills module
  1284. skills.gui.skillMultiplier = "%s - (%sx XP für %s)"
  1285. skills.gui.allMilestones = "Alle Fortschritte für %s."
  1286. skills.gui.levelX = "Level %s"
  1287.  
  1288. skills.invsec.title = "Fähigkeiten"
  1289. skills.invsec.subHeader = "Deine Fähigkeiten & Talente. Klick auf eine Fähigkeit um dessen Fortschritt zu sehen."
  1290.  
  1291. skills.notif.granted = "Dir wurde %ix %s erfahrung für %s. gegeben"
  1292.  
  1293. skills.s.crafting = "Herstellen"
  1294. skills.s.mining = "Abbauen"
  1295. skills.s.farming = "Landwirtschaft"
  1296. skills.s.farming.greenThumb = "Grüner Daumen"
  1297. skills.s.cooking = "Kochen"
  1298. skills.s.metal = "Metall Arbeit"
  1299. skills.s.fishing = "Angeln"
  1300. skills.s.fishing.wormBait = "Wurm Köder ( Aal, Makrele )"
  1301. skills.s.fishing.small = "Kleiner Köder( Bass, Kabeljau )"
  1302. skills.s.fishing.medium = "Mittlere Köder ( Mahmahi )"
  1303. skills.s.fishing.big = "Großer Köder ( Salmon )"
  1304. skills.s.fishing.tuna = "Thunfischköder ( Schwertfisch )"
  1305. skills.s.fishing.codmeat = "Kabeljau-Köder ( Sonnenfisch )"
  1306. skills.s.woodcutting = "Holzfällen"
  1307. skills.s.chemistry = "Chemie"
  1308. skills.s.chemistry.clumsy = "Unbeholfener Chemiker"
  1309. skills.s.chemistry.handy = "Praktischer Chemiker"
  1310. skills.s.chemistry.average = "Normaler Chemiker"
  1311. skills.s.chemistry.trained = "Trainierter Chemiker"
  1312. skills.s.chemistry.skilled = "Ausgebildeter Chemiker"
  1313. skills.s.chemistry.experienced = "Erfahrener Chemiker"
  1314. skills.s.chemistry.advanced = "Fortgeschrittener Chemiker"
  1315. skills.s.chemistry.proficient = "Professioneller Chemiker"
  1316. skills.s.chemistry.exceptional = "Außergewöhnlicher Chemiker"
  1317. skills.s.chemistry.master = "Meister Chemiker"
  1318.  
  1319. -- @TODO: Take a look at the spawners module
  1320.  
  1321. -- Store Module
  1322. store.gui.youCanMove = "Du kannst dich bewegen indem du die 2. Maustaste gdrückt hälst und W,A,S,D benutzt."
  1323. store.gui.purchasePrice = "Kaufen %s"
  1324. store.gui.checkout = "AUSCHECKEN"
  1325. store.gui.unableToPurchase = "Nicht möglich den Gegenstand zu kaufen. Ein Error wurde gefunden."
  1326. store.gui.total = "TOTAL"
  1327. store.gui.outOfStock = "Dieser Laden ist leer!"
  1328. store.gui.levelColon = "LEVEL: %s"
  1329. store.gui.addToCart = "Zum Einkaufswagen hinzufügen"
  1330. store.gui.wasPrice = "war %s"
  1331.  
  1332. store.prompt.notEnough = "Du hast nicht genug Geld"
  1333. store.prompt.notEnough.title = "Wir können den Einkauf nicht durchführen"
  1334. store.prompt.howMuchPurchase.title = "Bitte gebe die genaue Menge an, welche sie erwerben möchten."
  1335. store.prompt.howMuchPurchase = "Menge"
  1336. store.prompt.howMuchPurchase.fallback = "1"
  1337. store.prompt.needLicense = "Du brauchst einen Waffenschein. Dich hält aber nichts auf deine eigenen Waffen herzustellen"
  1338. store.prompt.needLicense.title = "Du benötigst einen Waffenschein"
  1339.  
  1340. store.notif.restrictedPremium = "Nur für Premium Mitglieder verfügbar. (!store)"
  1341. store.notif.moreFoodTypes = "Du hast weitere Nahrungsarten freigeschaltet!"
  1342. store.notif.allFoodTypes = "Du hast alle Nahrungsarten freigeschaltet!"
  1343. store.notif.levelUp = "HOCH GELEVELT"
  1344. store.notif.pleaseWaitX = "Bitte warte %s."
  1345. store.notif.backpackFull = "Rucksack voll! You weren't charged." -- ?
  1346. store.notif.nonComma = "Benutze Beträge ohne Komma!"
  1347. store.notif.anErrorOccured = "Es ist ein Fehler aufgetreten."
  1348. store.notif.youCantPurchaseX = "Du kannst kein %s erwerben."
  1349. store.notif.itemOutOfStock = "Der Gegenstand %s ist nicht mehr verfügbar!"
  1350. -- @NOTE: Skipping stormfox until it's re-done.
  1351.  
  1352. -- Tablet framework module
  1353. tabletfw.gui.moveToDesktop = "Gehe zum Desktop"
  1354.  
  1355. -- Transactions module
  1356. trans.notif.cantAfford = "Du kannst dir das nicht leisten."
  1357. trans.notif.buyerCantAfford = "Käufer kann sich dies nicht leisten."
  1358. trans.notif.buyerNoRoom = "Käufer hat keinen Platz im Inventar."
  1359.  
  1360. trans.misc.unspecified = "Nicht spezifiziert"
  1361.  
  1362. trans.actions.boughtXofY = "%s kaufte ${count} von \"${name}\""
  1363. trans.actions.soldXofY = "%s verkaufte ${count} von \"${name}\""
  1364.  
  1365. trans.log.boughtMarketedItem = "%s kaufte ein vermakteten Gegenstand: %s für %s von %s"
  1366. trans.log.boughtMarketedItem.unknownItem = "Unbekanntes Element"
  1367. trans.log.boughtMarketedItem.unknownPlayer = "Ein unbekannter Spieler"
  1368. trans.log.receivedXFromYforZ = "%s erhielt %s von %s für %s"
  1369. trans.log.paidXforY = "%s bezahlte %s für %s"
  1370. trans.log.receivedFundsFromServer = "%s erhielt Geld vom Server in einem Betrag von %s für %s"
  1371. trans.log.purchased = "%s gekauft: %s und bezahlte %s dem %s"
  1372. trans.log.purchasedNPC = "%s gekauft: %s und bezahlte %s einem NPC - Shop"
  1373.  
  1374. -- Typing module
  1375. -- @NOTE: This is definitely not compatible with client-set language. One of the reasons it should be based on server instance.
  1376. typing.yellingEl = "Schreien..."
  1377. typing.whisperingEl = "Flüstern..."
  1378. typing.radioingEl = "Funken..."
  1379. typing.talkingEl = "Sprechen..."
  1380. typing.typingEl = "Schreiben..."
  1381. typing.inInventoryEl = "Im Inventar..."
  1382. typing.performingEl = "Durchführen..."
  1383. typing.equippingWeaponEl = "Rüste Waffe aus..."
  1384. typing.unequippingWeaponEl = "Lege Waffe weg..."
  1385.  
  1386. -- Unconscious module
  1387. unconscious.gui.warning = "Wenn du den Server jetzt verlässt wirst du gebannt!"
  1388. unconscious.gui.currentState = "MOMENTANER ZUSTAND:"
  1389.  
  1390. unconscious.states.critical = "Kritisch"
  1391. unconscious.states.deceased = "Vergiftet"
  1392. unconscious.states.stabilized = "Stabilisiert"
  1393. unconscious.states.disoriented = "Desorientiert"
  1394. unconscious.states.tazed = "Getasert"
  1395.  
  1396. unconscious.actions.dying = "Du stirbst"
  1397. unconscious.actions.standsUp = "%s steht nach dem aufwachen auf."
  1398. unconscious.actions.criticalCondition = "Kritischer Zustand"
  1399. unconscious.actions.picksSelfUp = "%s Steht vom Boden auf"
  1400.  
  1401. unconscious.ban.reason = "Trennte sich vom Server während einer Rp-Situation (Automatischer Ban) | Beschwerde einlegen: @ https://modern-gaming.net"
  1402.  
  1403. unconscious.log.changedState = "%s änderte Status von %s zu %s"
  1404. unconscious.log.enteredState = "%s Betritt Zustand %s"
  1405. unconscious.log.finishedOff = "%s erledigte %s, deshalb töte ihn"
  1406.  
  1407. -- Vehicle Module
  1408. vehicle.notif.deployingNearby = "Aufgepasst! Ein Fahrzeug wird platziert."
  1409. vehicle.notif.thisLocked = "Das Fahrzeug ist abgeschlossen."
  1410. vehicle.notif.deployCooldown = "Bitte warte ${time} bevor du das Fahrzeug platzierst."
  1411. vehicle.notif.disabledMustSell = "Das Fahrzeug ist deaktiviert. Du musst es verkaufen. Sorry!"
  1412. vehicle.notif.allDisabled = "Fahrzeuge sind momentan deaktiviert, sorry!"
  1413. vehicle.notif.cannotPersonalOnDuty = "Du kannst dein Fahrzeug nicht platzieren während du im Dienst bist."
  1414. vehicle.notif.blacklistedDeploying = "Du wurdest für das platzieren von Fahrzeugen gesperrt."
  1415.  
  1416. vehicle.notif.storedBeforeDeployed = "Dein Fahrzeug muss eingeparkt werden bevor du ein weiteres Fahrzeug ausparkst."
  1417. vehicle.notif.cannotDeployWhilePending = "Du kannst kein Fahrzeug platzieren, welches ein ausstehendes Ticket hat."
  1418. vehicle.notif.cannotDeployUnderArrest = "Du kannst kein Fahrzeug platziren während du verhaftet bist."
  1419. vehicle.notif.outOfFuel = "Das Fahrzeug hat keinen Tank mehr."
  1420. vehicle.notif.switchSeatsHandcuffed = "du kannst die Sitze nicht wechseln während du gefesselt bist."
  1421. vehicle.notif.pleaseWaitBeforeExiting = "Bitte warte ${time} bevor du das Fahrzeug verlassen kannst."
  1422. vehicle.notif.cantExitHandcuffed = "Du kannst das Fahrzeug nicht verlassen während du gefesselt bist."
  1423. vehicle.notif.orderReceivedDeploying = "Auftrag erhalten! Platziere dein Fahrzeug."
  1424. vehicle.notif.enteringCooldown = "Bitte warte ${time} bevor du ein Fahrzeug betritst."
  1425. vehicle.notif.enterProned = "Du kannst das Fahrzeug nicht betreten während es auf dem Dach liegt."
  1426. vehicle.notif.tooFarAway = "Du bist zu weit entfernt"
  1427. vehicle.notif.youreDead = "Du bist tot"
  1428. vehicle.notif.youreNotPolice = "Du bist nicht die Polizei"
  1429. vehicle.notif.playerNotHandcuffed = "Spieler ist nicht gefesselt"
  1430. vehicle.notif.noDriver = "Kein Fahrer"
  1431. vehicle.notif.alreadyInVehicle = "Spieler ist bereits im Fahrzeug."
  1432. vehicle.notif.cannotEnterWhileTaunt = "Du kannst kein Fahrzeug betreten während du verspottet wirst." -- ?
  1433. vehicle.notif.vehicleIsBeingUnlocked = "Das Fahrzeug wird aufgeschlossen."
  1434. vehicle.notif.vehicleLocked = "Das Fahrzeug ist abgeschlossen."
  1435. vehicle.notif.seatBelt = "Drücke J um deinen Gurt anzulegen."
  1436. vehicle.notif.turnOnEngine = "Drücker H um den Motor anzuschalten."
  1437. vehicle.notif.paidForRepairing = "Dir wurde folgender Betrag gezahlt %s dafür, dass du das Fahrzeug repariert hast."
  1438. vehicle.notif.lockedUnlockednside = "Du %s das Fahrzeug von innen"
  1439. vehicle.notif.lockedUnlockedInside.locked = "schließt"
  1440. vehicle.notif.lockedUnlockedInside.unlocked = "öffnest"
  1441. vehicle.notif.haveToBeDriver = "Du musst der Fahrer sein um dies zu tuen."
  1442. vehicle.notif.noKey = "Du hast kein Schlüssel für dieses Fahrzeug."
  1443. vehicle.notif.cantTurnOffKey = "Du kannst das Fahrzeug ohne den Schlüssel nicht ausschalten."
  1444. vehicle.notif.noFuelCantDriven = "Dein Fahrzeug hat keinen Tank und kann dadurch nicht fahren."
  1445. vehicle.notif.destroyedCannotBeDriven = "Dein Fahrzeug wurde zerstört und kann deshalb nicht fahren."
  1446. vehicle.notif.cantAffordDeploy = "Du kannst dir nicht leisten, dieses Fahrzeug zu platzieren."
  1447. vehicle.notif.error5 = "Fahrzeug konnte nicht platziert werden. ERROR_05"
  1448. vehicle.notif.repairBeforeStore = "Du musst dein Fahrzeug reparieren, bevor du es einparkst!"
  1449. vehicle.notif.putIntoGarage = "Dein Fahrzeug wurde erfolgreich in die Garage geparkt!"
  1450. vehicle.notif.waitBeforeDeploying = "Bitte warte %s bevor du das Fahrzeug platzierst."
  1451. vehicle.notif.contactADev = "Kontaktiere ein Teammitglied."
  1452. vehicle.notif.entryCantSpawn = "Leider können Einsteigerjobs keine Fahrzeuge platzieren."
  1453. vehicle.notif.moveVehicleCloser = "Du musst dein Fahrzeug näher ranfahren."
  1454. vehicle.notif.cantFindValidSpawnTable = "Es konnte kein gültiger Platz gefunden werden. Kontaktiere ein Teammitglied."
  1455. vehicle.notif.cantFindValidSpawn = "Es konnte kein gültiger Platz gefunden werden."
  1456. vehicle.notif.auctionedOffFor = "Dein %s wurde versteigert für %s [%]!"
  1457. vehicle.notif.waitBeforeAuctioning = "Bitte warte %s bevor du ein weiteres Fahrzeug versteigerst."
  1458. vehicle.notif.cantAuctionWhileEmployed = "Du kannst keine Fahrzeuge versteigern, während du im Dienst bist!"
  1459. vehicle.notif.cantAuctionWhileOnSale = "Du kannst kein Fahrzeug versteigern, während es im Angebot ist!"
  1460. vehicle.notif.successfullyPurchased = "Du hast erfolgreich einen %s! erworben Glückwunsch!"
  1461. vehicle.notif.waitBeforePurchasing = "Bitte warte %s bevor du ein weiteres Fahrzeug kaufst."
  1462. vehicle.notif.cantBuyDisabled = "Du kannst das Fahrzeug nicht kaufen wenn es deaktiviert ist."
  1463. vehicle.notif.cantBuy = "Du kannst das Fahrzeug nicht kaufen."
  1464. vehicle.notif.cantPurchaseEmployed = "Du kannst kein Fahrzeug kaufen während du im Dienst bist!"
  1465. vehicle.notif.cantAfford = "Du kannst dir dieses Fahrzeug nicht leisten!"
  1466. vehicle.notif.hintStuff = "Linksklick zum platzieren, Strg zum abbrechen."
  1467. vehicle.notif.unablePurchaseItem = "Nicht möglich diesen Gegenstand zu kaufen. Ein Error wurde gefunden."
  1468. vehicle.notif.deployingCosts = "Kostenabteilung bereitstellen %s"
  1469. vehicle.notif.vehiclesOnSale = "Fahrzeuge beim Händler sind im Angebot!"
  1470. vehicle.notif.vehicleTooFar = "Das Fahrzeug ist zu weit entfernt!"
  1471. vehicle.notif.atLeastSergeant = "Du musst mindestens Sergeant Polizist sein um dies zu tuen!"
  1472. vehicle.notif.mustBeEmpty = "Das Fahrzeug muss leer sein, bevor eine Radklemme angebracht werden kann!"
  1473. vehicle.notif.mustBeImmobile = "Das Fahrzeug muss beweglich sein um dies zu tuen!"
  1474. vehicle.notif.cantClampPolice = "Du kannst keine Radklemme an Polizeifahrzeuge anbringen!"
  1475. vehicle.notif.clampEnter = "Du kannst kein Fahrzeug betreten, an dem eine Radklemme angebracht ist!"
  1476.  
  1477. vehicle.bind.engine = "Motor An/Aus"
  1478. vehicle.bind.seatbelt = "Gurt An/Aus"
  1479.  
  1480. vehicle.prompt.sellCarForX = "Bist du sicher, dass du das Fahrzeug für %s verkaufen möchtest?"
  1481. vehicle.prompt.vehicleAuction = "Fahrzeug Auktion"
  1482.  
  1483. vehicle.gui.callMechanic = "Rufe einen Mechaniker"
  1484. vehicle.gui.noVehicles = "Du besitzt keine Fahrzeuge"
  1485. vehicle.gui.store = "Shop" -- As in, store an item
  1486. vehicle.gui.deploy = "Platzieren"
  1487. vehicle.gui.vehicleDeployment = "FAHRZEUG PLATZIERT"
  1488. vehicle.gui.jobValet = "%s Guthaben" -- ?
  1489. vehicle.gui.customizeIt = "Wähle eine Fahrzeug aus und passe dies an."
  1490. vehicle.gui.alreadyHaveJobVehicle = "Du hast ein momentanes Job-Fahrzeug. Parke es ein um ein neues zu platzieren."
  1491. vehicle.gui.deploy = "PLATZIERE"
  1492. vehicle.gui.customizeVehicle = "PASSE FAHRZEUG AN (NOCH NICHT IMPLEMENTIERT)"
  1493. vehicle.gui.ret = "ZURÜCKGEBEN"
  1494. vehicle.gui.premiumVehicles = "PREMIUM FAHRZEUGE"
  1495. vehicle.gui.vehicles = "FAHRZEUGE"
  1496. vehicle.gui.purchase = "Kaufen"
  1497. vehicle.gui.paintCar = "Auto färben"
  1498. vehicle.gui.purchaseWrap = "Kaufe wickeln" -- ?
  1499. vehicle.gui.none = "KEINS"
  1500. vehicle.gui.skin = "Folie #%s"
  1501. vehicle.gui.dealershipTitle = "COB'S HANDEL"
  1502. vehicle.gui.carOptions = "AUTO OPTIONEN"
  1503. vehicle.gui.originalPrice = "ORIGINALER PREIS: %s"
  1504. vehicle.gui.premiumIndicator = "Premium ★"
  1505. vehicle.gui.owned = "Besitz"
  1506. vehicle.gui.vehicleColor = "Fahrzeug Farbe"
  1507. vehicle.gui.vehicleWrap = "Fahrzeug Wickeln"
  1508. vehicle.gui.spawn = "Platzieren"
  1509. vehicle.gui.carDealer = "Autohändler"
  1510. vehicle.gui.carsOnSale = "4 Autos stehen zum verkauf da."
  1511. vehicle.gui.searchCategory = "Wähle eine Kategorie aus, um mit der Suche nach deinem Traumauto zu beginnen."
  1512.  
  1513. vehicle.cats.super = "Super"
  1514. vehicle.cats.sports = "Sport"
  1515. vehicle.cats.suv = "SUV"
  1516. vehicle.cats.classic = "Klassisch"
  1517. vehicle.cats.misc = "Sonstiges" -- Miscellaneous
  1518.  
  1519. vehicle.food.text64 = "Der Text darf nicht länger als 64 Zeichen enthalten."
  1520. vehicle.food.text3 = "Dein Text muss mehr als 3 Zeichen enthalten."
  1521. vehicle.food.textProfanity = "Der Text darf keine Schimpfwörter enthalten."
  1522. vehicle.food.wait = "Bitte warte %s."
  1523. vehicle.food.title.prompt = "Setzen eine Nachricht, die über dem LKW angezeigt wird (max. 64 Zeichen / keine Symbole)"
  1524. vehicle.food.title.title = "Setze den Titel"
  1525. vehicle.food.title.bite = "Restaurant Lieferservice"
  1526. vehicle.food.gui.gps = "Drücke [G] um Ihr GPS auf Nahrungsergänzungsmittel einzustellen."
  1527. vehicle.food.gui.earnings = "Verdienst: %s"
  1528. vehicle.food.gui.stock = "Lager"
  1529. vehicle.food.gui.profit = "Gesamtgewinn: %s"
  1530. vehicle.food.gui.currentSession = "Aktuelle Sitzung: %s"
  1531. vehicle.food.gui.levelMax = "Level: MAX"
  1532. vehicle.food.gui.level = "Level: %s (%s/%s)"
  1533.  
  1534. vehicle.garage.disabled_warning = "Dies ist momentan deaktiviert."
  1535. vehicle.garage.repaired_vehicle = "Sie haben ihr Fahrzeug an %d%% repariert."
  1536. vehicle.garage.deploying_repair_required = "Bitte repariere dein Fahrzeug bevor du es platzierst."
  1537. vehicle.garage.in_combat = "Du bist im Kampf Modus."
  1538. vehicle.garage.already_inside = "Du bist bereits in der Garage."
  1539. vehicle.garage.player_entered = "%s betritt die Garage."
  1540. vehicle.garage.inviting_no_access = "Du hast keine Rechte um jemanden in %s's Garage einzuladen."
  1541. vehicle.garage.target_too_far = "Dieser Spieler ist nicht nah genug an der Garage, in der du dich befindest."
  1542. vehicle.garage.invitation_sent = "Du hast eine Garagen Einladung an %s gesendet."
  1543. vehicle.garage.forced_out = "Du wurdest aus %s's Garage geschmissen."
  1544. vehicle.garage.vehDoesntExist = "Das Fahrzeug exestiert nicht in deinem Inventar."
  1545. vehicle.garage.spawnPointNotFound = "Fahrzeug Platzierpunkt nicht gefunden."
  1546. vehicle.garage.invitedGarage = "Du wurdest zu ${name}'s Garage eingeladen"
  1547. vehicle.garage.title = "GARAGE"
  1548. vehicle.garage.clickToEnter = "Drücke auf eine Garage um sie zu betreten."
  1549. vehicle.garage.clickToSell = "Klick auf ein Fahrzeug um es zu verkaufen"
  1550. vehicle.garage.number = "Garage %s"
  1551. vehicle.garage.vehicleMenu = "Fahrzeug Menü"
  1552. vehicle.garage.impounded = "(Beschlagnahmt) %s"
  1553. vehicle.garage.dismiss = "Verwerfen X"
  1554. vehicle.garage.deployVehicle = "PLATZIERE FAHRZEUG"
  1555. vehicle.garage.sellVehicle = "VERKAUFE FAHRZEUG: %s"
  1556. vehicle.garage.promptSell = "Bist du sicher, dass du den %s verkaufen willst für %s?"
  1557. vehicle.garage.promptSell.title = "Versteigerung (%s)"
  1558. vehicle.garage.repairVehicle = "Fahrzeug Reperatur (20%%): %s"
  1559. vehicle.garage.aboutVehicle = "Info über das Fahrzeug"
  1560. vehicle.garage.noDescription = "Keine Fahrzeug Beschreibung"
  1561. vehicle.garage.unknown = "Unbekannt"
  1562. vehicle.garage.sitRep = "Fahrzeug Lage"
  1563. vehicle.garage.fuelAmount = "Treibstoffmenge: %s%%"
  1564. vehicle.garage.health = "Fahrzeug Zustand: %s%%"
  1565. vehicle.garage.damagedParts = "Beschädigte Teile"
  1566. vehicle.garage.none = "Keine"
  1567. vehicle.garage.invite = "Einladen"
  1568. vehicle.garage.selectATarget = "Wähl ein Ziel aus"
  1569.  
  1570. vehicle.actions.turnedOnOffCar = "%s drehte %s sein Fahrzeug."
  1571. vehicle.actions.turnedOnOffCar.on = "An"
  1572. vehicle.actions.turnedOnOffCar.off = "Aus"
  1573. vehicle.actions.startedHotwiring = "%s begann mit dem verkabeln des Fahrzeugs."
  1574. vehicle.actions.succeedHotwire = "%s hat erfolgreich ein Fahrzeug verkabelt."
  1575. vehicle.actions.failedHotwire = "%s schaffte es nicht das Fahrzeug zu verkabeln."
  1576. vehicle.actions.hotwiringCar = "VERKABEL DAS FAHRZEUG"
  1577. vehicle.actions.seatbelt = "%s %s deren Gurt."
  1578. vehicle.actions.seatbelt.putOn = "anziehen"
  1579. vehicle.actions.seatbelt.tookOff = "ausziehen"
  1580.  
  1581. vehicle.actions.forceIntoPoliceCar = "%s öffnet die Tür, zwingt %s in das Polizei Auto."
  1582. vehicle.actions.puttingOnAWheelClamp = "ANBRINGEN EINER AUTOKLEMME"
  1583. vehicle.actions.takingOffWheelClamp = "NIMMT DIE AUTOKLEMME AB"
  1584.  
  1585. vehicle.inventory.trunk = "Kofferraum"
  1586.  
  1587. vehicle.log.storedVehicle = "%s parkt das Fahrzeug %s"
  1588. vehicle.log.auctioned = "%s versteigert ein Fahrzeug %s für %s"
  1589. vehicle.log.purchasedFor = "%s kaufte ein Fahrzeug %s für %s"
  1590. vehicle.log.wheelClamp = "%s hat eine Autoklemme an %s's %s angebracht."
  1591. vehicle.log.wheelClampOff = "%s hat eine Autoklemme von %s's %s entfernt."
  1592. vehicle.log.wheelClampLockpicked = "%s hat eine Autoklemme von %s's %s aufgeknackt"
  1593. -- @TODO: sh_foodtruck.lua tDefaultFood and such
  1594. -- @TODO: Check out line 960 sv_vehicle.lua
  1595.  
  1596. -- Widget module
  1597. widget.app.licenses = "Lizensen"
  1598. widget.app.laws = "Gesetze"
  1599. widget.app.skills = "Fähigkeiten"
  1600. widget.app.monoTablet = "Mono-Tablet"
  1601. widget.app.monoMap = "Mono-Map"
  1602. widget.app.taxi = "Taxi"
  1603. widget.app.iMessage = "iMessage"
  1604. widget.app.trade = "Handeln"
  1605.  
  1606. widget.gui.moveToTablet = "Gehe zum Tablet"
  1607.  
  1608. --[[
  1609. Plugins
  1610. --]]
  1611.  
  1612. -- Admin plugin
  1613. admin.gui.players = "Spieler"
  1614. admin.gui.licenseList = "Lizenzen Ansicht"
  1615. admin.gui.noLicenses = "Keine Lizenzen"
  1616. admin.gui.revoke = "Revoke"
  1617. admin.gui.permanentLaws = "Permanent Laws"
  1618. admin.gui.whatWantDo = "What do you want to do?"
  1619. admin.gui.editLaw = "Edit law"
  1620. admin.gui.editTheLaw = "Edit the Law"
  1621. admin.gui.removeTheLaw = "Remove the Law"
  1622. admin.gui.addNewLaw = "Add a new law"
  1623. admin.gui.addLaw = "Add law"
  1624. admin.gui.choosePlayer = "Choose player"
  1625. admin.gui.changeTeam = "Change team"
  1626. admin.gui.enableEmergencyState = "Enable Emergency State"
  1627. admin.gui.emergencyState = "Emergency State"
  1628. admin.gui.reasonForEState = "Enter a reason for activating an emergency state"
  1629. admin.gui.eStateLength = "Reason must be between 3 and 140 characters long"
  1630. admin.gui.adminPanel = "Admin Panel"
  1631. admin.gui.settings = "Settings"
  1632. admin.gui.blacklist = "Blacklist"
  1633. admin.gui.view = "View"
  1634. admin.gui.licenses = "Licenses"
  1635. admin.gui.jobs = "Jobs"
  1636. admin.gui.laws = "Laws"
  1637. admin.gui.teams = "Teams"
  1638. admin.gui.ticketsMenu = "Tickets Menu"
  1639. admin.gui.tickets = "Tickets"
  1640. admin.gui.creatorInfo = "Creator Info"
  1641. admin.gui.victimInfo = "Victim Info"
  1642. admin.gui.disconnected = "DISCONNECTED"
  1643. admin.gui.ticketInfo = "Ticket Info"
  1644. admin.gui.timeAgo = "%s ago"
  1645. admin.gui.deleteTicket = "Delete Ticket"
  1646. admin.gui.amount = "Amount: %s"
  1647. admin.gui.issued = "Issued: %s"
  1648. admin.gui.reason = "Reason: %s"
  1649. admin.gui.jobLevels = "JOB LEVELS"
  1650. admin.gui.playerSkills = "PLAYER SKILLS"
  1651. admin.gui.playerLookup = "Player Lookup"
  1652. admin.gui.playerMoney = "PLAYER MONEY"
  1653. admin.gui.equipment = "Equipment"
  1654. admin.gui.inventory = "Inventory"
  1655. admin.gui.bank = "Bank"
  1656. admin.gui.categoryLevel = "%s: Level %s"
  1657. admin.gui.playerLevelColon = "Player Level: %s"
  1658. admin.gui.walletComma = "Wallet: %s"
  1659. admin.gui.bankBalance = "Bank Balance: %s"
  1660. admin.gui.itemMenu = "Item Menu"
  1661. admin.gui.single = "Single"
  1662. admin.gui.stacks = "Stacks"
  1663.  
  1664. admin.item.all = "All Items"
  1665. admin.item.weapons = "Weapons"
  1666. admin.item.attachments = "Attachments"
  1667. admin.item.ammo = "Ammo"
  1668. admin.item.furniture = "Furniture"
  1669. admin.item.entities = "Entities"
  1670. admin.item.materials = "Materials"
  1671. admin.item.planks = "Planks"
  1672. admin.item.tools = "Tools"
  1673. admin.item.rawFood = "Raw Food"
  1674. admin.item.food = "Food"
  1675. admin.item.drugs = "Drugs"
  1676. admin.item.seeds = "Seeds"
  1677. admin.item.signs = "Signs"
  1678. admin.item.misc = "Misc"
  1679.  
  1680. admin.kick.whitelistMode = "Whitelist Modus ist momentan aktiviert"
  1681.  
  1682. admin.notif.lawLength = "Length must be between 3 and 200 characters."
  1683. admin.notif.removedTicket = "%s has removed one of your tickets."
  1684.  
  1685. admin.log.viewTicketsMenu = "%s attempted to view the tickets menu"
  1686. admin.log.viewItemMenu = "%s attempted to view the item menu"
  1687. admin.log.viewPlayerData = "%s attempted to view the player data of: %s"
  1688. admin.log.removedTicket = "%s attempted to remove a ticket of: %s"
  1689.  
  1690. admin.chat.adminChatPrefix = "Admins"
  1691.  
  1692. -- Advert plugin
  1693. advert.applyStaff = "Do you want to join our team and contribute by administrating this server? Check the requirements by typing '!howtoapply' in the chat!"
  1694. advert.twitter = "Follow us on Twitter @MonolithServers for news, discussion and more!"
  1695. advert.premium = "If you want to support the server and enhance your game experience, you can purchase Premium Membership! Go to MonolithServers.com/store or type !store in the chat!"
  1696. advert.css = "Missing models or textures? Make sure you've downloaded the content pack by typing !content and have CSS mounted!"
  1697. advert.forums = "We would love to get to know you! Hope you introduce yourself at our forums - MonolithServers.com"
  1698. advert.report = "Do you need to report something that requires staff assistance? You can type !report and make a ticket."
  1699. advert.help = "Do you have a question regarding something on the server? Type !help followed by your question. A mentor will reply and support you as soon as possible."
  1700.  
  1701. advert.chat.notice = "NOTICE"
  1702.  
  1703. -- AFK plugin
  1704. afk.gui.idleFor = "Idle for %s"
  1705. afk.gui.kicked = "kicked"
  1706. afk.gui.demoted = "demoted"
  1707. afk.gui.inTime = "in "
  1708. afk.gui.now = "now"
  1709.  
  1710. afk.kick.afkTooLong = "AFK for too long"
  1711.  
  1712. afk.notif.demoted = "You were demoted due to being AFK for too long."
  1713.  
  1714. -- Animation plugin
  1715. anim.notif.pleaseWaitX = "Please wait %s"
  1716. anim.notif.surrenderHandcuffed = "You can't surrender while handcuffed."
  1717. anim.notif.surrenderVehicle = "You can't surrender while in a vehicle."
  1718. anim.notif.surrenderTaunt = "You can't surrender during a taunt."
  1719. anim.notif.tauntSurrender = "You can't taunt while surrendering."
  1720. anim.notif.tauntVehicle = "You can't taunt while in a vehicle."
  1721. anim.notif.tauntHandcuffed = "You can't taunt while handcuffed."
  1722. anim.notif.tauntDead = "You can't taunt while dead."
  1723.  
  1724. anim.gui.lowerHands = "PRESS [F2] TO LOWER YOUR HANDS"
  1725.  
  1726. -- Anti-exploit plugin
  1727. exploit.notif.detectedCHM = "%s has been detected using CHM."
  1728. exploit.notif.notDetectedCHM = "%s was not detected using CHM at this time."
  1729.  
  1730. exploit.ban.altAccount = "[Anti-Exploit] Alternate Account of %s (%s) - Appeal at MonolithServers.com"
  1731. -- @TODO: Antiexploit detection reasons? sv_antiexploit.lua & cl_antiexploit.lua
  1732.  
  1733. -- Blacklist plugin
  1734. blacklist.toolgun = "Toolgun Blacklist"
  1735. blacklist.physgun = "Physgun Blacklist"
  1736. blacklist.vehicle = "Vehicle Blacklist"
  1737. blacklist.weapon = "Weapon Blacklist"
  1738. blacklist.ooc = "OOC Blacklist"
  1739. blacklist.bugTracker = "Bug Tracker Blacklist"
  1740. blacklist.bountyBoard = "Bounty Board Blacklist"
  1741. blacklist.advert = "Advert Blacklist"
  1742.  
  1743. blacklist.time.year = "One Year"
  1744. blacklist.time.month = "One Month"
  1745. blacklist.time.week = "One Week"
  1746. blacklist.time.day = "One Day"
  1747. blacklist.time.hour = "One Hour"
  1748. blacklist.time.halfHour = "Half Hour"
  1749. blacklist.time.permanent = "Permanent"
  1750.  
  1751. blacklist.notif.somethingWrong = "Something went wrong."
  1752.  
  1753. blacklist.gui.title = "Blacklist Menu"
  1754. blacklist.gui.searchOnline = "Search Online Players"
  1755. blacklist.gui.playerColon = "Player: %s"
  1756. blacklist.gui.searchSteamID = "Search Blacklisted SteamID"
  1757. blacklist.gui.invalidSteamID = "Invalid SteamID"
  1758. blacklist.gui.noDataFound = "No Data Found"
  1759. blacklist.gui.steamIDColon = "SteamID: %s"
  1760. blacklist.gui.noBlacklistedOnline = "No Blacklisted Players Online"
  1761. -- @TODO: Blacklist command?
  1762.  
  1763. blacklist.menu.customTime = "Custom Time"
  1764. blacklist.menu.remove = "Remove Blacklist"
  1765. blacklist.menu.givenBy = "Given By: %s"
  1766. blacklist.menu.expires = "Expires: %s"
  1767. blacklist.menu.jobs = "Jobs"
  1768. blacklist.menu.other = "Other"
  1769.  
  1770. blacklist.misc.unknown = "Unknown"
  1771. blacklist.misc.never = "Never"
  1772.  
  1773. blacklist.notif.driving = "You are blacklisted from driving vehicles."
  1774. blacklist.notif.job = "You are blacklisted from being a ${job}."
  1775. blacklist.notif.fromX = "You are blacklisted from ${reason}."
  1776. blacklist.notif.unblacklistedFromX = "You have been unblacklisted from ${reason}."
  1777. blacklist.notif.unblacklistedJob = "You have been unblacklisted from being a ${job}."
  1778. blacklist.notif.blacklistFromX = "You have been blacklisted from ${reason}. By ${caller}, for ${time}."
  1779. blacklist.notif.blacklistJob = "You have been blacklisted from being a ${job}. By ${caller}, for ${time}."
  1780. blacklist.notif.invalidSteamID = "Invalid SteamID."
  1781.  
  1782. blacklist.reason.physgun = "using the Physgun"
  1783. blacklist.reason.driving = "driving vehicles"
  1784. blacklist.reason.weapons = "using weapons"
  1785. blacklist.reason.toolgun = "using the Toolgun"
  1786. blacklist.reason.ooc = "the OOC chat"
  1787. blacklist.reason.bugTracker = "using the bug tracker"
  1788. blacklist.reason.advert = "making advertisements"
  1789.  
  1790. blacklist.prompt.length = "Blacklist Length"
  1791. blacklist.prompt.length.text = "Specify blacklist length (ex: 1y1w2d1h)"
  1792.  
  1793. -- @NOTE: Skipping bounty board
  1794.  
  1795. -- Clothing plugin
  1796. clothing.notif.equipSuit = "You need to equip a suit first!"
  1797. clothing.notif.purchased = "You purchased a(n) %s"
  1798. clothing.notif.maleOnly = "This is a male only clothing item"
  1799. clothing.notif.femaleOnly = "This is a female only clothing item"
  1800.  
  1801. clothing.gui.title = "CLOTHING"
  1802. clothing.gui.updateLog = "Click here to view our update log!"
  1803. clothing.gui.tieNumber = "Tie #%s"
  1804.  
  1805. clothing.style.formal = "Formal"
  1806. clothing.style.casual = "Casual"
  1807. clothing.style.puffer = "Puffer"
  1808. clothing.style.hooded = "Hooded"
  1809. clothing.style.zipper = "Zipper"
  1810.  
  1811. clothing.category.trenchcoat = "Trenchcoat Suits"
  1812. clothing.category.closed = "Closed Suits"
  1813. clothing.category.open = "Open Suits"
  1814. clothing.category.half = "Half Suits"
  1815. clothing.category.threePiece = "Three Piece Suits"
  1816. clothing.category.ties = "Ties"
  1817. clothing.category.shirts = "Shirts"
  1818. clothing.category.pants = "Pants"
  1819. clothing.category.tops = "Tops"
  1820. clothing.category.shoes = "Shoes"
  1821.  
  1822. -- @NOTE: Test these
  1823. clothing.skin.black = "Schwarzer Anzug"
  1824. clothing.skin.brown = "Braun & Blauer Anzug"
  1825. clothing.skin.navyblue = "Navy Blauer Anzug"
  1826. clothing.skin.cream = "Weiß & Schwarzer Anzug"
  1827. clothing.skin.grey = "Grauer Anzug"
  1828. clothing.skin.green = "Grüner Anzug"
  1829. clothing.skin.grey_brown = "Blau & Brauner Anzug"
  1830. clothing.skin.grey_black = "Grau & Schwarzer Anzug"
  1831. clothing.skin.tan = "Tan" -- ?
  1832. clothing.skin.grey_blue = "Grau & Blauer Anzug"
  1833. clothing.skin.brown_tan = "Grau & Tan Anzug"
  1834. clothing.skin.black_black = "Schwarz & Schwarzer Anzug"
  1835. clothing.skin.black_blue = "Schwarz & Blauer Anzug"
  1836. clothing.skin.striped_grey = "Gestreifter Grauer Anzug"
  1837. clothing.skin.striped_blue = "Gestreifter Blauer Anzug"
  1838. clothing.skin.red = "Schwarz & Roter Anzug"
  1839. clothing.skin.shirt_blue = "Blaues Shirt"
  1840. clothing.skin.shirt_white = "Beige Shirt"
  1841. clothing.skin.shirt_green = "Grünes Shirt"
  1842. clothing.skin.shirt2_blue = "Blue dsb Shirt"
  1843. clothing.skin.shirt2_white = "White dsb Shirt"
  1844. clothing.skin.jacket_blue = "Blue Jacket"
  1845. clothing.skin.jacket_green = "Green Jacket"
  1846. clothing.skin.jacket_red = "Red Jacket"
  1847. clothing.skin.sweater1 = "Blue Sweater"
  1848. clothing.skin.sweater2 = "Brown Sweater"
  1849. clothing.skin.sweater3 = "Grey Sweater"
  1850. clothing.skin.jeans_black = "Faded Black Jeans"
  1851. clothing.skin.jeans_grey = "Faded Blue Jeans"
  1852. clothing.skin.jeans_fade_black = "Brown Stained Jeans"
  1853. clothing.skin.jeans_fade_blue = "Dark Blue Jeans"
  1854. clothing.skin.holster1 = "Light Padded Jeans"
  1855. clothing.skin.holster2 = "Dark Padded Jeans"
  1856. clothing.skin.black_hoodie = "Black Hoodie"
  1857. clothing.skin.giffy_hoodie = "Bigness Hoodie #5 (Urban Camo)"
  1858. clothing.skin.bigness_hoodie_red = "Bigness Hoodie #1"
  1859. clothing.skin.bigness_hoodie_gray = "Bigness Hoodie #2 (Desert Camo)"
  1860. clothing.skin.gray_hoodie = "Red & Black Hoodie"
  1861. clothing.skin.bigness_hoodie_pink = "Bigness Hoodie #3"
  1862. clothing.skin.light_gray_hoodie = "Bigness Hoodie #4"
  1863. clothing.skin.white_hoodie = "Black & White Hoodie"
  1864. clothing.skin.jeans_bluedarkhoodied = "Dunkelblaue Jeans"
  1865. clothing.skin.whitejeanshoodied = "Weiße Jeans"
  1866. clothing.skin.beigejeanshoodied = "Beige Jeans"
  1867. clothing.skin.bluejeans_hoodied = "Blaue Jeans"
  1868. clothing.skin.bluelightjeans_hoodied = "Light Blue Jeans"
  1869. clothing.skin.grayjeans_hoodied = "Graue Jeans"
  1870. clothing.skin.orangejeans_hoodied = "Orange Jeans"
  1871. clothing.skin.shoes_orangehoodied = "Orange BB Shoes"
  1872. clothing.skin.shoes_brownhoodied = "Brown BB Shoes"
  1873. clothing.skin.shoes_grayhoodied = "Gray BB Shoes"
  1874. clothing.skin.shoes_whitehoodied = "White BB Shoes"
  1875. clothing.skin.shoes_redhoodied = "Red BB Shoes"
  1876. clothing.skin.shoes_blackhoodied = "Black BB Shoes"
  1877. clothing.skin.shoes_blacktopshoodied = "Black High Tops"
  1878. clothing.skin.shoes_whitetopshoodied = "White High Tops"
  1879. clothing.skin.shoes_redtopshoodied = "Red High Tops"
  1880. clothing.skin.femgiffie = "Gray Hoodie"
  1881. clothing.skin.blackhoodiefemale = "Black Hoodie"
  1882. clothing.skin.brownhoodiefemale = "Brown Hoodie"
  1883. clothing.skin.femjeans_bluedarkhoodied = "Green Canvas Pants"
  1884. clothing.skin.femwhitejeanshoodied = "Black Canvas Pants"
  1885. clothing.skin.fembeigejeanshoodied = "Brown Canvas Pants"
  1886. clothing.skin.fembluejeans_hoodied = "Gray Canvas Pants"
  1887. clothing.skin.femgrayjeans_hoodied = "Beige Canvas Pants"
  1888. clothing.skin.femcamohoodiepantsfemale = "Camo Canvas Hose"
  1889. clothing.skin.femwhitehoodiepantsfemale = "Weiße Canvas Hose"
  1890. clothing.skin.femshoes_orangehoodied = "Orange BB Shoes"
  1891. clothing.skin.femshoes_brownhoodied = "White BB Shoes"
  1892. clothing.skin.femblackshoeshoodied = "Black BB Shoes"
  1893. clothing.skin.femblackshoeshoodied = "Black BB Shoes"
  1894. clothing.skin.femblackhightopsfemale = "Schwarze High Tops"
  1895. clothing.skin.femwhitehightops = "Weiße High Tops"
  1896. clothing.skin.femwhiteandredhightops = "Weiß & Rote High Tops"
  1897. clothing.skin.femwhiteandbluehightops = "Weiß & Blaue High Tops"
  1898. clothing.skin.femgrayskateshoes = "Graue Skater Schuhe"
  1899. clothing.skin.femblackskateshoes = "Schwarze Skater Schuhe"
  1900.  
  1901. clothing.prompt.equipX = "Do you wish to equip your ${name}?"
  1902. clothing.prompt.purchaseX = "Do you wish to purchase this ${name} for ${price}?"
  1903.  
  1904. -- Confiscation plugin
  1905. conf.gui.title = "EVIDENCE LOCKER"
  1906. conf.gui.itemsHeader = "YOUR ITEMS - NO ITEMS"
  1907. conf.gui.takeAllItems = "TAKE ALL ITEMS"
  1908. conf.gui.take = "Take"
  1909. conf.gui.yourItemsX = "YOUR ITEMS - %s ITEMS"
  1910.  
  1911. conf.ent.name = "Evidence Locker"
  1912.  
  1913. conf.notif.confiscated = "%s confiscated %s from %s"
  1914. conf.notif.you = "You"
  1915. conf.notif.youConfiscated = "You confiscated %s from %s"
  1916. conf.notif.followingConfiscated = "The following items were confiscated from you: %s"
  1917. conf.notif.takeFromLocker = "You took %s from the Evidence Locker."
  1918. conf.notif.xTakeFromLocker = "%s took %s from the Evidence Locker"
  1919. conf.notif.unableRetrieve = "You were unable to retrieve any items from the locker."
  1920. conf.notif.lockerHandcuff = "You cannot access this as you are handcuffed."
  1921. conf.notif.noRetrieve = "You have no items to retrieve from the locker."
  1922. conf.notif.getCloserTo = "Get closer to %s"
  1923. conf.notif.notPolice = "You are not Police!"
  1924.  
  1925. -- Context Plugin
  1926. context.log.used = "${player} used the context menu (${action}): ${info}"
  1927. context.log.xVehicleRepaired = "${name}'s vehicle has been fully repaired."
  1928. context.log.xRepairedVehicle = "${name} has repaired your vehicle."
  1929. context.log.fullyRepaired = "This vehicle has been fully repaired."
  1930. context.log.bankBalance = "Informative - Copy Bank Balance"
  1931. context.log.revive = "Moderating - Revive"
  1932. context.log.demote = "Moderating - Demote"
  1933. context.log.handcuff = "Moderating - Handcuff"
  1934. context.log.copyChannel = "Moderating - Copy Radio Channel"
  1935. context.log.viewInventory = "Informative - View Inventory"
  1936.  
  1937. context.notif.entityOwner = "${name} is the owner of this entity."
  1938. context.notif.arrestVoided = "Your arrest was voided by staff."
  1939. context.notif.noDriver = "No vehicle driver found."
  1940. context.notif.vehicleKicked = "${name} has kicked you out of your vehicle."
  1941. context.notif.moneyLookup = "${name} has ${cash} in their wallet. They have ${bank} in their bank account."
  1942. context.notif.youWereRevived = "You were revived by ${name}!"
  1943. context.notif.youRevived = "You revived ${name}."
  1944. context.notif.demoted = "You were demoted from your current job. You must wait 5 minutes to get a new job."
  1945. context.notif.youDemoted = "You have demoted ${name}."
  1946. context.notif.youWereX = "You were ${action}."
  1947. context.notif.youHaveXY = "You have ${action} ${name}."
  1948. context.notif.handcuffed = "handcuffed"
  1949. context.notif.unhandcuffed = "unhandcuffed"
  1950. context.notif.switchedChannel = "You switched to channel ${channel}."
  1951. context.notif.copySteamID = "Copied ${name}'s SteamID to your clipboard"
  1952. context.notif.copySteamName = "Copied ${name}'s Steam name to your clipboard"
  1953.  
  1954. context.misc.invalidPlayer = "Invalid Player"
  1955. context.misc.time1h = "1 hour"
  1956. context.misc.time2h = "2 hours"
  1957. context.misc.time4h = "4 hours"
  1958. context.misc.time12h = "12 hours"
  1959. context.misc.time1d = "1 day"
  1960. context.misc.time2d = "2 days"
  1961. context.misc.time7d = "1 week"
  1962. context.misc.time1y = "Permanently"
  1963.  
  1964. context.menu.unarrest = "Unarrest Player"
  1965. context.menu.unlock = "Unlock doors"
  1966. context.menu.lock = "Lock door"
  1967. context.menu.repair = "Repair vehicle"
  1968. context.menu.unclamp = "Unclamp the wheel"
  1969. context.menu.kickFromVehicle = "Kick from Vehicle"
  1970. context.menu.informative = "Informative"
  1971. context.menu.informative.steamID = "Get SteamID"
  1972. context.menu.informative.steamName = "Get Steam Name"
  1973. context.menu.informative.money = "Get Money"
  1974. context.menu.informative.lookup = "Lookup"
  1975. context.menu.informative.inventory = "View Inventory"
  1976. context.menu.moderating = "Moderating"
  1977. context.menu.moderating.freeze = "Freeze"
  1978. context.menu.moderating.revive = "Revive"
  1979. context.menu.moderating.demote = "Demote"
  1980. context.menu.moderating.handcuff = "Handcuff"
  1981. context.menu.moderating.radioChannel = "Copy Radio Channel"
  1982. context.menu.admin = "Administrating"
  1983. context.menu.admin.kick = "Kick"
  1984. context.menu.admin.ban = "Ban"
  1985.  
  1986. context.prompt.kick.title = "Kick %s"
  1987. context.prompt.kick = "Please state your kick reason"
  1988. context.prompt.ban.title = "Ban %s"
  1989. context.prompt.ban = "Please state your ban reason"
  1990.  
  1991. -- @NOTE: Skipping devtools
  1992.  
  1993. -- DHeists plugin
  1994. dheists.item.bag.desc = "Used to carry loot items. You can fit %s items in it."
  1995. dheists.item.mask.desc = "Wear this to conceal your identity."
  1996. dheists.item.drill = "Drill"
  1997. dheists.item.drill.desc = "An automated drill used to drill through sturdy material."
  1998.  
  1999. dheists.notif.cantJob = "You can't do this as your current job."
  2000.  
  2001. dheists.misc.masked = "Masked Individual"
  2002.  
  2003. -- Discord plugin
  2004. discord.notif.failed = "Failed to authenticate; contact a developer. %s"
  2005.  
  2006. -- Farming plugin
  2007. farming.gui.title = "Title"
  2008. farming.gui.type = "Type"
  2009. farming.gui.plantSeed = "Plant Seed"
  2010. farming.gui.locked = " (LOCKED)"
  2011. farming.gui.tip = "TIP: Plants harvested on your garden property give you more XP!"
  2012.  
  2013. farming.notif.levelRequired = "Level %s farming required."
  2014. farming.notif.maxDirt = "You have reached the max amount of dirt piles."
  2015.  
  2016. farming.item.cropTomato = "Tomate"
  2017. farming.item.cropPotato = "Kartoffel"
  2018. farming.item.cropCarrot = "Karrote"
  2019. farming.item.cropPear = "Birne"
  2020. farming.item.cropCorn = "Mais"
  2021. arming.item.cropMushroom = "Pilz"
  2022. farming.item.cropLettuce = "Salat"
  2023. farming.item.cropMelon = "Melone"
  2024. farming.item.cropOnion = "Zwiebel"
  2025. farming.item.cropPepper = "Paprika"
  2026. farming.item.cropGourd = "Kürbis" -- ?
  2027. farming.item.cropPumpkin = "Kürbis"
  2028. farming.item.cropOrange = "Orange"
  2029. farming.item.cropApple = "Apfel"
  2030. farming.item.cropCoconut = "Kokosnuss"
  2031. farming.item.cropBananas = "Banane"
  2032. farming.item.cropPineapple = "Ananas"
  2033. farming.item.cropEggplant = "Aubergine"
  2034. farming.item.cropCocoa = "Kakao"
  2035. farming.item.chiliPepper = "Chili"
  2036. farming.item.redGrapes = "Rote Trauben"
  2037. farming.item.purpleGrapes = "Lila Trauben"
  2038. farming.item.whiteGrapes = "Weiße Trauben"
  2039. farming.item.cocaLeaves = "Kokablätter"
  2040.  
  2041. -- Fire extensions plugin
  2042. fire.gui.locker.title = "Firetruck Gear"
  2043. fire.gui.locker.equip = "Equip"
  2044. fire.gui.truck.off = "OFF"
  2045. fire.gui.truck.low = "LOW"
  2046. fire.gui.truck.high = "HIGH"
  2047. fire.gui.truck.title = "Firetruck Management Panel"
  2048. fire.gui.truck.hydrant = "Hydrant Pump %s"
  2049. fire.gui.truck.hydrant.enabled = "enabled"
  2050. fire.gui.truck.hydrant.disabled = "disabled"
  2051. fire.gui.truck.remaining = "Remaining foam refills: %s"
  2052. fire.gui.truck.pump = "Pump (out) pressure: %s"
  2053. fire.gui.truck.storage = "Water storage: %s liters"
  2054. fire.gui.truck.hoseStatus = "Hose status (%s): %s"
  2055. fire.gui.truck.hoseStatus.deployed = "DEPLOYED"
  2056. fire.gui.truck.hoseStatus.notDeployed = "NOT DEPLOYED"
  2057.  
  2058. fire.item.turnoutGear = "Turnout Gear"
  2059. fire.item.turnoutGear.desc = [[Turnout clothing can consist of a combination of trousers suspenders, boots, and a jacket. Modern sets use a trouser/jacket combination.
  2060. The advantage of this combination is overlapping coverage to create a protective envelope for the firefighter to operate in.
  2061.  
  2062. Turnout Gear is particualy heavy, and because of that, jumping and stamina regeneration are limited when worn.]]
  2063. fire.item.fireAxe = "Fire Axe"
  2064. fire.item.fireAxe.desc = [[Firefighter's axe, fire axe, or pick head axe:
  2065. It has a pick-shaped pointed poll (area of the head opposite the cutting edge).
  2066. It is often decorated in vivid colours to make it easily visible during an emergency.
  2067.  
  2068. Its primary use is for breaking down doors and windows.]]
  2069. fire.item.extinguisher = "Fire Extinguisher"
  2070. fire.item.extinguisher.desc = [[A fire extinguisher is an active fire protection device used to extinguish or control small fires, often in emergency situations.
  2071. It is not intended for use on an out-of-control fire, such as one which has reached the ceiling, endangers the user (i.e., no escape route, smoke, explosion hazard, etc.),
  2072. or otherwise requires the expertise of a fire brigade.]]
  2073.  
  2074. fire.notif.equipTurnout = "You have equipped Turnout clothing."
  2075. fire.notif.unequipTurnout = "You have unequipped Turnout clothing."
  2076. fire.notif.stashed = "You have stashed that item into the firetruck."
  2077. fire.notif.alreadyEquipped = "You already have an equipment item out!"
  2078. fire.notif.turnoutHeavy = "The turnout gear is too heavy to jump in."
  2079. fire.notif.gearTableMissing = "Gear table is missing on the server! Contact a developer. (%s)"
  2080. fire.notif.emptyDriver = "Empty the driver seat first!"
  2081. fire.notif.noFoam = "There are no foam containers left in the firetruck! You can refill the truck at fire department depot."
  2082. fire.notif.storeDeployedHoses = "You can't do that; Store any deployed hoses into the firetruck."
  2083. fire.notif.pressureOff = "You can't do that; Put water pressure to OFF."
  2084.  
  2085. -- Fishing plugin (imported)
  2086. -- @NOTE: Take a look at plugins/fishing/sh_language_localisation.lua for existing translations
  2087. -- @NOTE: Ask Mark if this is even used.
  2088. fishing.cant_afford = "You can't afford that!"
  2089. fishing.fish_limit_reached = "You've reached your %s limit!"
  2090. fishing.fisherman_spots_full = "Can't find an empty spot near the Fisherman!"
  2091. fishing.bought_gear = "You bought %s!"
  2092. fishing.sold_fish = "You made $%s for selling your fish!"
  2093. fishing.no_water_detected = "No water detected under the cage!"
  2094. fishing.cant_find_water_surface = "Couldn't find the water surface!"
  2095. fishing.water_surface_shallow = "This is too shallow!"
  2096. fishing.carry_limit_reached = "You already have %s fishes!"
  2097. fishing.no_fish_containers_near = "There are no Fish Containers near you!"
  2098. fishing.fish_containers_full = "All the nearby Fish Containers are full!"
  2099. fishing.no_fish_bait = "You don't have any fishing bait hooked."
  2100. fishing.didnt_catch_anything = "You reeled in your line too early or late."
  2101. fishing.money_bag_caught = "You caught a money bag with $%s inside!"
  2102. fishing.fish_caught = "You caught a %s!"
  2103. fishing.empty_fish_containers_near = "Can't find any empty containers near you to put fish in!"
  2104. fishing.hook_caught = "You caught something! Use(E) your hook."
  2105. fishing.picked_up_fish_bait = "You hooked %s fishing bait onto your rod."
  2106. fishing.buoy_too_far = "Too far away from the buoy!"
  2107. fishing.fish_market = "Fish Market"
  2108. fishing.no_fish_to_sell = "You have no fish\nto sell"
  2109. fishing.reward_txt = "Reward: $%s"
  2110. fishing.price_txt = "Price: $%s"
  2111. fishing.purchase_txt = "Purchase"
  2112. fishing.fish_sells_for = "Your fish sells for $%s"
  2113. fishing.sell_all = "Sell all"
  2114. fishing.fisherman = "Fisherman"
  2115. fishing.deploy_fish_cage = "Deploy Fish Cage"
  2116. fishing.collect_fish = "Collect fish"
  2117. fishing.close_menu = "Close Menu"
  2118. fishing.untie_fish_cage = "Untie Fish Cage"
  2119. fishing.tie_down_fish_cage = "Tie down Fish Cage"
  2120. fishing.discard_fish = "Discard %s"
  2121. fishing.untie_fish_container = "Untie Fish Container"
  2122. fishing.tie_down_fish_container = "Tie down Fish Container"
  2123. fishing.empty_container_text = "Empty container"
  2124. fishing.retrieve_fish_cage = "Retrieve Fish Cage"
  2125. fishing.fishing_rod_phys_tip = "You can press R(Reload) to adjust the throwing strength of the fishing rod."
  2126. fishing.throw_str = "Throw Strength"
  2127. fishing.throw_desc = "Pick how hard to throw your fishing pole. Higher number means your hook will be thrown farther away."
  2128. fishing.fishing_hud = "Fishing"
  2129.  
  2130. -- Hints plugin
  2131. hints.gui.locked = "Locked"
  2132. hints.gui.openDoor = "Open Door"
  2133. hints.gui.talkTo = "Talk to %s"
  2134. hints.gui.openMonoTablet = "Open Mono-Tablet"
  2135. hints.gui.lmb = "LMB" -- Left mouse button
  2136. hints.gui.use = "Use"
  2137. hints.gui.pickUp = "(Hold) Pick Up"
  2138. hints.gui.pickUpX = "(Hold) Pick up %s"
  2139. hints.gui.interactWithX = "(Hold) Interact with %s"
  2140.  
  2141. -- HUD plugin
  2142. hud.notif.couldntFindTarget = "Couldn't find a target."
  2143.  
  2144. hud.funcs.trade = "Trade"
  2145. hud.funcs.trade.notif = "You requested to trade with %s"
  2146. hud.funcs.profile = "Open profile"
  2147. hud.funcs.profile.page = " Profile page"
  2148. hud.funcs.oneEnterVehicle = "Get in"
  2149. hud.funcs.exitVehicle = "Get out"
  2150. hud.funcs.toggleTowBar = "Toggle tow bar"
  2151. hud.funcs.toggleTowBar = "Toggle tow bar"
  2152. hud.funcs.vehicleShowID = "Show your ID"
  2153. hud.funcs.vehicleShowRegistration = "Show Vehicle Papers"
  2154. hud.funcs.openTrunkPolice = "Open Trunk"
  2155. hud.funcs.changeFoodTruckName = "Change Foodtruck name"
  2156. hud.funcs.openFoodTruckMenu = "Open Foodtruck menu"
  2157. hud.funcs.forceIntoVehicle = "Force into Vehicle"
  2158. hud.funcs.searchPlayer = "Search Player"
  2159. hud.funcs.dragPlayer = "Drag Player"
  2160. hud.funcs.stopDragPlayer = "Stop Dragging Player"
  2161. hud.funcs.unZipTiePlayer = "Remove Zipties"
  2162. hud.funcs.confiscateComms = "Confiscate Comms"
  2163. hud.funcs.pickUp = "Pick Up"
  2164. hud.funcs.openContainer = "Open Container"
  2165. hud.funcs.pickuphousealarm = "Pickup House Alarm"
  2166. hud.funcs.toggleCrusher = "Toggle"
  2167. hud.funcs.enableRefill = "Enable Refill"
  2168. hud.funcs.disableRefill = "Disable Refill"
  2169. hud.funcs.doRefill = "Refill"
  2170. hud.funcs.doRefill.prompt = "Input the amount you would like to refill"
  2171. hud.funcs.doRefill.prompt.title = "Refill"
  2172. hud.funcs.EMScheckPulse = "Check Pulse"
  2173. hud.funcs.EMSperformCPR = "Perform CPR"
  2174. hud.funcs.EMSStretcherFlip = "Flip Stretcher"
  2175. hud.funcs.EMSStretcherStrap = "Put The Patient On"
  2176. hud.funcs.EMSStretcherStrapoff = "Let The Patient Go"
  2177. hud.funcs.EMSStretcherStrapoff = "Lead the stretcher"
  2178. hud.funcs.EMSStretcherStrapoff.crash = "Feature disabled due to crashes. Sorry"
  2179. hud.funcs.EMSStretcherVehicleIn = "Put Into Ambulance"
  2180. hud.funcs.EMSStretcherVehicleOut1 = "Pull out a stretcher (1)"
  2181. hud.funcs.EMSStretcherVehicleOut2 = "Pull out a stretcher (2)"
  2182. hud.funcs.PDStretcherVehicleOut1 = "Pull out a stretcher"
  2183. hud.funcs.EMSAmbuOpenDoor = "Open/Close back doors"
  2184. hud.funcs.handshakePlayer = "Introduce yourself"
  2185. hud.funcs.vehicleUnlockInside = "Toggle locks"
  2186. hud.funcs.FIREPumpHose = "Deploy intake hose"
  2187. hud.funcs.FIREHose1 = "Deploy water hose (1)"
  2188. hud.funcs.FIREHose2 = "Deploy water hose (2)"
  2189. hud.funcs.FIREPressure2 = "Water Pressure (HIGH)"
  2190. hud.funcs.FIREPressure1 = "Water Pressure (LOW)"
  2191. hud.funcs.FIREPressure0 = "Water Pressure (OFF)"
  2192. hud.funcs.FIREFoam = "Refill extinguisher"
  2193. hud.funcs.FIREEquip = "Open Equipment Locker"
  2194. hud.funcs.twoForceVehicle = "Force out"
  2195. hud.funcs.ZClampOn = "Put on a wheel clamp"
  2196. hud.funcs.ZClampOff = "Take off the wheel clamp"
  2197.  
  2198. hud.hints.selectOption = "Einstellung auswählen"
  2199. hud.hints.selectOption.lmb = "LMT" -- Left mouse button
  2200.  
  2201. -- Impound plugin
  2202. impound.notif.cantImpound = "Du kannst dieses Fahrzeug nicht abschleppen."
  2203. impound.notif.impoundedOther = "Du hast %s's %s abgeschleppt."
  2204. impound.notif.yoursImpounded = "Dein %s wurde abgeschleppt."
  2205. impound.notif.bonus = "Du hast einen Bonus von %s für das abschleppen eines Fahrzeuges erhalten, das mit einer Radklemme versehen war!"
  2206. impound.notif.cantAfford = "Du kannst dir das nicht leisten."
  2207. impound.notif.paidImpoundFees = "Du hast %s für die Gebühren der Beschlagnahumg gezahlt."
  2208. impound.notif.partOfCorrCat = "Nicht Teil der richtigen Kategorie"
  2209. impound.notif.vehicleImpounded = "Dein Fahrzeug wurde beschlagnahmt."
  2210. impound.notif.tooFar = "Zu weit entfernt"
  2211.  
  2212. impound.gui.close = "Schließen ✕"
  2213. impound.gui.impound = "Beschlagnahmen"
  2214. impound.gui.noneNearby = "Es sind keine Fahrzeuge in der Nähe"
  2215. impound.gui.youCanNearby = "Du kannst Fahrzeuge, welche sich in der Nähe befinden beschlagnahmen."
  2216. impound.gui.retrievals = "Wiedergewinnung"
  2217. impound.gui.retrieve = "Abrufen"
  2218. impound.gui.noneImpounded = "Du hast keine beschlagnahmten Fahrzeuge"
  2219. impound.gui.youCanRetrieve = "Du kannst ein Fahrzeug für %s abrufen"
  2220.  
  2221. -- Licenses plugin
  2222. licenses.notif.justUpdated = "Deine Anfrage wurde gerade erneuert!"
  2223. licenses.notif.answerAll = "Du musst ale Fragen beantworten!"
  2224. licenses.notif.alreadyHave = "Du hast diese Lizenz bereits."
  2225. licenses.notif.notSufficientFunds = "Du hast nicht genügend Geld."
  2226. licenses.notif.youFirstNeed = "Du brauchst zuerst eine ${licenseName}."
  2227. licenses.notif.renewedLicense = "Du hast deine ${licenseName} erneuert."
  2228. licenses.notif.requestedLicense = "Du hast eine ${licenseName} angefordert."
  2229. licenses.notif.licenseDeclined = "Dein ${licenseName} wurde abgelehnt." --?
  2230. licenses.notif.licenseGranted = "Dir wurde eine ${licenseName} ausgestellt."
  2231. licenses.notif.xGrantedY = "Du hast ${playerName} eine ${licenseName} ausgestellt"
  2232. licenses.notif.yourLicenseRevoked = "Dein ${licenseName} wurde dir entzogen ${by}."
  2233. licenses.notif.youRevokedLicense = "Du nahmst ${licenseName} von ${from}."
  2234. licenses.notif.somethingWentWrong = "Etwas lief schief."
  2235. licenses.notif.passedTest = "Dir wurde ${license} überreicht, Glückwunsch, du hast den Test bestanden!"
  2236. licenses.notif.tooManyQuestions = "Tut mir leid, du hast zu viele Fragen falsch beantwortet."
  2237. licenses.notif.tooFarAway = "Zu weit entfernt"
  2238. licenses.notif.passedID = "Du gabst deine ID durch das Fahrzeugfenster an %s"
  2239. licenses.notif.passedIDToYou = "%s gab die ID an dich weiter"
  2240. licenses.notif.lostDueToDeath = "Du verlorst ${name} wegen des Todes."
  2241. licenses.notif.showedDrivingLicense = "Du zeigtest %s deinen Führerschein."
  2242. licenses.notif.xShowedLicense = "%s zeigte dir %s Führerschein." -- %s showed you his/her driving license
  2243. licenses.notif.xShowedLicense.his = "seinen"
  2244. licenses.notif.xShowedLicense.her = "ihren"
  2245. licenses.notif.noLicenseToShow = "Du hast keine Lizenz, die du zeigen könntest!"
  2246. licenses.notif.xNoLicense = "%s hat keine Lizenz, die er vorzeigen könnte."
  2247. licenses.notif.vehicleNotRegistered = "Dieses Fahrzeug ist nicht registriert."
  2248. licenses.notif.noRegistrationPapers = "Du hast keine Fahrzeugpapiere für dieses Fahrzeug."
  2249. licenses.notif.playerNoRegistrationPapers = "Diese Person hat keine Fahrzeugpapiere für dieses Fahrzeug."
  2250.  
  2251. licenses.log.revoked = "%s widerrufen %s's %s"
  2252.  
  2253. licenses.type.weapon = "Standard-Waffenlizenz"
  2254. licenses.type.driving = "Standard-Führerschein"
  2255. licenses.type.driving.npc = "Ich möchte eine Standard-Fahrprüfung ablegen."
  2256. licenses.type.jobdriving = "Beruflicher Führerschein"
  2257. licenses.type.jobdriving.npc = "Ich möchte eine Berufsfahrprüfung ablegen."
  2258.  
  2259. licenses.test.driving.q1 = "Du solltest die asphaltierte Straße verlassen, um ein Fahrzeug zu überholen..."
  2260. licenses.test.driving.q1.a = "...wenn der Seitenstreifen breit genug ist, um dein Fahrzeug aufzunehmen."
  2261. licenses.test.driving.q1.b = "...wenn das Fahrzeug vor dir nach links abbiegt."
  2262. licenses.test.driving.q1.c = "...unter keinen Umständen."
  2263. licenses.test.driving.q2 = "Es ist nicht illegal sein Fahrzeug zu parken, auf..."
  2264. licenses.test.driving.q2.a = "...auf einem nicht markierten Zebrastreifen."
  2265. licenses.test.driving.q2.b = "...auf einem ausgewiesenen Parkplatz."
  2266. licenses.test.driving.q2.c = "...auf einem Fahrradweg"
  2267. licenses.test.driving.q3 = "Ein anderer Fahrer versucht dich zu überholen, du solltest..."
  2268. licenses.test.driving.q3.a = "...fährst du nach rechts und erlaubst dem Fahrzeug zu überholen."
  2269. licenses.test.driving.q3.b = "...beschleunigst du, damit das Überholen nicht möglich ist."
  2270. licenses.test.driving.q3.c = "...fährst du nach links, damit das Überholen verhindert wird."
  2271. licenses.test.driving.q4 = "Wenn jemand aggresiv fährt, solltest du..."
  2272. licenses.test.driving.q4.a = "...versuchst du aus dem Weg zu fahren."
  2273. licenses.test.driving.q4.b = "...verfolgst du sie, während du die Polizei rufst."
  2274. licenses.test.driving.q4.c = "...beschleunige, während du überholt wirst."
  2275. licenses.test.driving.q4.d = "...blockie sie, damit sie nicht vorbeifahren können."
  2276. licenses.test.driving.q5 = "Du musst einem Einsatzfahrzeug ausweichen..."
  2277. licenses.test.driving.q5.a = "...unter keinem Umständen"
  2278. licenses.test.driving.q5.b = "...wenn du Blaulicht/Rotlicht siehst oder Sirenen hörst."
  2279. licenses.test.driving.q5.c = "...nurr, wenn andere Fahrzeuge auch ausweichen."
  2280. licenses.test.driving.q6 = "Du musst an einem Stoppschild stoppen..."
  2281. licenses.test.driving.q6.a = "...wenn dir ein anderes Auto entgegen kommt."
  2282. licenses.test.driving.q6.b = "...unter allen Umständen."
  2283. licenses.test.driving.q6.c = "...wenn du ein erfahrener Fahrer bist."
  2284. licenses.test.driving.q7 = "Eine sichere Geschwindigkeit, um dein Auto zu fahren..."
  2285. licenses.test.driving.q7.a = "...ist kleiner als das angegebene Tempolimit."
  2286. licenses.test.driving.q7.b = "...hängt vom Wetter und den Straßenverhältnissen ab."
  2287. licenses.test.driving.q7.c = "...hängt von der Erfahrung / Fähigkeit des Fahrers ab."
  2288.  
  2289. licenses.test.jobdriving.q1 = "Wenn du abbiegen willst, solltest du den Blinker aktivieren..."
  2290. licenses.test.jobdriving.q1.a = "...nur, wenn dir andere Fahrzeuge folgen."
  2291. licenses.test.jobdriving.q1.b = "...3 bis 4 Sekunden bis du die Kreuzug erreichst."
  2292. licenses.test.jobdriving.q1.c = "...nur, wenn sich vor dir Fahrzeuge befinden."
  2293. licenses.test.jobdriving.q2 = "Wenn ein entgegenkommender Fahrer auf deine Fahrspur wechselt solltest du..."
  2294. licenses.test.jobdriving.q2.a = "...Geh aus dem Weg des Fahrers und bremse."
  2295. licenses.test.jobdriving.q2.b = "...erhöhe deine Geschwindigkeit."
  2296. licenses.test.jobdriving.q3 = "Unter normalen Bedingungen ist ein sicherer Abstand zwischen deinem Fahrzeug und dem vorausfahrenden Fahrzeug..."
  2297. licenses.test.jobdriving.q3.a = "...hängt von deinen Reaktionen ab."
  2298. licenses.test.jobdriving.q3.b = "...liegt drei Sekunden hinter dem Fahrzeug, dem du folgst."
  2299. licenses.test.jobdriving.q3.c = "...ist eine Fahrzeuglänge."
  2300. licenses.test.jobdriving.q4 = "Du musst an einem Stoppschild halten..."
  2301. licenses.test.jobdriving.q4.a = "...wenn dir ein anderes Auto entgegen kommt."
  2302. licenses.test.jobdriving.q4.b = "...unter allen Umständen."
  2303. licenses.test.jobdriving.q4.c = "..wenn du ein unerfahren Fahrer bist."
  2304. licenses.test.jobdriving.q5 = "Wenn ein Fußgänger einen Zebrastreifen überquert, solltest du..."
  2305. licenses.test.jobdriving.q5.a = "...Mache mir Hupen auf dich aufmerksam."
  2306. licenses.test.jobdriving.q5.b = "...Fahr weiter, wenn sie deinem Fahrzeug nicht im Weg stehen."
  2307. licenses.test.jobdriving.q5.c = "...Fahre weiter, wenn du es auf die andere Seite geschaft hast." --?
  2308. licenses.test.jobdriving.q6 = "Wenn du in einen Unfall verwickelt bist, musst du..."
  2309. licenses.test.jobdriving.q6.a = "...Rufe 911 und verlasse diese Umgebung."
  2310. licenses.test.jobdriving.q6.b = "...Fahre weiter und reiche später einen Unfallbericht ein."
  2311. licenses.test.jobdriving.q6.c = "...Verlasse dein Fahrzeug und rufe dann 911, wenn benötigt."
  2312. licenses.test.jobdriving.q6.d = "...überprüfe dein Fahrzeug auf Schäden, fahre dann weiter." --?
  2313.  
  2314. licenses.npc.name = "Sicherheitsbüro"
  2315. licenses.npc.subtitle = "Lizenzkaufmann"
  2316.  
  2317. licenses.misc.never = "Nie"
  2318. licenses.misc.expired = "Abgelaufen"
  2319. licenses.misc.daysHours = "%d Tage %H Stunden"
  2320.  
  2321. licenses.gui.drivingTest = "Testfahrt"
  2322. licenses.gui.confirmAnswers = "Antworten bestätigen"
  2323. licenses.gui.personalVehicle = "PERSÖNLICHES FAHRZEUG"
  2324. licenses.gui.addressVaries = "ADDRESSE VARIIERT - DMV-DATENBANK PRÜFEN"
  2325. licenses.gui.valid = "GÜLTIG"
  2326. licenses.gui.renewMyLicense = "I würde gerne meine ${licenseName} erneuern (${price})"
  2327.  
  2328. -- Lockpick plugin
  2329. lockpick.gui.toCancel = "Drücke ESC um abzubrechen"
  2330. lockpick.gui.findSweetSpot = "Finde den Sweet Spot!"
  2331. lockpick.gui.mouseToRotate = "Maus, um den Stift zu drehen"
  2332. lockpick.gui.keysToRotate = "Bewegungstasten zum Drehen des Schlosses"
  2333.  
  2334. lockpick.levels.copper = "Kupfer (Leicht)"
  2335. lockpick.levels.silver = "Silber (Mittel)"
  2336. lockpick.levels.gold = "Gold (Schwer)"
  2337.  
  2338. lockpick.notif.newDoorLocks = "Die neuen Türschlösser wurden installiert!"
  2339.  
  2340. lockpick.log.finishedLockpicking = "%s brach %s auf. Eigentum von %s"
  2341. lockpick.log.finishedLockpicking.nobody = "niemand"
  2342. lockpick.log.finishedLockpickingDoor = "%s brach eine Tür von %s"
  2343.  
  2344. -- Marketplace plugin
  2345. market.gui.buy = "Kaufen"
  2346. market.gui.sell = "Verkaufen"
  2347. market.gui.trade = "Handeln"
  2348. market.gui.quantity = "Menge"
  2349. market.gui.total = "Gesamt"
  2350. market.gui.price_per_item = "Preis pro Gegenstand"
  2351. market.gui.item = "Gegenstand"
  2352. market.gui.price = "Preis"
  2353. market.gui.supply = "Liefern"
  2354. market.gui.collect_order = "Bestellung aufnehmen"
  2355. market.gui.cancel_order = "Bestellung stornieren"
  2356. market.gui.empty = "Leer"
  2357. market.gui.x_available = "%s verfügbar"
  2358. market.gui.buy_item = "Kaufe Gegenstand"
  2359. market.gui.wallet = "Brieftasche"
  2360. market.gui.choose_item_to_sell = "Klicke auf einen Artikel, um ihn zu verkaufen"
  2361. market.gui.choose_item_to_sell = "Klicke auf einen Artikel, um ihn zu verkaufen"
  2362. market.gui.error_item_sale = "Beim Verkauf dieses Artikels ist ein Fehler aufgetreten."
  2363. market.gui.time = "Zeit"
  2364. market.gui.type = "Art"
  2365. market.gui.history = "Verlauf"
  2366. market.gui.tutorial = "Tutorial"
  2367. market.gui.pricePerItem = "Preis pro Gegenstand"
  2368.  
  2369. market.notif.unavailable = "Der Mono-Markt ist derzeit nicht verfügbar."
  2370. market.notif.maxItemLimit = "Bestellung fehlgeschlagen! Du hast das Artikellimit erreicht."
  2371. market.notif.invalidQuantity = "Ungültige Bestellmenge"
  2372. market.notif.cantAfford = "Du kannst dir diese Bestellung nicht leisten."
  2373. market.notif.notEnoughItems = "Du hast nicht genug von diesem Gegenstand, um es verkaufen zu können."
  2374. market.notif.succCancelled = "Bestellung erfolgreich storniert"
  2375. market.notif.failedCancel = "Bestellung konnte nicht storniert werden (#%s)"
  2376. market.notif.waitBeforeRequest = "Du musst wraten, bevor du eine weitere Anfrage stellen kannst"
  2377. market.notif.failedCollect = "Bestellung konnte nicht aufgenommen werden." --?
  2378. market.notif.unableCreateOrder = "Es ist nicht möglich eine Bestellung aufzugeben. Fehlerhafte GegenstandsID"
  2379. market.notif.cannotAffordOrder = "Du kannst dir diese Bestellung icht leisten."
  2380. market.notif.tooLowDurability = "Dieser Gegenstand hat eine zu geringe Haltbarkeit, um verkauft zu werden."
  2381. market.notif.notEnoughToSell = "Du hast nicht genug von diesem Gegenstand, um ihn zu verkaufen."
  2382. market.notif.youPlacedOrder = "Du nahmst für diesen Gegenstand eine Bestellung auf."
  2383. market.notif.orderRejected = "Bestellung vom Server abgelehnt: %s"
  2384. market.notif.orderRejectedNoReason = "Marktplatz-Bestellung vom Server abgelehnt."
  2385.  
  2386. --[[
  2387. SWEPS
  2388. --]]
  2389.  
  2390. -- Hands
  2391. sweps.handcuffsinhand.actions.beginCuffing = "%s begann Handschellen um %s's Handgelenke zu nehmen."
  2392. sweps.handcuffsinhand.actions.placedCuffs = "%s nahm Handschellen um %s's Handgelenke."
  2393. sweps.handcuffsinhand.actions.handCuffing = "FESSELN VON \n%s"
  2394. sweps.handcuffsinhand.actions.removeCuffs = "%s nahm die Handschellen von %s's Handgelenke."
  2395.  
  2396. sweps.handcuffsinhand.gui.checkOwner = "Drücke R, um Besitzer zu werden"
  2397. sweps.handcuffsinhand.gui.noOwner = "Kein Besitzer"
  2398.  
  2399. sweps.handcuffsinhand.log.cuffed = "%s fesselte %s"
  2400. sweps.handcuffsinhand.log.unCuffed = "%s entfesselte %s"
  2401.  
  2402.  
  2403. -- Bong
  2404. sweps.sentBong.gui.weed = "Weed"
  2405. sweps.sentBong.gui.quality = "Qualität"
  2406.  
  2407. -- Zipties
  2408. sweps.zipties.actions.beginZip = "%s begann %s zu fesseln."
  2409. sweps.zipties.actions.finishZip = "%s fesselte %s."
  2410. sweps.zipties.actions.zipTie = "FÄSSELN VON \n%s"
  2411.  
  2412. sweps.zipties.log.ziptied = " gefesselt "
  2413.  
  2414. -- Defib
  2415. sweps.defib.actions.stabalizing = "STABILISIERUNG\n${name}"
  2416.  
  2417. sweps.defib.gui.dead = "Der Patient scheint verstorben zu sein."
  2418. sweps.defib.gui.stable = "Er ist bereits stabilisiert!"
  2419. sweps.defib.gui.critical = "Der Patient ist in keinem kritischen Zustand und kann deswegen nicht stabilisiert weren!"
  2420. sweps.defib.gui.downtime = "Du bist schnellg genug angekommen! Der Patient hat deshalb noch keine allzu großen Verletzungen erlitten"
  2421. sweps.defib.gui.hospitalwarning = "Es scheint als wäre er stabilisiert worden, nimm ihn mit ins Krankenhaus!"
  2422.  
  2423. sweps.defib.logger.revived = " wiederbelebt: "
  2424.  
  2425. -- Axe
  2426. sweps.fireaxe.gui.assistance = "Dein Assistent wird hierbei nicht benötigt!"
  2427.  
  2428. -- Keys
  2429. sweps.keys.gui.state = "Möchtest du ${state} Zugang zu Autos/Türen geben?"
  2430. sweps.keys.gui.stateRevoke = "widerrufen"
  2431. sweps.keys.gui.stateGrant = "gewähren"
  2432. sweps.keys.gui.access = "Zugang"
  2433. sweps.keys.gui.thisPerson = "diese Person"
  2434. sweps.keys.gui.yes = "Ja"
  2435. sweps.keys.gui.no = "Nein"
  2436. sweps.keys.gui.revokeOwner = "Du entferntest ein Grundstück von: "
  2437. sweps.keys.gui.grantOwner = "Du wiesest ein Grundstück zu für:"
  2438.  
  2439. -- Medkit
  2440. sweps.medkit.gui.healing = "HEILUNG"
  2441. sweps.medkit.gui.sterilizing = "STERILISIEREN\nWUNDEN"
  2442. sweps.medkit.gui.cauterizing = "CAUTERIZING\nWUNDEN"
  2443. sweps.medkit.gui.applyingBandages = "BENUTZEN\nBANDAGEN"
  2444. sweps.medkit.gui.healingMe = "HEILEN\nSICH SELBST"
  2445.  
  2446. -- weapon_mono_vape
  2447. -- @TODO configure the flavor juices in the weapon_mono_vape.lua directly in the JuicyVapeJuices table
  2448. sweps.monovape.gui.loadedFlavorJuice = "Lud %s flavor Aromasaft"
  2449.  
  2450. -- weapon_nightstick
  2451. -- @TODO line 91 translated but not reported in this file
  2452.  
  2453. -- weapon_policetape
  2454. sweps.policetape.gui.distance = "Entfernung"
  2455. sweps.policetape.gui.rightClickCancel = "Rechtsklick um abzubrechen."
  2456. sweps.policetape.gui.ropeCantBeThatLong = "Das Absperrband kann nicht so lang sein!"
  2457. sweps.policetape.gui.pickedUpSegmentTape = "Du hast diesen Teil des Absperrbandes aufgehoben."
  2458. sweps.policetape.gui.clearedAllTapes = "Du hast alle Absperrbänder entfernt."
  2459. sweps.policetape.gui.maxTapes = "Du hast das Limit von Absperrbändern erreicht!" -- @TODO money symbol line 139
  2460. sweps.policetape.log.hasPlacedRope = "%s platzierte ein Absperrband bei %s"
  2461. sweps.policetape.log.removedPoliceTape = "%s entfernte sein Absperrband in %s"
  2462. sweps.policetape.log.clearedAllTapes = "%s löschte alle seine Polizei Absperrbänder."
  2463.  
  2464. -- weapon_radargun
  2465. -- @TODO maybe we should add the speed unit in this file
  2466.  
  2467. -- weapon_ticket
  2468. sweps.weaponticket.gui.cantGiveTicketToPlayer = "Du kannst dieser Person kein weiteres Ticket für %s Sekunden ausstellen."
  2469. sweps.weaponticket.gui.cantGiveTicket = "Du kannst kein weiteres Ticket für %s Sekunden ausstellen."
  2470. sweps.weaponticket.gui.officierIssuedIt = "Beamter, welcher das Ticket ausstellte"
  2471. sweps.weaponticket.gui.timeSinceIssued = "Zeit seit der Ausstellung"
  2472. sweps.weaponticket.gui.lawyer = "Anwalt"
  2473. sweps.weaponticket.gui.selectTicket = "Wähle ein Ticket"
  2474. sweps.weaponticket.gui.police = "Polizei"
  2475. sweps.weaponticket.gui.minutesAgo = "%s Minuten sind vergangen"
  2476. sweps.weaponticket.gui.resolve = "Aufheben"
  2477. sweps.weaponticket.gui.ticket = "Ticket"
  2478. sweps.weaponticket.gui.payTicket = "Zahle das Ticket ($%s)"
  2479. sweps.weaponticket.gui.pay = "Bezahlen"
  2480. sweps.weaponticket.gui.deny = "Verweigern"
  2481. sweps.weaponticket.gui.appealTicketIfUnfair = "Erhebe Einspruch, wenn du diese Meinung nicht teilst."
  2482. sweps.weaponticket.gui.smallViolation = "Erster / Kleiner Verstoß"
  2483. sweps.weaponticket.gui.repeated = "Wiederholt / Moderiert"
  2484. sweps.weaponticket.gui.excessive = "Übermäßig / schwerwiegend"
  2485. sweps.weaponticket.gui.appeal = "Beschwerde"
  2486. sweps.weaponticket.gui.amountToPay = "Zu zahlender Betrag" -- @TODO money symbol line 246
  2487. sweps.weaponticket.gui.ticketsFromHim = "Seine Tickets"
  2488. sweps.weaponticket.gui.insertText = "<Gebe einen Text ein>"
  2489. sweps.weaponticket.gui.beMoreDescriptive = "Deine Begründung muss genauer sein."
  2490. sweps.weaponticket.gui.insertNumber = "Du musst eine Nummer eingeben!"
  2491. sweps.weaponticket.gui.ok = "Ok"
  2492. sweps.weaponticket.gui.cantFineMore = "Du kannst nicht mehr als $4,500 finden!" -- @TODO maybe adding this to a configuration or something like that line 313 and 227
  2493. sweps.weaponticket.gui.cantFineMoreThan = "Du kannst nicht mehr als %s finden!"
  2494. sweps.weaponticket.gui.areYouSure = "Bist du dir sicher, dass du dieses Ticket erstellen möchtest?"
  2495. sweps.weaponticket.gui.cancel = "Ablehnen"
  2496. sweps.weaponticket.gui.accept = "Annehmen"
  2497. sweps.weaponticket.gui.id = "ID"
  2498. sweps.weaponticket.gui.kind = "Kind"
  2499.  
  2500. -- weapon_trowel
  2501. sweps.weapontrowel.gui.cantPlantHere = "Du kannst hierhin nichts platzieren."
  2502. sweps.weapontrowel.gui.tooClose = "Du bist zu nah an etwas anderem dran!"
  2503.  
  2504.  
  2505. --[[
  2506. ENTITIES
  2507. --]]
  2508.  
  2509. -- sent_workbench
  2510. entities.workbench.printName = "Werkbank"
  2511.  
  2512. -- sent_woodworkbench
  2513. entities.woodworkbench.printName = "Holzbearbeitungstabelle"
  2514.  
  2515. -- sent_textscreen
  2516. entities.textscreen.printName = "Textbildschirm"
  2517. entities.textscreen.editTextTitle = "Bearbeite Textbildschrim"
  2518. entities.textscreen.editColors = "Farbe bearbeiten"
  2519. entities.textscreen.abort = "Abbrechen"
  2520. entities.textscreen.setColor = "Farbe anwenden"
  2521. entities.textscreen.colorChanged = "Die Farbe des Textbildschrims wurde geändert."
  2522. entities.textscreen.edit = "Bearbeiten"
  2523. entities.textscreen.textLengthError = "Der Text ist zu kurz/lange (<2 >18)"
  2524. entities.textscreen.pressEToChange = "Drücke E, um dies zu wechseln"
  2525.  
  2526. -- sent_stretcher
  2527. entities.stretcher.printName = "Trage"
  2528. entities.stretcher.patientStabilise = "Der Patient muss zuerst stabilisiert werden!"
  2529. entities.stretcher.ledByAnyone = "Die Trage darf von niemandem geführt getragen werden!" --?
  2530. entities.stretcher.strappedOntop = "%s schnallte %s's Körper auf eine Trage"
  2531. entities.stretcher.unstrapped = "%s schnallte %s's Körper von der Trage ab."
  2532. entities.stretcher.sameVehicle = "Die Trage muss in das Fahrzeug, aus dem es genommen wurde!"
  2533. entities.stretcher.backDoorClosed = "Die Hintertüren sind geschlossen! Öffne sie zuerst."
  2534. entities.stretcher.notEMSPolice = "Sie können das nicht tun, wenn Sie kein EMS/Polizist sind."
  2535. entities.stretcher.notYourVehicle = "Es ist nicht dein Fahrzeug!"
  2536. entities.stretcher.notYourAmbulance = "Es ist nicht dein Krankenwagen!"
  2537. entities.stretcher.blockingDeploy = "Etwas blockiert die Einsatzposition!"
  2538.  
  2539. -- sent_road_sign
  2540. entities.roadsign.printName = "Polizei-Straßenschild"
  2541. entities.roadsign.policeDepartment = "Polizeistation"
  2542. entities.roadsign.mustBePolice = "Du musst Beamter sein, damit du das Schild bearbeiten kannst"
  2543. entities.roadsign.pickingUp = "AUFHEBEN"
  2544. entities.roadsign.policeSign = "Polizeischild"
  2545. entities.roadsign.update = "Aktualisieren"
  2546.  
  2547. -- sent_road_sign_small
  2548. entities.roadsignsmall.printName = "Polizeischild - Klein"
  2549. entities.roadsignsmall.roadClosed = "Straße geschlossen"
  2550. entities.roadsignsmall.memberPolice = "Du musst Beamter sein, damit du das Schild bearbeiten kannst"
  2551. entities.roadsignsmall.policeSign = "Polizeischild" --?
  2552. entities.roadsignsmall.update = "Aktualisieren"
  2553.  
  2554. -- sent_residential_extension_outlet
  2555. entities.extensionoutlet.printName = "Steckdose des Hauses" --?
  2556. entities.extensionoutlet.errorAttempt = "Versuch SetBreaker() auf sent_residential_extension_outlet" --?
  2557.  
  2558. -- sent_repair_bench
  2559. entities.repairbench.printName = "Bank reparieren"
  2560.  
  2561. -- sent_property_bin
  2562. entities.propertybin.printName = "Eimer vom Eigentum"
  2563. entities.propertybin.garbageCan = "Mülleimer"
  2564. entities.propertybin.percentFull = "% voll"
  2565.  
  2566. -- sent_power_source
  2567. entities.powersource.printName = "Eigentum-Energiequelle"
  2568.  
  2569. -- sent_power_outlet
  2570. entities.poweroutlet.printName = "Steckdose"
  2571.  
  2572. -- sent_power_converter
  2573. entities.powerconverter.printName = "Stromwandler (Beidseitig)"
  2574.  
  2575. -- sent_pot
  2576. entities.pot.printName = "Topf" --?
  2577. entities.pot.weedBag = "Tasche mit Weed"
  2578. entities.pot.useOtherPots = "Du kannst die Blumentöpfe anderer nicht verwenden."
  2579. entities.pot.dehydrated = "Dehydriert"
  2580. entities.pot.thirsty = "Durstig"
  2581. entities.pot.neutral = "Neutral"
  2582. entities.pot.healthy = "Gesund"
  2583. entities.pot.insertSoil = "Erde einfügen"
  2584. entities.pot.insertSeed = "Samen einfügen"
  2585. entities.pot.harvest = "Ernte"
  2586. entities.pot.properSeeds = "Du hast nicht die richtigen Samen."
  2587. entities.pot.gardeningSoil = "Du hast keine Blumenerde, die genutzt werden kann."
  2588. entities.pot.plantedSeed = "Du hast einen Samen in den Topf geplanzt."
  2589. entities.pot.filledPot = "Du hast den Blumentopf mit Blumenerde gefüllt."
  2590. entities.pot.gardeningPot = "Blumentopf"
  2591. entities.pot.alreadySoil = "Der Topf enthält bereits Erde"
  2592. entities.pot.soilAvailable = "Du hast %s Erde, die genutzt werden kann"
  2593. entities.pot.seedsAvailable = "Du hast %s Samen%s, die genutzt werden können"
  2594. entities.pot.plant = "Pflanze"
  2595. entities.pot.properSeeds = "Du hast nicht die richtigen Samen."
  2596. entities.pot.addSoil = "Füge Erde hinzu"
  2597.  
  2598. -- sent_plug
  2599. entities.plug.printName = "Stecker"
  2600.  
  2601. -- sent_money
  2602. entities.money.printName = "Geld"
  2603. entities.money.youGrabbed = "Du nahmst $"
  2604. entities.money.pickedUp = " augheben "
  2605.  
  2606. -- sent_metalworkbench
  2607. entities.metalworkbench.printName = "Metallbearbeitungstabelle"
  2608.  
  2609. -- sent_metalworkbench
  2610. entities.metalworkbench.printName = "Metallbearbeitungstabelle"
  2611.  
  2612. -- sent_lsd
  2613. entities.lsd.printName = "LSD"
  2614.  
  2615. -- sent_lsd_pyro
  2616. entities.lsdpyro.printName = "Bunsenbrenner"
  2617.  
  2618. -- sent_lsd_powder
  2619. entities.lsdpowder.printName = "SD-Pulvermaterial"
  2620.  
  2621. -- sent_lsd_paper
  2622. entities.lsdpaper.printName = "Abenteuer-Papier"
  2623.  
  2624. -- sent_lsd_gas
  2625. entities.lsdgas.printName = "Gasflasche"
  2626.  
  2627. -- sent_lsd_freezer
  2628. entities.lsdfreezer.printName = "Kühlschrank"
  2629. entities.lsdfreezer.holdPickUp = "(Halte) Aufheben "
  2630. entities.lsdfreezer.insertFlask = "Setze einen Glaskolben ein"
  2631. entities.lsdfreezer.takeOut = "Ich friere! Hol mich aus dem Kühlschrank"
  2632.  
  2633. -- sent_lsd_flask
  2634. entities.lsdflask.printName = "Glaskolben"
  2635. entities.lsdflask.stage1 = "Pulver einlegen"
  2636. entities.lsdflask.stage2 = "Ich brauche Wärme"
  2637. entities.lsdflask.stage3 = "Warte, bis der Brenner fertig ist"
  2638. entities.lsdflask.stage4 = "Flüssigkeit einfüllen"
  2639. entities.lsdflask.stage5 = "Schüttle mich sanft"
  2640. entities.lsdflask.stage6 = "Kühl mich"
  2641. entities.lsdflask.stage7 = "Leg mich auf ein Stück Papier"
  2642.  
  2643. -- sent_lsd_flank_support
  2644. entities.lsdflanksupport.printName = "Flaschenhalter"
  2645. entities.lsdflanksupport.fireStarted = "[Feuer Quest] LSD Fire hat begonnen!"
  2646. entities.lsdflanksupport.insertBurner = "Setze einen Brenner ein"
  2647. entities.lsdflanksupport.insertGas = "Setze einen Benzinkanister ein"
  2648. entities.lsdflanksupport.insertFlask = "Setze einen Glaskolben ein"
  2649. entities.lsdflanksupport.progress = "Fortschritt: %"
  2650.  
  2651. -- sent_lsd_bottle
  2652. entities.lsdbottle.printName = "LSD Flaschenmaterial"
  2653.  
  2654. -- sent_infinite_power_source
  2655. entities.infinitepower.printName = "Unendliche Energiequelle"
  2656. entities.infinitepower.powerSource = "Energiequelle"
  2657. entities.infinitepower.infinite = "Unendlich"
  2658.  
  2659. -- sent_fire_spark
  2660. entities.firespark.printName = "Droge"
  2661.  
  2662. -- sent_fire_source
  2663. entities.firesource.printName = "Feuer"
  2664.  
  2665. -- sent_factory_furnace
  2666. entities.factoryfurnace.printName = "Brennofen"
  2667. entities.factoryfurnace.busy = "Die Fabrik arbeitet."
  2668. entities.factoryfurnace.takeAllComp = "Du müsst alle Komponenten herausnehmen, bevor du dies aufnehmen kannst."
  2669. entities.factoryfurnace.readyForUse = "Bereit zur Nutzung"
  2670. entities.factoryfurnace.needsConveyor = "Benötigt ein Förderband"
  2671. entities.factoryfurnace.needsPower = "Benötigt eine Stromquelle"
  2672.  
  2673. -- sent_factory_crusher
  2674. entities.factorycrusher.printName = "Brecher"
  2675. entities.factorycrusher.busyCrushing = "Der Brecher arbeitet gerade."
  2676. entities.factorycrusher.takeAllBefore = "Du musst alle Gegenstände aus dem Container nehmen, bevor du dies aufheben kannst."
  2677. entities.factorycrusher.preciousMats = "Ein Container, der wertvolle Materialien nach dem zerbröckeln lagert."
  2678. entities.factorycrusher.turnOffNotif = "Nach der Fertigstellung wird der Brecher automatisch deaktiviert."
  2679. entities.factorycrusher.crushing = "zerschmettern " --?
  2680. entities.factorycrusher.insertChunks = "Füge Klumpen hinzu"
  2681. entities.factorycrusher.unplugged = "Nicht angeschlossen"
  2682.  
  2683. -- sent_factory_conveyor
  2684. entities.factoryconveyor.printName = "Beförderer"
  2685. entities.factoryconveyor.factoryBusy = "Die Fabrik ist nicht einsatzbereit."
  2686. entities.factoryconveyor.turnMeOn = "Schalte mich ein"
  2687. entities.factoryconveyor.active = "Activiert"
  2688. entities.factoryconveyor.secs = " Sekunden"
  2689.  
  2690. -- sent_factory_cell
  2691. entities.factorycell.printName = "Kraftzelle"
  2692.  
  2693. -- sent_factory_box
  2694. entities.factorybox.printName = "Lagerbox"
  2695. entities.factorybox.containerHold = "Ein Behälter für Werksgegenstände aus dem Brennofen."
  2696. entities.factorybox.takeAllItems = "Du musst zuerst alle Gegenstände aus der Lagerbox holen, bevor du sie aufheben kannst."
  2697.  
  2698. -- sent_factory_base
  2699. entities.factorybase.printName = "Fabrikbasis" --?
  2700.  
  2701. -- sent_drug_bag
  2702. entities.drugbag.printName = "Tasche mit Weed"
  2703.  
  2704. -- sent_door_charge
  2705. entities.doorcharge.printName = "Türgebühr"
  2706.  
  2707. -- sent_cooktable
  2708. entities.cooktable.printName = "Kochherd"
  2709.  
  2710. -- sent_cocaine_stove
  2711. entities.cocainestove.printName = "Gasherd"
  2712. entities.cocainestove.gas = "Gas: "
  2713. entities.cocainestove.plates = "Platten: "
  2714. entities.cocainestove.insertGas = "Setzte eine Gasflasche ein"
  2715.  
  2716. -- sent_cocaine_pot
  2717. entities.cocainpot.printName = "Kochtopf"
  2718. entities.cocainpot.temperature = "Temperatur: "
  2719. entities.cocainpot.waitAbout = "Warte ungefähr %d Sekunden"
  2720.  
  2721. -- sent_cocaine_packingbox
  2722. entities.cocainepackingbox.printName = "Verpackungskiste"
  2723. entities.cocainepackingbox.cocaLeaves = "Kokablätter: "
  2724. entities.cocainepackingbox.boxFull = "Die Box ist voll"
  2725. entities.cocainepackingbox.packing = "Verpackung"
  2726. entities.cocainepackingbox.notEnoughLeaves = "Du hast nicht genug Blätter."
  2727. entities.cocainepackingbox.boxFullEmpty = "Die Box ist voll. Leere sie zuerst."
  2728. entities.cocainepackingbox.noLeaves = "Du hast keine Blätter mehr."
  2729.  
  2730. -- sent_cocaine_kerosene
  2731. entities.cocainkerosene.printName = "Kerosin"
  2732. entities.cocainkerosene.shakeIt = "Shake it: "
  2733. entities.cocainkerosene.readyToUse = "Bereit zur Nutzung"
  2734.  
  2735. -- sent_cocaine_jerrycan
  2736. entities.cocainejerrycan.printName = "Kanister"
  2737. entities.cocainejerrycan.ready = "Bereit"
  2738. entities.cocainejerrycan.pleaseWait = "Bitte warte %d Sekunden"
  2739.  
  2740. -- sent_cocaine_gas
  2741. entities.cocainegas.printName = "Gas"
  2742. entities.cocainegas.filled = "Gefüllt: "
  2743.  
  2744. -- sent_cocaine_drafted
  2745. entities.cocainedrafted.printName = "Entworfene Blätter" --?
  2746. entities.cocainedrafted.shakeIt = "Schüttle es: "
  2747. entities.cocainedrafted.ready = "Bereit zur Nutzung"
  2748. entities.cocainedrafted.pleaseWait = "Bitte warte %d Sekunden"
  2749.  
  2750. -- sent_cocaine_acid
  2751. entities.cocaineacid.printName = "Schwefelsäure"
  2752. entities.cocaineacid.pleaseWait = "Bitte warte %d Sekunden"
  2753. entities.cocaineacid.ready = "Bereit zur Nutzung"
  2754.  
  2755. -- sent_christmas_tree
  2756. entities.christmastree.printName = "Weihnachtsbaum"
  2757.  
  2758. -- sent_brewingbarrelbench
  2759. entities.brewingbarrelbench.printName = "Fass brauen"
  2760.  
  2761. -- sent_bountyboard
  2762. entities.bountyboard.printName = "Kopfgeldtafel"
  2763. entities.bountyboard.placeBounty = "Platziere ein Kopfgeld"
  2764. entities.bountyboard.name = "Name"
  2765. entities.bountyboard.reward = "Belohnung"
  2766. entities.bountyboard.dateAssigned = "Zuweisungsdatum"
  2767.  
  2768. -- sent_base_lsd
  2769. entities.baselsd.printName = "Droge"
  2770.  
  2771. -- base_item_stackable
  2772. entities.baseitemstackable.printName = "Basiselement" -- ?
  2773. entities.baseitemstackable.beingArrested = "Du kannst dies nicht aufheben, während du inhaftiert bist."
  2774. entities.baseitemstackable.inventorySpace = "Du hast keinen Platz mehr in deinem Inventar, um dies zu Lagern!"
  2775. entities.baseitemstackable.boughtItem = "Du hast einen Gegenstand erworben. %s wurden deinem Portemonnaie entnommen."
  2776. entities.baseitemstackable.shopFull = "Dieser Laden ist schon voll!"
  2777. entities.baseitemstackable.dontHaveItem = "Du hast diesen Gegenstand nicht in deinem Inventar!"
  2778. entities.baseitemstackable.onlyHadThis = "Du hast nur %s von davon!"
  2779.  
  2780. --ent_atm_screen
  2781. entities.atmscreen.printName = "ATM BILDSCHIRM"
  2782. entities.atmscreen.withdraw = "Abhebung"
  2783. entities.atmscreen.deposit = "Anzahlung"
  2784. entities.atmscreen.monoBank = "MONO-BANK"
  2785. entities.atmscreen.balance = "Guthaben: "
  2786. entities.atmscreen.accountHolder = "Kontoinhaber: %s"
  2787. entities.atmscreen.fiftyUSD = "$50" -- idk what you expect me to use here
  2788. entities.atmscreen.fiveHundredUSD = "$500"
  2789. entities.atmscreen.oneThousandUSD = "$1000"
  2790. entities.atmscreen.clear = "C"
  2791. entities.atmscreen.lessThan = "<"
  2792. entities.atmscreen.USD = "$"
  2793. entities.atmscreen.accessDenied = "ATM Zugriff verweigert."
  2794. entities.atmscreen.insufficientFunds = "Du hast nicht genügend Geld."
  2795. entities.atmscreen.confirm = "Bestätigen"
  2796.  
  2797. --ent_atm
  2798. entities.atm.printName = "ATM"
  2799.  
  2800. --ent_boat_base
  2801. entities.boatbase.printName = "Boat" --?
  2802. entities.boatbase.containerDesc = "Ein Container zur Aufnahme von Fracht im Frachtraum eines Bootes."
  2803.  
  2804. --ent_boat_motor_engine
  2805. entities.boatmotorengine.printName = "Boat Motor Engine" --?
  2806.  
  2807. --ent_boat_rhib
  2808. entities.boatrhib.printName = "RHIB" --?
  2809.  
  2810. --ent_boat_rowboat
  2811. entities.rowboat.printName = "Ruderboot"
  2812.  
  2813.  
  2814. --ent_callsign_display
  2815. entities.callsigndisplay.printName = "Spitznamen-Anzeigetafel" --?
  2816. entities.callsigndisplay.yourCallsign = "Dein Spitzname ist %s" --?
  2817. entities.callsigndisplay.noCallsign = "Du hast keinen Spitznamen" --?
  2818. entities.callsigndisplay.deactivate = "Detektiv"
  2819.  
  2820. --ent_carspawnsign
  2821. entities.carspawnsign.warnning = "— WARNUNG —" --written 2 years ago by kyle goodale not me
  2822. entities.carspawnsign.seriousInjury = "TUm schwere Verletzungen zu vermeiden,"
  2823. entities.carspawnsign.remain10ft = "Halte mindestenz 10m Abstand"
  2824. entities.carspawnsign.fromThisSign = "weg von diesem Schild..." --?
  2825. entities.carspawnsign.ty = "Vielen Dank."
  2826.  
  2827. --ent_circle_trigger
  2828. entities.circletrigger.printName = "Lieferort"
  2829. entities.circletrigger.depotPrintName = "Rückgabeort"
  2830.  
  2831. --ent_detector_trigger
  2832. entities.detectortrigger.printName = "Metalldetektor Auslöser"
  2833.  
  2834. --ent_fire_hydrant
  2835. entities.firehydrant.printName = "Feuerhydrant"
  2836.  
  2837. --ent_fire_pumphose
  2838. entities.pumphose.printName = "Schlauchpumpe"
  2839. entities.pumphose.detachingHose = "SCHLAUCH WIRD ENTFERNT"
  2840.  
  2841. --ent_fire_waterhose
  2842. entities.waterhose.printName = "Wasserschlauch"
  2843. entities.waterhose.unequipFirst = "Entferne den Schlauch zuerst!"
  2844.  
  2845. --ent_garage_tv
  2846. entities.garagetv.printName = "Garage TV"
  2847.  
  2848. --ent_garage
  2849. entities.garage.printName = "Garage"
  2850. entities.garage.modeDisabled = "Dieser Modus ist derzeit deaktiviert. Bitte benutze das Legacy-Fahrzeugsystem, indem du F3 drücken."
  2851.  
  2852. --ent_gascan
  2853. entities.gascan.printName = "Benzinkanister"
  2854. entities.gascan.pourThis = "Gieß dies in dein Fahrzeug."
  2855.  
  2856. --ent_gaspump
  2857. entities.gaspump.printName = "Zapfsäule"
  2858. entities.gaspump.poor = "Du kannst dir das nicht leisten!"
  2859. entities.gaspump.needToWait = "Du musst %s Sekunden warten!"
  2860.  
  2861. --ent_house_alarm
  2862. entities.housealarm.printName = "Karte" -- weir name for a house alarm
  2863.  
  2864. --ent_instanced_apt_circle
  2865. entities.instancedaptcircle.printName = "Text zu Testzwecken"
  2866.  
  2867. --ent_invisible_window
  2868. entities.invisibleWindow.printName = "Undurchsichtiges Fenster"
  2869.  
  2870. --ent_itembox
  2871. entities.itembox.printName = "Premium Locker"
  2872. entities.itembox.restricted = "Nur für Premium-Mitglieder. (!store)"
  2873.  
  2874. --ent_map --https://www.youtube.com/watch?v=5XvpHVCp2oU
  2875. entities.map.printName = "Karte"
  2876. entities.map.cityHall = "Rathaus"
  2877. entities.map.superMarket = "Supermarkt"
  2878. entities.map.policeStation = "Polizeistation"
  2879. entities.map.fireStation = "Feuerwehrstation"
  2880. entities.map.clothingStore = "Bekleidungsgeschäft"
  2881. entities.map.generalHospital = "Allgemeines krankenhaus"
  2882. entities.map.modShop = "Mod-Geschäft" --?
  2883. entities.map.realtyOffice = "Immobilienbüro" --?
  2884. entities.map.realEstateOffice = "Immobilienbüro" --?
  2885. entities.map.carDealership = "Autohändler"
  2886. entities.map.cityBank = "Städtische Bank"
  2887. entities.map.miningRavine = "Bergbauschlucht"
  2888. entities.map.transitCentre = "Transit Center"
  2889. entities.map.impoundLot = "Verwahrstelle"
  2890. entities.map.vehicleImpound = "Fahrzeug-Verwahrstelle"
  2891. entities.map.fishingDock = "Fischereidock"
  2892. entities.map.biteRestaurant = "Restaurant"
  2893. entities.map.woodcuttingForest = "Holzfällerwald"
  2894. entities.map.gasStation = "Tankstelle"
  2895. entities.map.gasStationCity = "Tankstelle (Stadt)"
  2896. entities.map.gasStationCountry = "Tankstelle (Land)"
  2897. entities.map.gasStationIndustiral = "Tankstelle (Industrie)"
  2898. entities.map.deliveryDepot = "Lierferdepot"
  2899. entities.map.drugAlley = "Drogengasse"
  2900. entities.map.cityMines = "Stadtminen"
  2901. entities.map.highEndMines = "High-End-Minen"
  2902. entities.map.fishingStore = "Angelgeschäft"
  2903. entities.map.casino = "Kasino"
  2904. entities.map.monoRailStop = "Mono-Rail-Haltestelle"
  2905. entities.map.gunStore = "Waffengeschäft"
  2906. entities.map.hardwareStore = "Baumarkt"
  2907. entities.map.woodCuttingPark = "Holzfällerpark"
  2908. entities.map.marketStreet = "Marktstraße"
  2909. entities.map.garage = "Garage"
  2910. entities.map.cityGarage = "Stadtgarage"
  2911. entities.map.miningRow = "Bergbaureihe"
  2912. entities.map.woodcuttingRow = "Holzfällerreihe"
  2913. entities.map.resourceHaven = "Resource Haven"
  2914. entities.map.mineshaft = "Minenschacht"
  2915. entities.map.hospital = "Krankenhaus"
  2916. entities.map.mechanicShop = "Mechaniker"
  2917. entities.map.automobileDealer = "Autohändler"
  2918. entities.map.drugDealers = "Drogendealer"
  2919. entities.map.truckersCo = "Truckers Co."
  2920. entities.map.deliveryService = "Lieferservice"
  2921. entities.map.mexiGrill = "Mexi Grill"
  2922. entities.map.bank = "Bank"
  2923. entities.map.lake = "See"
  2924. entities.map.truenorthCounty = "Truenorth County"
  2925. entities.map.truenorthCentral = "Truenorth Central"
  2926. entities.map.taxiCompany = "Taxunternehmen"
  2927. entities.map.openMap = "Öffne Map!"
  2928. entities.map.MonoMap = "MONO-MAP"
  2929. entities.map.legend = "LEGENDE"
  2930. entities.map.you = "Du"
  2931. entities.map.setDestination = "Wähle Ziel"
  2932.  
  2933. --ent_metal_detector
  2934. entities.metalDetector.printName = "Metalldetektor"
  2935.  
  2936. --ent_police_database
  2937. entities.policeDatabase.printName = "Polizeidatenbank"
  2938. entities.policeDatabase.accessPoliceDB = "Zugang Polizeidatenbank"
  2939. entities.policeDatabase.noAccess = "Keinen Zugang"
  2940.  
  2941. --ent_police_jailer
  2942. entities.policeJailer.printName = "Polizeicomputer"
  2943. entities.policeJailer.accessPolicePC = "Zugriff Polizeicomputer"
  2944. entities.policeJailer.noAccess = "Keinen Zugang"
  2945.  
  2946. --ent_prisoner_toiler
  2947. entities.prisonerToilet.printName = "Toilettenbürste"
  2948. entities.prisonerToilet.digIn = "Wühle herum und erhalte ine Überraschung"
  2949. entities.prisonerToilet.ewDisgusting = "Widerlich!"
  2950. entities.prisonerToilet.looksEmpty = "Die Toilette scheint leer zu sein"
  2951. entities.prisonerToilet.noWay = "Ich kann mir nicht einmal vorstellen die Toilette anzufassen!"
  2952. entities.prisonerToilet.cannotSearch = "Du kannst keine Toiletten durchsuchen, wenn keine Gefängniswärter im Dienst sind."
  2953. entities.prisonerToilet.alreadyHave = "Ich habe bereits einen Dietrich. Wieso sollte ich die tun?"
  2954. entities.prisonerToilet.startedDigging = "%s durchsucht die Toilette."
  2955. entities.prisonerToilet.dangIt = "Ich habe einen Dietrich gefunden, jedoch fiel er in die Toilette."
  2956. entities.prisonerToilet.dugUpLockpick = "Du hast ein Dietrich gefunden! Neat!"
  2957. entities.prisonerToilet.foundNothing = "Du hast nichts gefunden."
  2958. entities.prisonerToilet.diggingThrough = "Durchsuchen"
  2959.  
  2960. --ent_respawner
  2961. entities.respawner.printName = "Ausrüstung"
  2962. entities.respawner.cannotOpen = "Du kannst diesen Schrank nicht öffnen."
  2963. entities.respawner.readyToUse = "Einsatzbereit"
  2964. entities.respawner.seconds = "Sekunden"
  2965. entities.respawner.noAccess = "Kein Zugang"
  2966.  
  2967. --ent_source_base
  2968. entities.sourceBase.printName = "Resource-Basis"
  2969. entities.sourceBase.gatherWeaponName = "Waffe"
  2970. entities.sourceBase.cannotGather = "Du kannst nicht sammeln während du Berufstätig bist!"
  2971. entities.sourceBase.noMoreResources = "Diese Quelle hat keine Ressourcen mehr"
  2972. entities.sourceBase.skillLevelRequired = "Level %s %s benötigt!"
  2973. entities.sourceBase.source = "%s Quelle"
  2974. entities.sourceBase.sourceAvailable = "Verfügbar %s: %s %"
  2975. entities.sourceBase.level = "Level %s"
  2976.  
  2977. --ent_source_rock
  2978. entities.sourceRock.printName = "Fels"
  2979. entities.sourceRock.resourceName = "Stein"
  2980. entities.sourceRock.cannotMine = "Du kannst keine Ressourcen abbauen während du Berufstätig bist!"
  2981. entities.sourceRock.noMoreStone = "Hier gibt es keinen Stein mehr zu holen"
  2982. entities.sourceRock.higherSkillLevel = "Du brauchst einen höheren Fortschritt, um dieses Erz abbauen zu können."
  2983.  
  2984. --ent_source_tree
  2985. entities.sourceTree.printName = "Baum"
  2986. entities.sourceTree.resourceName = "Holz"
  2987. entities.sourceTree.gatherWeaponName = "Axt"
  2988. entities.sourceTree.messageEmployed = "You cannot log while employed!" --???
  2989. entities.sourceTree.noMoreWood = "Der Baum hat kein Holz mehr."
  2990.  
  2991. --ent_spawned_furniture
  2992. entities.spawnedFurniture.printName = "Möbel"
  2993.  
  2994. --ent_spawned_prop
  2995. entities.spawnedProp.printName = "Prop"
  2996. entities.spawnedProp.pickingUp = "AUFHEBEN"
  2997. entities.spawnedProp.health = "Leben: %s %"
  2998.  
  2999. --ent_spray_plate
  3000. entities.sprayPlate.printName = "Sprühplatte"
  3001. entities.sprayPlate.sprayingTag = "Spray"
  3002. entities.sprayPlate.pleaseWait = "Du musst warten, eine Abklingzeit läuft noch."
  3003. entities.sprayPlate.tagYourCrew = "Kennzeichne die Identität deiner Crew an der Wand."
  3004.  
  3005. --ent_tapedummy
  3006. entities.tapeDummy.printName = "Tape Dummy Object" --???
  3007.  
  3008. --ent_unarrest_trigger
  3009. entities.unarrestTrigger.printName = "Abzug sichern" --???
  3010.  
  3011. --ent_use_trigger
  3012. entities.useTrigger.printName = "Abzug entsichern" --???
  3013.  
  3014. --ent_vehicle_oopvs ( specifies it's disabled but adding it in just in case )
  3015. entities.vehicleOOPVS.printName = "Vehicle OOPVS View" --???
  3016.  
  3017. --ent_vehicle_showcase
  3018. entities.vehicleShowcase.printName = "Fahrzeugschaukasten"
  3019.  
  3020. --ent_voting
  3021. entities.votingComputer.printName = "Wahlcomputer"
  3022. entities.votingComputer.cannotVote = "Du kannst deine Stimme erst während der nächsten Wahl abgeben."
  3023. entities.votingComputer.mayorRating = "Bewertung des Bürgermeisters: "
  3024. entities.votingComputer.generalTaxes = "Allgemeine Steuern:"
  3025. entities.votingComputer.yourJobTaxes = "Deine Jobsteuern:"
  3026. entities.votingComputer.aveJobTaxes = "Jobsteuern:"
  3027.  
  3028. --ent_wheel_repair_kit
  3029. entities.wheelRepairKit.printName = "Reifenreperaturset"
  3030.  
  3031. --mono_camera
  3032. entities.monoCamera.printName = "Persönliche CCTV Kamera"
  3033.  
  3034. --monolith_npc
  3035. entities.monoNPC.printName = "NPC"
  3036.  
  3037. --npc_injuredciv
  3038. entities.injuredCiv.printName = "Verletzter Bürger"
  3039. entities.injuredCiv.innocentCivilian = "Dieser Zivilist ist unschuldig."
  3040.  
  3041. --npc_robber
  3042. entities.npcRobber.mustSurrenderFirst = "Der Räuber muss sich zuerst ergeben."
  3043.  
  3044. --sent_base_gonzo
  3045. entities.baseGonzo.printName = "Droge"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement