99 lines
3.5 KiB
Lua
99 lines
3.5 KiB
Lua
-- Traduceri in Romana - cu diacritice corecte
|
|
local Translations = {
|
|
headers = {
|
|
['bsm'] = 'Meniu Sef - ',
|
|
},
|
|
body = {
|
|
['manage'] = 'Gestioneaza Angajatii',
|
|
['managed'] = 'Verifica Lista Angajatilor',
|
|
['hire'] = 'Angajeaza Personal',
|
|
['hired'] = 'Angajeaza Civili din Apropiere',
|
|
['storage'] = 'Acces Depozit',
|
|
['storaged'] = 'Deschide Depozitul',
|
|
['outfits'] = 'Tinute',
|
|
['outfitsd'] = 'Vezi Tinutele Salvate',
|
|
['money'] = 'Gestiune Financiara',
|
|
['moneyd'] = 'Verifica Soldul Companiei',
|
|
['mempl'] = 'Gestioneaza Angajatii - ',
|
|
['mngpl'] = 'Gestioneaza ',
|
|
['grade'] = 'Grad: ',
|
|
['fireemp'] = 'Concediaza Angajatul',
|
|
['hireemp'] = 'Angajeaza Personal - ',
|
|
['hiredpeople'] = 'L-ai angajat pe %s %s ca %s',
|
|
['hiredas'] = 'Ai fost angajat ca %s',
|
|
['cannotpromote'] = 'Nu poti promova la acest rang',
|
|
['sucessfulluypromoted'] = 'Angajat promovat cu succes!',
|
|
['bepromoted'] = 'Ai fost promovat la rangul %s',
|
|
['gradenotexists'] = 'Acest grad nu exista',
|
|
['civiliannotincity'] = 'Civilul nu este in oras',
|
|
['successfired'] = 'Angajat concediat!',
|
|
['befired'] = 'Ai fost concediat, mult succes!',
|
|
['cantfiremyself'] = 'Nu te poti concedia pe tine insuti',
|
|
['error'] = 'Eroare',
|
|
['cid'] = 'ID Cetatean: ',
|
|
['balance'] = 'Sold: $',
|
|
['deposit'] = 'Depunere',
|
|
['depositd'] = 'Depune Bani in Cont',
|
|
['withdraw'] = 'Retragere',
|
|
['withdrawd'] = 'Retrage Bani din Cont',
|
|
['depositm'] = 'Depune Bani <br> Sold Disponibil: $',
|
|
['withdrawm'] = 'Retrage Bani <br> Sold Disponibil: $',
|
|
['submit'] = 'Confirma',
|
|
['amount'] = 'Suma',
|
|
['return'] = 'Inapoi',
|
|
['exit'] = 'Inapoi',
|
|
},
|
|
drawtext = {
|
|
['label'] = '[E] Deschide Management Job',
|
|
},
|
|
target = {
|
|
['label'] = 'Meniu Sef',
|
|
},
|
|
headersgang = {
|
|
['bsm'] = 'Management Gang - ',
|
|
},
|
|
bodygang = {
|
|
['manage'] = 'Gestioneaza Membrii Gangului',
|
|
['managed'] = 'Recruteaza sau Concediaza Membri',
|
|
['hire'] = 'Recruteaza Membri',
|
|
['hired'] = 'Angajeaza Membri in Gang',
|
|
['storage'] = 'Acces Depozit',
|
|
['storaged'] = 'Deschide Depozitul Gangului',
|
|
['outfits'] = 'Tinute',
|
|
['outfitsd'] = 'Schimba Hainele',
|
|
['money'] = 'Gestiune Financiara',
|
|
['moneyd'] = 'Verifica Soldul Gangului',
|
|
['mempl'] = 'Gestioneaza Membrii Gangului - ',
|
|
['mngpl'] = 'Gestioneaza ',
|
|
['grade'] = 'Grad: ',
|
|
['fireemp'] = 'Concediaza',
|
|
['hireemp'] = 'Angajeaza Membri Gang - ',
|
|
['cid'] = 'ID Cetatean: ',
|
|
['balance'] = 'Sold: $',
|
|
['deposit'] = 'Depunere',
|
|
['depositd'] = 'Depune Bani in Cont',
|
|
['withdraw'] = 'Retragere',
|
|
['withdrawd'] = 'Retrage Bani din Cont',
|
|
['depositm'] = 'Depune Bani <br> Sold Disponibil: $',
|
|
['withdrawm'] = 'Retrage Bani <br> Sold Disponibil: $',
|
|
['submit'] = 'Confirma',
|
|
['amount'] = 'Suma',
|
|
['return'] = 'Inapoi',
|
|
['exit'] = 'Iesire',
|
|
},
|
|
drawtextgang = {
|
|
['label'] = '[E] Deschide Management Gang',
|
|
},
|
|
targetgang = {
|
|
['label'] = 'Meniu Gang',
|
|
}
|
|
}
|
|
|
|
if GetConvar('qb_locale', 'en') == 'ro' then
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true,
|
|
fallbackLang = Lang,
|
|
})
|
|
end
|