Skip to content

Commit

Permalink
feat(locales): german
Browse files Browse the repository at this point in the history
  • Loading branch information
RoYaL69 authored Oct 6, 2024
1 parent 64a2243 commit b14dc06
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions locales/de.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
local Translations = {
error = {
canceled = "Abgebrochen",
no_coral = "Du hast kein Korallen zum Verkaufen...",
},
info = {
collecting_coral = "Korallen sammeln",
diving_area = "Tauchgebiet",
collect_coral = "Korallen sammeln",
collect_coral_dt = "[E] - Korallen sammeln",
checking_pockets = "Inventar auf Korallen zum Verkaufen überprüfen...",
sell_coral = "Korallen verkaufen",
sell_coral_dt = "[E] - Korallen verkaufen",
},
}

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

0 comments on commit b14dc06

Please sign in to comment.