Skip to content

Commit

Permalink
feat(locales): pt.lua (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosminwindox authored May 5, 2024
1 parent 7976d2c commit dce6275
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions locales/pt.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
local Translations = {
error = {
canceled = "Cancelado",
no_coral = "Não tem nenhum coral para vender...",
},
info = {
collecting_coral = "A recolher coral",
diving_area = "Zona de Mergulho",
collect_coral = "Recolher coral",
collect_coral_dt = "[E] - Recolher Coral",
checking_pockets = "A verificar o inventário por coral para vender...",
sell_coral = "Vender Coral",
sell_coral_dt = "[E] - Vender Coral",
},
}

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

0 comments on commit dce6275

Please sign in to comment.