-
Notifications
You must be signed in to change notification settings - Fork 124
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 #52 from RoYaL69/main
added locale de.lua
- Loading branch information
Showing
1 changed file
with
21 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,21 @@ | ||
local Translations ={ | ||
["not_on_radio"] = "Du bist nicht mit einem Signal verbunden", | ||
["on_radio"] = "Du bist bereits mit diesem Signal verbunden", | ||
["joined_to_radio"] = "Du bist verbunden mit: %{channel}", | ||
["restricted_channel_error"] = "Du kannst dich nicht mit diesem Signal verbinden!", | ||
["invalid_radio"] = "Diese Frequenz ist nicht verfügbar.", | ||
["you_on_radio"] = "Du bist bereits mit diesem Kanal verbunden", | ||
["you_leave"] = "Du hast den Kanal verlassen.", | ||
['volume_radio'] = 'Neue Lautstärke %{value}', | ||
['decrease_radio_volume'] = 'Das Radio ist bereits auf maximaler Lautstärke eingestellt', | ||
['increase_radio_volume'] = 'Das Radio ist bereits auf der niedrigsten Lautstärke eingestellt', | ||
['increase_decrease_radio_channel'] = 'Neuer Kanal %{value}', | ||
} | ||
|
||
if GetConvar('qb_locale', 'en') == 'de' then | ||
Lang = Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true, | ||
fallbackLang = Lang, | ||
}) | ||
end |