Skip to content

Commit

Permalink
Merge pull request #25 from RoYaL69/main
Browse files Browse the repository at this point in the history
added locale de.lua
  • Loading branch information
GhzGarage authored Nov 13, 2024
2 parents 8811bd8 + 69e9b38 commit 8e04157
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions locales/de.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
local Translations = {
error = {
invalid_ext = "Das ist keine gültige Erweiterung, nur",
allowed_ext = "Erweiterungs-Links sind erlaubt.",
},
info = {
use_printer = "Drucker verwenden",
},
command = {
spawn_printer = "Drucker spawnen",
}
}

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

0 comments on commit 8e04157

Please sign in to comment.