Skip to content

Commit

Permalink
Merge pull request #32 from Swellington-Soares/main
Browse files Browse the repository at this point in the history
Added pt-br language file
  • Loading branch information
GhzGarage authored Oct 13, 2023
2 parents 3731e22 + 40277d8 commit 396071a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions locales/pt-br.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
local Translations = {
success = {
you_have_been_clocked_in = "Você foi registrado na entrada",
},
text = {
point_enter_warehouse = "[E] Entrar no Armazém",
enter_warehouse = "Entrar no Armazém",
exit_warehouse = "Sair do Armazém",
point_exit_warehouse = "[E] Sair do Armazém",
clock_out = "[E] Registrar Saída",
clock_in = "[E] Registrar Entrada",
hand_in_package = "Entregar Pacote",
point_hand_in_package = "[E] Entregar Pacote",
get_package = "Pegar Pacote",
point_get_package = "[E] Pegar Pacote",
picking_up_the_package = "Pegando o pacote",
unpacking_the_package = "Desembalando o pacote",
},
error = {
you_have_clocked_out = "Você registrou sua saída",
},
}

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

0 comments on commit 396071a

Please sign in to comment.