forked from Godot-Fye/Fishbringer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalization.ptBR.lua
29 lines (23 loc) · 1.43 KB
/
Localization.ptBR.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
local ADDON_NAME, namespace = ...
local L = namespace.L
if namespace.locale == "ptBR" then
--ShowHelp Function
L["Nat Pagle would be proud of you."] = "Nat Pagle ficaria orgulhoso de você."
L["- /fishbringer show - Toggles visibility."] = "- /fishbringer show - Alterna a visibilidade."
L["- /fishbringer align - Cycles through text alignment."] = "- /fishbringer align - Percorre o alinhamento do texto."
L["- /fishbringer count - Toggles fish count visibility."] = "- /fishbringer count - Alterna a visibilidade da contagem de peixes."
L["- /fishbringer reset - Resets the fish database."] = "- /fishbringer reset - Reinicia o banco de dados de peixes."
--Fishbringer Overlay/Display Widget
L["No fish in this zone"] = "Nenhum peixe nesta zona"
L["%d skill needed to fish:"] = "%d habilidade necessária para pescar"
L["%d needed for 100%% catch rate"] = "%d necessário para 100%% de taxa de captura"
L["%d%% catch rate"] = "%d%% taxa de captura"
-- L["%d%% junk rate"] = "%d%% junk rate"
L["%s%s fishing skill%s"] = "%s%s habilidade de pesca"
L["\n%d fish needed to skill up"] = "\n%d peixes precisavam de habilidade"
L["%d fish caught at this level"] = "%d peixes capturados neste nível"
-- Angeln/Fishing - Name of the Fishing Perk
L["Fishing"] = "pescaria"
-- Welcome Message on Login
L["Pack yer bags, we be leavin' fer fishin'!"] = "Faça as malas, vamos partir 'para pescar'!"
return end