-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from RoYaL69/main
added locale de.lua
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
local Translations = { | ||
success = { | ||
you_have_been_clocked_in = "Sie haben sich angemeldet", | ||
}, | ||
text = { | ||
point_enter_warehouse = "[E] Lager betreten", | ||
enter_warehouse= "Lager betreten", | ||
exit_warehouse= "Lager verlassen", | ||
point_exit_warehouse = "[E] Lager verlassen", | ||
clock_out = "[E] Abmelden", | ||
clock_in = "[E] Anmelden", | ||
hand_in_package = "Paket abgeben", | ||
point_hand_in_package = "[E] Paket abgeben", | ||
get_package = "Paket holen", | ||
point_get_package = "[E] Paket holen", | ||
picking_up_the_package = "Paket wird aufgehoben", | ||
unpacking_the_package = "Paket wird ausgepackt", | ||
}, | ||
error = { | ||
you_have_clocked_out = "Sie haben sich abgemeldet" | ||
}, | ||
} | ||
|
||
if GetConvar('qb_locale', 'en') == 'de' then | ||
Lang = Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true, | ||
fallbackLang = Lang, | ||
}) | ||
end |