From d83ddbb6788880c031a3b75eadf3ce4a412e078b Mon Sep 17 00:00:00 2001 From: Oolaruu Date: Mon, 1 Aug 2016 00:37:12 +0200 Subject: [PATCH] Update Translations.cs Added keys: NoEggsAvailable UseLuckyEggActive NoIncenseAvailable UseIncenseActive AmountPkmSeenCaught PkmPotentialEvolveCount PkmNotEnoughRessources --- PoGo.NecroBot.Logic/Common/Translations.cs | 24 +++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/PoGo.NecroBot.Logic/Common/Translations.cs b/PoGo.NecroBot.Logic/Common/Translations.cs index cfec8a5c6..04a4515c7 100644 --- a/PoGo.NecroBot.Logic/Common/Translations.cs +++ b/PoGo.NecroBot.Logic/Common/Translations.cs @@ -133,7 +133,14 @@ public enum TranslationString DisplayHighestMove1Header, DisplayHighestMove2Header, DisplayHighestCandy, - IPBannedError + IPBannedError, + NoEggsAvailable, + UseLuckyEggActive, + NoIncenseAvailable, + UseIncenseActive, + AmountPkmSeenCaught, + PkmPotentialEvolveCount, + PkmNotEnoughRessources } public class Translation : ITranslation @@ -326,7 +333,18 @@ public class Translation : ITranslation new KeyValuePair(TranslationString.DisplayHighestMove1Header, "MOVE1"), new KeyValuePair(TranslationString.DisplayHighestMove2Header, "MOVE2"), new KeyValuePair(TranslationString.DisplayHighestCandy, "Candy"), - new KeyValuePair(TranslationString.IPBannedError, "Connection refused. Your IP might have been Blacklisted by Niantic. Exiting..") + new KeyValuePair(TranslationString.IPBannedError, + "Connection refused. Your IP might have been Blacklisted by Niantic. Exiting.."), + new KeyValuePair(TranslationString.NoEggsAvailable, "No Eggs Available"), + new KeyValuePair(TranslationString.UseLuckyEggActive, "Lucky Egg Already Active"), + new KeyValuePair(TranslationString.NoIncenseAvailable, "No Incense Available"), + new KeyValuePair(TranslationString.UseIncenseActive, "Incense Already Active"), + new KeyValuePair(TranslationString.AmountPkmSeenCaught, + "Amount of Pokemon Seen:{}:151, Amount of Pokemon Caught:{}:151"), + new KeyValuePair(TranslationString.PkmPotentialEvolveCount, + "[Evolves] Potential Evolves: {}"), + new KeyValuePair(TranslationString.PkmNotEnoughRessources, + "Pokemon Upgrade Failed Not Enough Resources") }; public string GetTranslation(TranslationString translationString, params object[] data) @@ -387,4 +405,4 @@ public void Save(string fullPath) File.WriteAllText(fullPath, output); } } -} \ No newline at end of file +}