Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added BG/Bulgarian Translation #129

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions locales/bg.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
local Translations = {
error = {
to_far_from_door = 'Твърде далеч сте от звънеца',
nobody_home = 'Няма никой вкъщи..',
nobody_at_door = 'Няма никой на вратата...'
},
success = {
receive_apart = 'Получихте апартамент',
changed_apart = 'Преместихте се да живеете тук',
},
info = {
at_the_door = 'Някой е на вратата!',
},
text = {
options = '[E] Опции на апартамента',
enter = 'Влезте в апартамента',
ring_doorbell = 'Позвънете на звънеца',
logout = 'Отписване на героя',
change_outfit = 'Промяна на облеклото',
open_stash = 'Отворете скривалището',
move_here = 'Преместете се тук',
open_door = 'Отворете вратата',
leave = 'Излезте от апартамента',
close_menu = '⬅ Затваряне на менюто',
tennants = 'Наематели',
},
}

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