-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3731e22
commit 40277d8
Showing
1 changed file
with
30 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,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 |