forked from robertjacobsen/Fishbringer
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Ulidan/2.5.1-1-TBC
Many changes to localization and table mechanics
- Loading branch information
Showing
9 changed files
with
301 additions
and
358 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,24 @@ | ||
## Interface: 20501 | ||
## Title: Fishbringer | ||
## Title-deDE: Fishbringer | ||
## Title-ruRU: Fishbringer | ||
## Notes: The legendary Fishbringer, Guide of the Scarlet Highlord! Nat Pagle would be proud of you! | ||
## Notes-deDE: Das legendäre Fishbringer, Leitfaden des Scharlachroten Hochlords! Nat Pagle wäre stolz auf dich! | ||
## Notes-ruRU: Легендарный Рыболов, проводник Повелителя Алого ордена! Нат Пэгл гордился бы тобой! | ||
## Notes-esES: ¡El legendario Fishbringer, guía del Scarlet Highlord! ¡Nat Pagle estaría orgulloso de ti! | ||
## Notes-frFR: Le légendaire Fishbringer, guide du seigneur écarlate ! Nat Pagle serait fier de vous ! | ||
## Notes-ptBR: O lendário Fishbringer, Guia do Highlord Escarlate! Nat Pagle ficaria orgulhoso de você! | ||
## Author: Kalerath, Fye (Localization Code & Bugfixes), Zilom (Bugfixes & Localization Redesigned + Added), leafoe (Russian Localization) | ||
## SavedVariables: FishbringerDB | ||
## Version: 2.5.1-4 | ||
|
||
# main: | ||
localization.core.lua | ||
fishy.lua | ||
|
||
# localizations: | ||
Localization.deDE.lua | ||
Localization.ruRU.lua | ||
Localization.esES.lua | ||
Localization.frFR.lua | ||
Localization.ptBR.lua |
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,24 @@ | ||
## Interface: 11307 | ||
## Title: Fishbringer | ||
## Title-deDE: Fishbringer | ||
## Title-ruRU: Fishbringer | ||
## Notes: The legendary Fishbringer, Guide of the Scarlet Highlord! Nat Pagle would be proud of you! | ||
## Notes-deDE: Das legendäre Fishbringer, Leitfaden des Scharlachroten Hochlords! Nat Pagle wäre stolz auf dich! | ||
## Notes-ruRU: Легендарный Рыболов, проводник Повелителя Алого ордена! Нат Пэгл гордился бы тобой! | ||
## Notes-esES: ¡El legendario Fishbringer, guía del Scarlet Highlord! ¡Nat Pagle estaría orgulloso de ti! | ||
## Notes-frFR: Le légendaire Fishbringer, guide du seigneur écarlate ! Nat Pagle serait fier de vous ! | ||
## Notes-ptBR: O lendário Fishbringer, Guia do Highlord Escarlate! Nat Pagle ficaria orgulhoso de você! | ||
## Author: Kalerath, Fye (Localization Code & Bugfixes), Zilom (Bugfixes & Localization Redesigned + Added), leafoe (Russian Localization) | ||
## SavedVariables: FishbringerDB | ||
## Version: 2.5.1-4 | ||
|
||
# main: | ||
localization.core.lua | ||
fishy.lua | ||
|
||
# localizations: | ||
Localization.deDE.lua | ||
Localization.ruRU.lua | ||
Localization.esES.lua | ||
Localization.frFR.lua | ||
Localization.ptBR.lua |
This file was deleted.
Oops, something went wrong.
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
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,27 @@ | ||
local ADDON_NAME, namespace = ... | ||
local L = namespace.L | ||
|
||
if namespace.locale == "esES" then | ||
|
||
--ShowHelp Function | ||
L["Nat Pagle would be proud of you."] = "Nat Pagle estaría orgulloso de ti." | ||
L["- /fishbringer show - Toggles visibility."] = "- /fishbringer show - Alterna la visibilidad." | ||
L["- /fishbringer align - Cycles through text alignment."] = "- /fishbringer align - Recorre la alineación del texto." | ||
L["- /fishbringer count - Toggles fish count visibility."] = "- /fishbringer count - Alterna la visibilidad del recuento de peces." | ||
L["- /fishbringer reset - Resets the fish database."] = "- /fishbringer reset - Restablece la base de datos de peces." | ||
|
||
--Fishbringer Overlay/Display Widget | ||
L["\124c%s%s\124r\nNo fish in this zone"] = "\124c%s%s\124r\nNo hay peces en esta zona" | ||
L["\124c%s%s\124r\n%d skill needed to fish\n(%d needed for 100%% catch rate)"] = "\124c%s%s\124r\n%d habilidad necesaria para pescar\n(%d necesario para una tasa de captura del 100%%)" | ||
L["%d%% catch rate"] = "%d%% tasa de captura" | ||
L["%s%s fishing skill%s"] = "%s%s habilidad de pesca" | ||
L["\n%d fish needed to skill up"] = "\n%d peces necesarios para mejorar" | ||
L["%d fish caught at this level"] = "%d pescado capturado a este nivel" | ||
|
||
-- Angeln/Fishing - Name of the Fishing Perk | ||
L["Fishing"] = "Pescar" | ||
|
||
-- Welcome Message on Login | ||
L["Pack yer bags, we be leavin' fer fishin'!"] = "¡Prepara tus maletas, nos vamos 'a pescar'!" | ||
|
||
return end |
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,27 @@ | ||
local ADDON_NAME, namespace = ... | ||
local L = namespace.L | ||
|
||
if namespace.locale == "frFR" then | ||
|
||
--ShowHelp Function | ||
L["Nat Pagle would be proud of you."] = "Nat Pagle serait fier de vous." | ||
L["- /fishbringer show - Toggles visibility."] = "- /fishbringer show - Bascule la visibilité." | ||
L["- /fishbringer align - Cycles through text alignment."] = "- /fishbringer align - Fait défiler l'alignement du texte." | ||
L["- /fishbringer count - Toggles fish count visibility."] = "- /fishbringer count - Bascule la visibilité du nombre de poissons." | ||
L["- /fishbringer reset - Resets the fish database."] = "- /fishbringer reset - Réinitialise la base de données des poissons." | ||
|
||
--Fishbringer Overlay/Display Widget | ||
L["\124c%s%s\124r\nNo fish in this zone"] = "\124c%s%s\124r\nPas de poisson dans cette zone" | ||
L["\124c%s%s\124r\n%d skill needed to fish\n(%d needed for 100%% catch rate)"] = "\124c%s%s\124r\n%d compétence nécessaire pour pêcher\n(%d nécessaire pour un taux de capture de 100%%)" | ||
L["%d%% catch rate"] = "%d%% taux de capture" | ||
L["%s%s fishing skill%s"] = "%s%s compétence de pêche" | ||
L["\n%d fish needed to skill up"] = "\n%d рыб poisson nécessaire pour se perfectionner" | ||
L["%d fish caught at this level"] = "%d poisson pêché à ce niveau" | ||
|
||
-- Angeln/Fishing - Name of the Fishing Perk | ||
L["Fishing"] = "Pêche" | ||
|
||
-- Welcome Message on Login | ||
L["Pack yer bags, we be leavin' fer fishin'!"] = "Faites vos valises, nous partons « à la pêche » !" | ||
|
||
return end |
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,27 @@ | ||
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["\124c%s%s\124r\nNo fish in this zone"] = "\124c%s%s\124r\nNenhum peixe nesta zona" | ||
L["\124c%s%s\124r\n%d skill needed to fish\n(%d needed for 100%% catch rate)"] = "\124c%s%s\124r\n%d habilidade necessária para pescar\n(%d necessário para 100%% de taxa de captura)" | ||
L["%d%% catch rate"] = "%d%% taxa de captura" | ||
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 |
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
Oops, something went wrong.