Skip to content

Commit

Permalink
added locale de.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcell committed Sep 6, 2024
1 parent cabb12a commit 80100fa
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions locales/de.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
local Translations = {
afk = {
will_kick = 'Du bist AFK und wirst in ',
time_seconds = ' Sekunden gekickt!',
time_minutes = ' Minute(n) gekickt!',
kick_message = 'Du wurdest gekickt, weil du AFK warst'
},
wash = {
in_progress = "Fahrzeug wird gewaschen...",
wash_vehicle = "[E] Fahrzeug waschen",
wash_vehicle_target = "Fahrzeug waschen",
dirty = "Das Fahrzeug ist nicht schmutzig",
cancel = "Waschen abgebrochen..."
},
consumables = {
eat_progress = "Essen...",
drink_progress = "Trinken...",
liqour_progress = "Alkohol trinken...",
coke_progress = "Kurzer Zug...",
crack_progress = "Crack rauchen...",
ecstasy_progress = "Pillen einwerfen",
healing_progress = "Heilen",
meth_progress = "Crystal Meth rauchen",
joint_progress = "Joint anzünden...",
use_parachute_progress = "Fallschirm anlegen...",
pack_parachute_progress = "Fallschirm packen...",
no_parachute = "Du hast keinen Fallschirm!",
armor_full = "Du hast bereits genug Rüstung an!",
armor_empty = "Du trägst keine Weste...",
armor_progress = "Schutzweste anlegen...",
heavy_armor_progress = "Schwere Schutzweste anlegen...",
remove_armor_progress = "Schutzweste abnehmen...",
canceled = "Abgebrochen..."
},
cruise = {
unavailable = "Tempomat nicht verfügbar",
activated = "Tempomat aktiviert",
deactivated = "Tempomat deaktiviert"
},
editor = {
started = "Aufnahme gestartet!",
save = "Aufnahme gespeichert!",
delete = "Aufnahme gelöscht!",
editor = "Bis später, Alligator!"
},
firework = {
place_progress = "Feuerwerk platzieren...",
canceled = "Abgebrochen...",
time_left = "Feuerwerk startet in ~r~"
},
seatbelt = {
use_harness_progress = "Renngurt anlegen",
remove_harness_progress = "Renngurt entfernen",
no_car = "Du bist nicht in einem Auto."
},
teleport = {
teleport_default = 'Aufzug benutzen'
},
pushcar = {
stop_push = "[E] Schieben beenden"
}
}

if GetConvar('qb_locale', 'en') == 'de' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end

0 comments on commit 80100fa

Please sign in to comment.