diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 1ca4ea8b7..3f78a24b8 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -127,6 +127,16 @@ private static EncounterArea[] getEncounterTables(GameVersion Game) byte[] tables = null; switch (Game) { + case GameVersion.R: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_r, "ru")); + case GameVersion.S: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_s, "sa")); + case GameVersion.E: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_e, "em")); + case GameVersion.FR: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_fr, "fr")); + case GameVersion.LG: return EncounterArea.getArray3(Data.unpackMini(Resources.encounter_lg, "lg")); + case GameVersion.D: return EncounterArea.getArray4DPPt(Data.unpackMini(Resources.encounter_d, "da")); + case GameVersion.P: return EncounterArea.getArray4DPPt(Data.unpackMini(Resources.encounter_p, "pe")); + case GameVersion.Pt: return EncounterArea.getArray4DPPt(Data.unpackMini(Resources.encounter_pt, "pt")); + case GameVersion.HG: return EncounterArea.getArray4HGSS(Data.unpackMini(Resources.encounter_hg, "hg")); + case GameVersion.SS: return EncounterArea.getArray4HGSS(Data.unpackMini(Resources.encounter_ss, "ss")); case GameVersion.B: ident = "51"; tables = Resources.encounter_b; break; case GameVersion.W: ident = "51"; tables = Resources.encounter_w; break; case GameVersion.B2: ident = "52"; tables = Resources.encounter_b2; break; @@ -156,7 +166,36 @@ private static EncounterArea[] addExtraTableSlots(EncounterArea[] GameSlots, Enc } return GameSlots; } + private static void MarkG3Slots_FRLG(ref EncounterArea[] Areas) + { + // Remove slots for unown, those slots does not contains alt form info, it will be added manually in SlotsRFLGAlt + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.Where(a => (a.Location < 188 || a.Location > 194)). + GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); + } + private static void MarkG3Slots_RSE(ref EncounterArea[] Areas) + { + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); + } + private static void MarkG4Slots(ref EncounterArea[] Areas) + { + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); + } private static void MarkG5Slots(ref EncounterArea[] Areas) { foreach (var area in Areas) @@ -187,6 +226,12 @@ private static void MarkG5Slots(ref EncounterArea[] Areas) } while (ctr != area.Slots.Length); area.Slots = area.Slots.Where(slot => slot.Species != 0).ToArray(); } + // Group areas by location id, the raw data have areas with different slots but the same location id + Areas = Areas.GroupBy(a => a.Location). + Select(a => + new EncounterArea() + { Location = a.First().Location, Slots = a.SelectMany(m => m.Slots).ToArray() }). + ToArray(); } private static void MarkG6XYSlots(ref EncounterArea[] Areas) { @@ -272,13 +317,25 @@ private static EncounterArea[] getTables2() StaticFR = getStaticEncounters(GameVersion.FR); StaticLG = getStaticEncounters(GameVersion.LG); - SlotsR = getEncounterTables(GameVersion.R); - SlotsS = getEncounterTables(GameVersion.S); - SlotsE = getEncounterTables(GameVersion.E); - SlotsFR = getEncounterTables(GameVersion.FR); - SlotsLG = getEncounterTables(GameVersion.LG); + var R_Slots = getEncounterTables(GameVersion.R); + var S_Slots = getEncounterTables(GameVersion.S); + var E_Slots = getEncounterTables(GameVersion.E); + var FR_Slots = getEncounterTables(GameVersion.FR); + var LG_Slots = getEncounterTables(GameVersion.LG); - //Evolves3 = new EvolutionTree(Data.unpackMini(Resources.evos_rs, "rs"), GameVersion.RS, PersonalTable.RS, MaxSpeciesID_3); + MarkG3Slots_RSE(ref R_Slots); + MarkG3Slots_RSE(ref S_Slots); + MarkG3Slots_RSE(ref E_Slots); + MarkG3Slots_FRLG(ref FR_Slots); + MarkG3Slots_FRLG(ref LG_Slots); + + SlotsR = addExtraTableSlots(R_Slots, SlotsRSEAlt); + SlotsS = addExtraTableSlots(S_Slots, SlotsRSEAlt); + SlotsE = addExtraTableSlots(E_Slots, SlotsRSEAlt); + SlotsFR = addExtraTableSlots(FR_Slots, SlotsFRLGAlt); + SlotsLG = addExtraTableSlots(LG_Slots, SlotsFRLGAlt); + + Evolves3 = new EvolutionTree(new[] { Resources.evos_g3 }, GameVersion.RS, PersonalTable.RS, MaxSpeciesID_3); // Update Personal Entries with TM/Tutor Data var TMHM = Data.unpackMini(Resources.hmtm_g3, "g3"); @@ -296,13 +353,33 @@ private static EncounterArea[] getTables2() StaticHG = getStaticEncounters(GameVersion.HG); StaticSS = getStaticEncounters(GameVersion.SS); - SlotsD = getEncounterTables(GameVersion.D); - SlotsP = getEncounterTables(GameVersion.P); - SlotsPt = getEncounterTables(GameVersion.Pt); - SlotsHG = getEncounterTables(GameVersion.HG); - SlotsSS = getEncounterTables(GameVersion.SS); + var D_Slots = getEncounterTables(GameVersion.D); + var P_Slots = getEncounterTables(GameVersion.P); + var Pt_Slots = getEncounterTables(GameVersion.Pt); + var HG_Slots = getEncounterTables(GameVersion.HG); + var SS_Slots = getEncounterTables(GameVersion.SS); + var HG_Headbutt_Slots = EncounterArea.getArray4HGSS_Headbutt(Data.unpackMini(Resources.encunters_hb_hg, "hg")); + var SS_Headbutt_Slots = EncounterArea.getArray4HGSS_Headbutt(Data.unpackMini(Resources.encunters_hb_ss, "ss")); - //Evolves4 = new EvolutionTree(Data.unpackMini(Resources.evos_dp, "dp"), GameVersion.DP, PersonalTable.DP, MaxSpeciesID_4); + var D_HoneyTrees_Slots = SlotsD_HoneyTree.Clone(HoneyTreesLocation); + var P_HoneyTrees_Slots = SlotsP_HoneyTree.Clone(HoneyTreesLocation); + var Pt_HoneyTrees_Slots = SlotsPt_HoneyTree.Clone(HoneyTreesLocation); + + MarkG4Slots(ref D_Slots); + MarkG4Slots(ref P_Slots); + MarkG4Slots(ref Pt_Slots); + MarkG4Slots(ref HG_Slots); + MarkG4Slots(ref SS_Slots); + MarkG4Slots(ref HG_Headbutt_Slots); + MarkG4Slots(ref SS_Headbutt_Slots); + + SlotsD = addExtraTableSlots(addExtraTableSlots(D_Slots, D_HoneyTrees_Slots), SlotsDPPPtAlt); + SlotsP = addExtraTableSlots(addExtraTableSlots(P_Slots, P_HoneyTrees_Slots), SlotsDPPPtAlt); + SlotsPt = addExtraTableSlots(addExtraTableSlots(Pt_Slots, Pt_HoneyTrees_Slots), SlotsDPPPtAlt); + SlotsHG = addExtraTableSlots(addExtraTableSlots(HG_Slots, HG_Headbutt_Slots), SlotsHGSSAlt); + SlotsSS = addExtraTableSlots(addExtraTableSlots(SS_Slots, SS_Headbutt_Slots), SlotsHGSSAlt); + + Evolves4 = new EvolutionTree(new[] { Resources.evos_g4 }, GameVersion.DP, PersonalTable.DP, MaxSpeciesID_4); // Update Personal Entries with Tutor Data var tutors = Data.unpackMini(Resources.tutors_g4, "g4"); @@ -325,7 +402,7 @@ private static EncounterArea[] getTables2() MarkG5Slots(ref SlotsB2); MarkG5Slots(ref SlotsW2); - //Evolves5 = new EvolutionTree(Data.unpackMini(Resources.evos_bw, "bw"), GameVersion.BW, PersonalTable.BW, MaxSpeciesID_5); + Evolves5 = new EvolutionTree(new[] { Resources.evos_g5 }, GameVersion.BW, PersonalTable.BW, MaxSpeciesID_5); } // Gen 6 { @@ -363,10 +440,6 @@ private static EncounterArea[] getTables2() Evolves7 = new EvolutionTree(Data.unpackMini(Resources.evos_sm, "sm"), GameVersion.SM, PersonalTable.SM, MaxSpeciesID_7); } - - // Temp - - Evolves3 = Evolves4 = Evolves5 = Evolves6; } // Moves diff --git a/PKHeX/Legality/Structures/EncounterArea.cs b/PKHeX/Legality/Structures/EncounterArea.cs index 77c56a24b..9c18d50ec 100644 --- a/PKHeX/Legality/Structures/EncounterArea.cs +++ b/PKHeX/Legality/Structures/EncounterArea.cs @@ -27,6 +27,28 @@ private EncounterArea(byte[] data) } } + public EncounterArea Clone(int location) + { + EncounterArea Areas = new EncounterArea(); + Areas.Location = location; + Areas.Slots = new EncounterSlot[Slots.Length]; + for (int i = 0; i < Slots.Length; i++) + { + Areas.Slots[i] = Slots[i].Clone(); + } + return Areas; + } + + public EncounterArea[] Clone(int[] locations) + { + EncounterArea[] Areas = new EncounterArea[locations.Length]; + for(int i=0;i getAreas2_H(byte[] data, ref int ofs) return head.Concat(rock); } + private static IEnumerable getSlots3(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new List(); + int Ratio = data[ofs]; + //1 byte padding + if (Ratio > 0) + { + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 2 + i * 4]; + int levelmax = data[ofs + 3 + i * 4]; + int Species = PKX.getG4Species(BitConverter.ToUInt16(data, ofs + 4 + i * 4)); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, + Type = t + }); + } + } + ofs += 2 + numslots * 4; + return slots; + } + private static IEnumerable getSlots3_F(byte[] data, ref int ofs, int numslots) + { + var slots = new List(); + int Ratio = data[ofs]; + //1 byte padding + if (Ratio > 0) + { + for (int i = 0; i < numslots; i++) + { + SlotType t = i < 2 ? SlotType.Old_Rod : i < 5 ? SlotType.Good_Rod : SlotType.Super_Rod; + int levelmin = data[ofs + 2 + i * 4]; + int levelmax = data[ofs + 3 + i * 4]; + int Species = PKX.getG4Species(BitConverter.ToUInt16(data, ofs + 4 + i * 4)); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, + Type = t + }); + } + } + ofs += 2 + numslots * 4; + return slots; + } + + private static EncounterSlot[] getSlots4_DPPt_G(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new EncounterSlot[numslots]; + + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 2 + i * 4]; + int levelmax = data[ofs + 3 + i * 4]; + int Species = BitConverter.ToUInt16(data, ofs + 4 + i * 4); + + int level = (int)BitConverter.ToUInt32(data, ofs + i * 8); + int species = (int)BitConverter.ToUInt32(data, ofs + i * 8); + slots[i] = new EncounterSlot() + { + LevelMax = level, + LevelMin = level, + Species = species, + Type = t + }; + } + + ofs += numslots * 8; + return slots; + } + private static EncounterSlot[] getSlots4_HGSS_G(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new EncounterSlot[numslots * 3]; + // First 36 slots are morning, day and night grass slots + // The order is 12 level values, 12 morning species, 12 day species and 12 night species + for (int i = 0; i < numslots; i++) + { + int level = data[ofs + i]; + int species = BitConverter.ToUInt16(data, ofs + numslots + i * 2); + slots[i] = new EncounterSlot() + { + LevelMin = level, + LevelMax = level, + Species = species, + Type = t + }; + } + for (int i = 0; i < numslots; i++) + { + slots[numslots + i] = slots[i].Clone(); + slots[numslots + i].Species = (int)BitConverter.ToUInt16(data, ofs + numslots * 3 + i * 2); + slots[numslots + i].Type = t; + } + for (int i = 0; i < numslots; i++) + { + slots[numslots * 2 + i] = slots[i].Clone(); + slots[numslots * 2 + i].Species = (int)BitConverter.ToUInt16(data, ofs + numslots * 5 + i * 2); + slots[numslots * 2 + i].Type = t; + } + + ofs += numslots * 7; + return slots; + } + private static IEnumerable getSlots4DPPt_G_Replace(byte[] data, ref int ofs, int numslots, EncounterSlot[] ReplacedSlots, int StartReplace, SlotType t) + { + //Special slots like GBA Dual Slot. Those slot only contain the info the species, the level is copy from one of the first grass slots + var slots = new List(); + + for (int i = 0; i < numslots; i++) + { + if(ReplacedSlots[StartReplace + i].LevelMin > 0) + { + var Species = (int)BitConverter.ToUInt32(data, ofs + i * 4); + if (Species > 0) + { + var slot = ReplacedSlots[StartReplace + i].Clone(); + slot.Type = t; + slot.Species = Species; + slots.Add(slot); + } + } + } + + ofs += numslots * 4; + return slots; + } + private static IEnumerable getSlots4HGSS_G_Replace(byte[] data, ref int ofs, int numslots, EncounterSlot[] ReplacedSlots, int StartReplace, SlotType t) + { + //Special slots like GBA Dual Slot. Those slot only contain the info the species, the level is copy from one of the first grass slots + var slots = new List(); + + for (int i = 0; i < numslots; i++) + { + if (ReplacedSlots[StartReplace + i].LevelMin > 0) + { + var Species = (int)BitConverter.ToUInt16(data, ofs + i * 2); + if (Species > 0) + { + var slot = ReplacedSlots[StartReplace + i].Clone(); + slot.Type = t; + slot.Species = Species; + slots.Add(slot); + } + } + } + + ofs += numslots * 2; + return slots; + } + private static IEnumerable getSlots4_G_TimeReplace(byte[] data, ref int ofs, EncounterSlot[] GrassSlots, SlotType t) + { + var slots = new List(); + + int[] CountReplaced = new int[2]; + + // Slots for day, morning and night slots IN DPPt. Only contain species data, level is copy from grass slot + for (int i = 0; i < 3; i++) + { + for (int j = 0; j < 2; j++) + { + var slot = GrassSlots[2 + j].Clone(); + slot.Type = t; + slot.Species = (int)BitConverter.ToUInt32(data, ofs + i * 4); + if (slot.Species > 0) + { + CountReplaced[j] += 1; + slots.Add(slot); + } + } + ofs += 8; + } + + // If the grass slot is replaced by all the time slots that means the species in the grass slot will never be used + // Unlike raid slot and gba dual slot the time of the day is always day, morning or night + if (CountReplaced[0] == 3) + GrassSlots[2].Species = 0; + if (CountReplaced[1] == 3) + GrassSlots[3].Species = 0; + + return GrassSlots.Where(s => s.Species > 0).Concat(slots); + } + private static IEnumerable getSlots4DPPt_WFR(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new List(); + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 0 + i * 8]; + int levelmax = data[ofs + 1 + i * 8]; + //2 bytes padding + int Species = (int)BitConverter.ToUInt32(data, ofs + 4 + i * 8); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, + Type = t + }); + + } + ofs += numslots * 8; + return slots; + } + private static IEnumerable getSlots4HGSS_WFR(byte[] data, ref int ofs, int numslots, SlotType t) + { + var slots = new List(); + for (int i = 0; i < numslots; i++) + { + int levelmin = data[ofs + 0 + i * 4]; + int levelmax = data[ofs + 1 + i * 4]; + int Species = (int)BitConverter.ToUInt16(data, ofs + 2 + i * 4); + if (Species > 0) + slots.Add(new EncounterSlot() + { + LevelMin = levelmin, + LevelMax = levelmax, + Species = Species, + Type = t + }); + + } + ofs += numslots * 4; + return slots; + } + + private static EncounterArea getArea3(byte[] data) + { + EncounterArea Area3 = new EncounterArea(); + bool HaveGrassSlots = false; + bool HaveSurfSlots = false; + bool HaveRockSmashSlots = false; + bool HaveFishingSlots = false; + + if (data.Length < 6) + { Area3.Location = 0; Area3.Slots = new EncounterSlot[0]; return Area3; } + + Area3.Location = data[0]; + HaveGrassSlots = data[1] == 1; + HaveSurfSlots = data[2] == 1; + HaveRockSmashSlots = data[3] == 1; + HaveFishingSlots = data[4] == 1; + + int offset = 5; + var slots = new List(); + if (HaveGrassSlots) + slots.AddRange(getSlots3(data, ref offset, 12, SlotType.Grass)); + if (HaveSurfSlots) + slots.AddRange(getSlots3(data, ref offset, 5, SlotType.Surf)); + if (HaveRockSmashSlots) + slots.AddRange(getSlots3(data, ref offset, 5, SlotType.Rock_Smash)); + if (HaveFishingSlots) + slots.AddRange(getSlots3_F(data, ref offset, 10)); + Area3.Slots = slots.ToArray(); + return Area3; + } + + private static EncounterArea getArea4DPPt(byte[] data) + { + int ofs = 0; + int GrassRatio = 0; + int SurfRatio = 0; + int OldRodRatio = 0; + int GoodRodRatio = 0; + int SuperRodRatio = 0; + EncounterArea Area4 = new EncounterArea(); + if (data.Length != 426) + { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } + + var Slots = new List(); + Area4.Location = BitConverter.ToUInt16(data, 0); + + GrassRatio = (int)BitConverter.ToUInt32(data, 2); + ofs = 6; + if (GrassRatio > 0) + { + EncounterSlot[] GrassSlots = getSlots4_DPPt_G(data, ref ofs, 12, SlotType.Grass); + //Morning, Day and Night slots replace slots 2 and 3 + Slots.AddRange(getSlots4_G_TimeReplace(data, ref ofs, GrassSlots, SlotType.Grass)); + //Pokéradar slots replace slots 6,7,10 and 11 + //Pokeradar is marked with different slot type because it have different PID-IV generation + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 6, SlotType.Pokeradar)); + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 10, SlotType.Pokeradar)); + ofs += 24; //24 bytes padding + //Dual Slots replace slots 8 and 9 + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Ruby + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Sapphire + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_Emerald + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_FireRed + Slots.AddRange(getSlots4DPPt_G_Replace(data, ref ofs, 2, GrassSlots, 8, SlotType.Grass)); //DualSlot_LeafGreen + } + else + ofs = 206; + + SurfRatio = (int)BitConverter.ToUInt32(data, ofs); + ofs += 4; + if (SurfRatio > 0) + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Surf)); + else + ofs += 40; + + ofs += 44; //44 bytes padding + OldRodRatio = (int)BitConverter.ToUInt32(data, 294); + ofs += 4; + if (OldRodRatio > 0) + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Old_Rod)); + else + ofs += 40; + + GoodRodRatio = (int)BitConverter.ToUInt32(data, 338); + ofs += 4; + if (GoodRodRatio > 0) + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Good_Rod)); + else + ofs += 40; + + SuperRodRatio = (int)BitConverter.ToUInt32(data, 382); + ofs += 4; + if (SuperRodRatio > 0) + Slots.AddRange(getSlots4DPPt_WFR(data, ref ofs, 5, SlotType.Super_Rod)); + else + ofs += 40; + + Area4.Slots = Slots.ToArray(); + return Area4; + } + + private static EncounterArea getArea4HGSS(byte[] data) + { + int GrassRatio = 0; + int SurfRatio = 0; + int OldRodRatio = 0; + int GoodRodRatio = 0; + int SuperRodRatio = 0; + int RockSmashRatio = 0; + EncounterArea Area4 = new EncounterArea(); + if (data.Length != 198) + { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } + + var Slots = new List(); + Area4.Location = BitConverter.ToUInt16(data, 0); + + GrassRatio = data[2]; + SurfRatio = data[3]; + RockSmashRatio = data[4]; + OldRodRatio = data[5]; + GoodRodRatio = data[6]; + SuperRodRatio = data[7]; + // 2 bytes padding + int ofs = 10; + + EncounterSlot[] GrassSlots = null; + + if (GrassRatio > 0) + { + // First 36 slots are morning, day and night grass slots + // The order is 12 level values, 12 morning species, 12 day species and 12 night species + GrassSlots = getSlots4_HGSS_G(data, ref ofs, 12, SlotType.Grass); + Slots.AddRange(GrassSlots.Where(s => s.Species > 0)); + // Hoeen Sound and Shinno Soundreplace slots 4 and 5 + Slots.AddRange(getSlots4HGSS_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + Slots.AddRange(getSlots4HGSS_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + } + else + ofs = 102; + + if (SurfRatio > 0) + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Surf)); + else + ofs += 20; + + if (RockSmashRatio > 0) + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 2, SlotType.Rock_Smash)); + else + ofs += 8; + + if (OldRodRatio > 0) + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Old_Rod)); + else + ofs += 20; + + if (GoodRodRatio > 0) + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Good_Rod)); + else + ofs += 20; + + if (SuperRodRatio > 0) + Slots.AddRange(getSlots4HGSS_WFR(data, ref ofs, 5, SlotType.Super_Rod)); + else + ofs += 20; + + if (GrassRatio > 0) + { + // National Radio replaces slots 4 and 5 + Slots.AddRange(getSlots4HGSS_G_Replace(data, ref ofs, 2, GrassSlots, 4, SlotType.Grass)); + } + // 4 bytes padding + + Area4.Slots = Slots.ToArray(); + return Area4; + } + + private static EncounterArea getArea4HGSS_Headbutt(byte[] data) + { + EncounterArea Area4 = new EncounterArea(); + if (data.Length < 78) + { Area4.Location = 0; Area4.Slots = new EncounterSlot[0]; return Area4; } + Area4.Location = BitConverter.ToUInt16(data, 0); + //4 bytes padding + var Slots = new List(); + + // 00-11 Normal trees + // 12-17 Special trees + for (int i = 0; i < 18; i++) + { + int Species = BitConverter.ToUInt16(data, 6 + i * 4); + if (Species > 0) + { + Slots.Add(new EncounterSlot() + { + Species = Species, + LevelMin = data[8 + i * 4], + LevelMax = data[9 + i * 4], + Type = SlotType.Headbutt + }); + } + } + Area4.Slots = Slots.ToArray(); + return Area4; + } + /// /// RBY Format Slot Getter from data. /// @@ -375,6 +833,86 @@ public static EncounterArea[] getArray2_H(byte[] data) return getAreas2_H(data, ref ofs).ToArray(); } + /// + /// Gets the encounter areas with information from Generation 3 data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray3(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea3(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + + /// + /// Gets the encounter areas with information from Generation 4 Diamond, Pearl and Platinum data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray4DPPt(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea4DPPt(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + + /// + /// Gets the encounter areas with information from Generation 4 Hearth Gold and Soul Silver data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray4HGSS(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea4HGSS(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + + /// + /// Gets the encounter areas with information from Generation 4 Hearth Gold and Soul Silver Headbutt tree data. + /// + /// Raw data, one byte array per encounter area + /// Array of encounter areas. + public static EncounterArea[] getArray4HGSS_Headbutt(byte[][] entries) + { + if (entries == null) + return null; + + var Areas = new List(); + for (int i = 0; i < entries.Length; i++) + { + EncounterArea Area = getArea4HGSS_Headbutt(entries[i]); + if (Area.Slots.Any()) + Areas.Add(Area); + } + return Areas.ToArray(); + } + public static EncounterArea[] getArray(byte[][] entries) { if (entries == null) diff --git a/PKHeX/Legality/Structures/EvolutionTree.cs b/PKHeX/Legality/Structures/EvolutionTree.cs index 02afdbb98..f57fa94c1 100644 --- a/PKHeX/Legality/Structures/EvolutionTree.cs +++ b/PKHeX/Legality/Structures/EvolutionTree.cs @@ -25,6 +25,15 @@ public EvolutionTree(byte[][] data, GameVersion game, PersonalTable personal, in case GameVersion.GSC: Entries = EvolutionSet2.getArray(data[0], maxSpeciesTree); break; + case GameVersion.RS: + Entries = EvolutionSet3.getArray(data[0]); + break; + case GameVersion.DP: + Entries = EvolutionSet4.getArray(data[0]); + break; + case GameVersion.BW: + Entries = EvolutionSet5.getArray(data[0]); + break; case GameVersion.ORAS: Entries.AddRange(data.Select(d => new EvolutionSet6(d))); break; @@ -256,6 +265,164 @@ public static List getArray(byte[] data, int maxSpecies) return evos; } } + public class EvolutionSet3 : EvolutionSet + { + private static EvolutionMethod getMethod(byte[] data, int offset) + { + int method = BitConverter.ToUInt16(data, offset + 0); + int arg = BitConverter.ToUInt16(data, offset + 2); + int species = PKX.getG4Species(BitConverter.ToUInt16(data, offset + 4)); + //2 bytes padding + + switch (method) + { + case 1: /* Friendship*/ + case 2: /* Friendship day*/ + case 3: /* Friendship night*/ + case 5: /* Trade */ + case 6: /* Trade while holding */ + return new EvolutionMethod { Method = method, Species = species, Argument = arg }; + case 4: /* Level Up */ + return new EvolutionMethod { Method = 4, Species = species, Level = arg, Argument = arg }; + case 7: /* Use item */ + case 15: /* Beauty evolution*/ + return new EvolutionMethod { Method = method + 1, Species = species, Argument = arg }; + case 8: /* Tyrogue -> Hitmonchan */ + case 9: /* Tyrogue -> Hitmonlee */ + case 10: /* Tyrogue -> Hitmontop*/ + case 11: /* Wurmple -> Silcoon evolution */ + case 12: /* Wurmple -> Cascoon evolution */ + case 13: /* Nincada -> Ninjask evolution */ + case 14: /* Shedinja spawn in Nincada -> Ninjask evolution */ + return new EvolutionMethod { Method = method + 1, Species = species, Level = arg, Argument = arg }; + } + return null; + } + public static List getArray(byte[] data) + { + EvolutionSet[] evos = new EvolutionSet[Legal.MaxSpeciesID_3 + 1]; + evos[0] = new EvolutionSet3 { PossibleEvolutions = new EvolutionMethod[0] }; + for (int i = 0; i <= Legal.MaxSpeciesIndex_3; i++) + { + int g4species = PKX.getG4Species(i); + if (g4species == 0) + continue; + + int offset = i * 40; + var m_list = new List(); + for (int j = 0; j < 5; j++) + { + EvolutionMethod m = getMethod(data, offset); + if(m!=null) + m_list.Add(m); + else + break; + offset += 8; + } + evos[g4species] = new EvolutionSet3 { PossibleEvolutions = m_list.ToArray() }; + } + return evos.ToList(); + } + } + public class EvolutionSet4 : EvolutionSet + { + private static EvolutionMethod getMethod(byte[] data, int offset) + { + int[] argEvos = { 6, 8, 16, 17, 18, 19, 20, 21, 22 }; + int method = BitConverter.ToUInt16(data, offset + 0); + int arg = BitConverter.ToUInt16(data, offset + 2); + int species = BitConverter.ToUInt16(data, offset + 4); + + if (method == 0) + return null; + // To have the same estructure as gen 6 + // Gen 4 Method 6 is Gen 6 Method 7, G4 7 = G6 8, and so on + if (method > 6) + method++; + + var evo = new EvolutionMethod + { + Method = method, + Argument = arg, + Species = species, + Level = arg, + }; + + if (argEvos.Contains(evo.Method)) + evo.Level = 0; + return evo; + } + public static List getArray(byte[] data) + { + var evos = new List(); + for (int i = 0; i <= Legal.MaxSpeciesIndex_4_HGSSPt; i++) + { + /* 44 bytes per species, + * for every species 7 evolutions with 6 bytes per evolution, + * last 2 bytes of every specie is padding*/ + int offset = i * 44; + var m_list = new List(); + for (int j = 0; j < 7; j++) + { + EvolutionMethod m = getMethod(data, offset); + if (m != null) + m_list.Add(m); + else + break; + offset += 6; + } + evos.Add(new EvolutionSet4 { PossibleEvolutions = m_list.ToArray() }); + } + return evos.ToList(); + } + } + public class EvolutionSet5 : EvolutionSet + { + private static EvolutionMethod getMethod(byte[] data, int offset) + { + int[] argEvos = { 6, 8, 16, 17, 18, 19, 20, 21, 22 }; + int method = BitConverter.ToUInt16(data, offset + 0); + int arg = BitConverter.ToUInt16(data, offset + 2); + int species = BitConverter.ToUInt16(data, offset + 4); + + if (method == 0) + return null; + + var evo = new EvolutionMethod + { + Method = method, + Argument = arg, + Species = species, + Level = arg, + }; + + if (argEvos.Contains(evo.Method)) + evo.Level = 0; + return evo; + } + public static List getArray(byte[] data) + { + var evos = new List(); + for (int i = 0; i <= Legal.MaxSpeciesIndex_5_B2W2; i++) + { + /* 42 bytes per species, + * for every species 7 evolutions with 6 bytes per evolution*/ + int offset = i * 42; + var m_list = new List(); + for (int j = 0; j < 7; j++) + { + EvolutionMethod m = getMethod(data, offset); + if (m != null) + m_list.Add(m); + else + break; + offset += 6; + } + evos.Add(new EvolutionSet5 { PossibleEvolutions = m_list.ToArray() }); + } + return evos.ToList(); + } + } public class EvolutionSet6 : EvolutionSet { private const int SIZE = 6; diff --git a/PKHeX/Legality/Structures/SlotType.cs b/PKHeX/Legality/Structures/SlotType.cs index e96316d77..c23e1ed79 100644 --- a/PKHeX/Legality/Structures/SlotType.cs +++ b/PKHeX/Legality/Structures/SlotType.cs @@ -19,5 +19,7 @@ public enum SlotType SOS, Swarm, Headbutt, + Pokeradar, + HoneyTree } } diff --git a/PKHeX/Legality/Tables3.cs b/PKHeX/Legality/Tables3.cs index 5775ee0a1..bacf8d4ae 100644 --- a/PKHeX/Legality/Tables3.cs +++ b/PKHeX/Legality/Tables3.cs @@ -4,6 +4,7 @@ namespace PKHeX.Core { public static partial class Legal { + internal const int MaxSpeciesIndex_3 = 412; internal const int MaxSpeciesID_3 = 386; internal const int MaxMoveID_3 = 354; internal const int MaxItemID_3 = 374; @@ -143,5 +144,83 @@ public static partial class Legal //todo }; + #region AltSlots + private static readonly EncounterArea[] SlotsRSEAlt = + { + new EncounterArea { + Location = 34, // Route 119 + Slots = new[] + { + new EncounterSlot { Species = 349, LevelMin = 20, LevelMax = 25, Type = SlotType.Super_Rod, Form = 25 }, // Feebas + },} + }; + private static readonly EncounterArea[] SlotsFRLGAlt = + { + new EncounterArea { + Location = 188, // Monean Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 0 }, // Unown A + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 26 }, // Unown ? + },}, + new EncounterArea { + Location = 189, // Liptoo Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 2 }, // Unown C + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 3 }, // Unown D + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 7 }, // Unown H + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 14 }, // Unown O + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 20 }, // Unown U + },}, + new EncounterArea { + Location = 190, // Weepth Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 4 }, // Unown E + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 8 }, // Unown I + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 13 }, // Unown N + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 18 }, // Unown S + },}, + new EncounterArea { + Location = 191, // Dilford Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 9 }, // Unown J + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 11 }, // Unown L + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 15 }, // Unown P + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 16 }, // Unown Q + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 17 }, // Unown R + },}, + new EncounterArea { + Location = 192, // Scufib Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 5 }, // Unown F + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 6 }, // Unown G + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 10 }, // Unown K + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 19 }, // Unown T + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 24 }, // Unown Y + },}, + new EncounterArea { + Location = 193, // Rixy Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 1 }, // Unown B + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 12 }, // Unown M + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 21 }, // Unown V + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 22 }, // Unown W + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 23 }, // Unown X + },}, + new EncounterArea { + Location = 193, // Viapois Chamber + Slots = new[] + { + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 25 }, // Unown Z + new EncounterSlot { Species = 201, LevelMin = 25, LevelMax = 25, Type = SlotType.Grass, Form = 27 }, // Unown ! + },} + }; + #endregion + } } diff --git a/PKHeX/Legality/Tables4.cs b/PKHeX/Legality/Tables4.cs index eee107c13..3329d44e9 100644 --- a/PKHeX/Legality/Tables4.cs +++ b/PKHeX/Legality/Tables4.cs @@ -4,6 +4,8 @@ namespace PKHeX.Core { public static partial class Legal { + internal const int MaxSpeciesIndex_4_DP = 500; + internal const int MaxSpeciesIndex_4_HGSSPt = 507; internal const int MaxSpeciesID_4 = 493; internal const int MaxMoveID_4 = 467; internal const int MaxItemID_4_DP = 464; @@ -419,5 +421,141 @@ public static partial class Legal new EncounterTrade { Species = 021, Ability = 1, TID = 01001, SID = 00000, OTGender = 0, Gender = 1, Nature = Nature.Hasty, Level = 20, Location = 183, Moves= new int[]{043,031,228,332}},//Webster's Spearow new EncounterTrade { Species = 213, Ability = 2, TID = 04336, SID = 00000, OTGender = 0, Gender = 1, Nature = Nature.Relaxed, Level = 20, Location = 130, Moves= new int[]{132,117,227,219}},//Kirk's Shuckle }; + + #region Alt Slots + private static readonly EncounterArea[] SlotsDPPPtAlt = + { + new EncounterArea { + Location = 50, // Mount Coronet + Slots = new[] + { + new EncounterSlot { Species = 349, LevelMin = 10, LevelMax = 20, Type = SlotType.Old_Rod }, // Feebas + new EncounterSlot { Species = 349, LevelMin = 10, LevelMax = 20, Type = SlotType.Good_Rod }, // Feebas + new EncounterSlot { Species = 349, LevelMin = 10, LevelMax = 20, Type = SlotType.Super_Rod }, // Feebas + },}, + new EncounterArea { + Location = 53, //Solaceon Ruins + Slots = new[] + { + //new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 0 }, // Unown A + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 1 }, // Unown B + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 2 }, // Unown C + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 3 }, // Unown D + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 4 }, // Unown E + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 5 }, // Unown F + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 6 }, // Unown G + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 7 }, // Unown H + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 8 }, // Unown I + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 9 }, // Unown J + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 10 }, // Unown K + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 11 }, // Unown L + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 12 }, // Unown M + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 13 }, // Unown N + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 14 }, // Unown O + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 15 }, // Unown P + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 16 }, // Unown Q + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 17 }, // Unown R + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 18 }, // Unown S + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 19 }, // Unown T + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 20 }, // Unown U + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 21 }, // Unown V + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 22 }, // Unown W + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 23 }, // Unown X + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 24 }, // Unown Y + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 25 }, // Unown ! + new EncounterSlot { Species = 201, LevelMin = 14, LevelMax = 30, Type = SlotType.Grass, Form = 26 }, // Unown ? + },}, + }; + + private static readonly EncounterArea[] SlotsHGSSAlt = + { + new EncounterArea { + Location = 209, // Ruins of Alph + Slots = new[] + { + //new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 0 }, // Unown A + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 1 }, // Unown B + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 2 }, // Unown C + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 3 }, // Unown D + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 4 }, // Unown E + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 5 }, // Unown F + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 6 }, // Unown G + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 7 }, // Unown H + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 8 }, // Unown I + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 9 }, // Unown J + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 10 }, // Unown K + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 11 }, // Unown L + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 12 }, // Unown M + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 13 }, // Unown N + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 14 }, // Unown O + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 15 }, // Unown P + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 16 }, // Unown Q + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 17 }, // Unown R + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 18 }, // Unown S + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 19 }, // Unown T + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 20 }, // Unown U + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 21 }, // Unown V + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 22 }, // Unown W + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 23 }, // Unown X + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 24 }, // Unown Y + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 25 }, // Unown ! + new EncounterSlot { Species = 201, LevelMin = 5, LevelMax = 5, Type = SlotType.Grass, Form = 26 }, // Unown ? + },}, + }; + + private static readonly EncounterArea SlotsPt_HoneyTree = + new EncounterArea + { + Slots = new[] + { + new EncounterSlot { Species = 190, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Aipom + new EncounterSlot { Species = 214, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Heracross + new EncounterSlot { Species = 265, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Wurmple + new EncounterSlot { Species = 412, LevelMin = 5, LevelMax = 15, Form = 0, Type = SlotType.HoneyTree }, // Burmy Plant Cloak + new EncounterSlot { Species = 415, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Combee + new EncounterSlot { Species = 420, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Cheruby + new EncounterSlot { Species = 446, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Munchlax + }, + }; + + private static readonly EncounterArea SlotsD_HoneyTree = + new EncounterArea { + Slots = SlotsPt_HoneyTree.Slots.Concat( new EncounterSlot[] + { + new EncounterSlot { Species = 266, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Silcoon + }).ToArray() + }; + + private static readonly EncounterArea SlotsP_HoneyTree = + new EncounterArea + { + Slots = SlotsPt_HoneyTree.Slots.Concat(new EncounterSlot[] + { + new EncounterSlot { Species = 268, LevelMin = 5, LevelMax = 15, Type = SlotType.HoneyTree }, // Cascoon + }).ToArray() + }; + + private static readonly int[] HoneyTreesLocation = new int[] + { + 20, // Route 205 + 21, // Route 206 + 22, // Route 207 + 23, // Route 208 + 24, // Route 209 + 25, // Route 210 + 26, // Route 211 + 27, // Route 212 + 28, // Route 213 + 29, // Route 214 + 30, // Route 215 + 33, // Route 218 + 36, // Route 221 + 37, // Route 222 + 47, // Valley Windworks + 49, // Fuego Ironworks + 58, //Floaroma Meadow + }; + + #endregion } } diff --git a/PKHeX/Legality/Tables5.cs b/PKHeX/Legality/Tables5.cs index 5264d5fdd..d0c348700 100644 --- a/PKHeX/Legality/Tables5.cs +++ b/PKHeX/Legality/Tables5.cs @@ -4,6 +4,8 @@ namespace PKHeX.Core { public static partial class Legal { + internal const int MaxSpeciesIndex_5_BW = 667; + internal const int MaxSpeciesIndex_5_B2W2 = 708; internal const int MaxSpeciesID_5 = 649; internal const int MaxMoveID_5 = 559; internal const int MaxItemID_5_BW = 632; diff --git a/PKHeX/PKHeX.Core.csproj b/PKHeX/PKHeX.Core.csproj index 3ce1a863d..54130c2ad 100644 --- a/PKHeX/PKHeX.Core.csproj +++ b/PKHeX/PKHeX.Core.csproj @@ -272,21 +272,36 @@ + + + + + + + + + + + + + + + diff --git a/PKHeX/Properties/Resources.Designer.cs b/PKHeX/Properties/Resources.Designer.cs index 2d029d417..4490613b4 100644 --- a/PKHeX/Properties/Resources.Designer.cs +++ b/PKHeX/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Este código fue generado por una herramienta. +// Versión de runtime:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si +// se vuelve a generar el código. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace PKHeX.Core.Properties { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Clase de recurso fuertemente tipado, para buscar cadenas traducidas, etc. /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. + // StronglyTypedResourceBuilder generó automáticamente esta clase + // a través de una herramienta como ResGen o Visual Studio. + // Para agregar o quitar un miembro, edite el archivo .ResX y, a continuación, vuelva a ejecutar ResGen + // con la opción /str o recompile su proyecto de VS. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ public class Resources { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Devuelve la instancia de ResourceManager almacenada en caché utilizada por esta clase. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ public class Resources { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Reemplaza la propiedad CurrentUICulture del subproceso actual para todas las + /// búsquedas de recursos mediante esta clase de recurso fuertemente tipado. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _0 { get { @@ -71,7 +71,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _1 { get { @@ -81,7 +81,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _10 { get { @@ -91,7 +91,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _100 { get { @@ -101,7 +101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _101 { get { @@ -111,7 +111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _102 { get { @@ -121,7 +121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103 { get { @@ -131,7 +131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103_1 { get { @@ -141,7 +141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _104 { get { @@ -151,7 +151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105 { get { @@ -161,7 +161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105_1 { get { @@ -171,7 +171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _106 { get { @@ -181,7 +181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _107 { get { @@ -191,7 +191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _108 { get { @@ -201,7 +201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _109 { get { @@ -211,7 +211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _11 { get { @@ -221,7 +221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _110 { get { @@ -231,7 +231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _111 { get { @@ -241,7 +241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _112 { get { @@ -251,7 +251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _113 { get { @@ -261,7 +261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _114 { get { @@ -271,7 +271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115 { get { @@ -281,7 +281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115_1 { get { @@ -291,7 +291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _116 { get { @@ -301,7 +301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _117 { get { @@ -311,7 +311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _118 { get { @@ -321,7 +321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _119 { get { @@ -331,7 +331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _12 { get { @@ -341,7 +341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _120 { get { @@ -351,7 +351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _121 { get { @@ -361,7 +361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _122 { get { @@ -371,7 +371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _123 { get { @@ -381,7 +381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _124 { get { @@ -391,7 +391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _125 { get { @@ -401,7 +401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _126 { get { @@ -411,7 +411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127 { get { @@ -421,7 +421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127_1 { get { @@ -431,7 +431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _128 { get { @@ -441,7 +441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _129 { get { @@ -451,7 +451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _13 { get { @@ -461,7 +461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130 { get { @@ -471,7 +471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130_1 { get { @@ -481,7 +481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _131 { get { @@ -491,7 +491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _132 { get { @@ -501,7 +501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _133 { get { @@ -511,7 +511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _134 { get { @@ -521,7 +521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _135 { get { @@ -531,7 +531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _136 { get { @@ -541,7 +541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _137 { get { @@ -551,7 +551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _138 { get { @@ -561,7 +561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _139 { get { @@ -571,7 +571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _14 { get { @@ -581,7 +581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _140 { get { @@ -591,7 +591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _141 { get { @@ -601,7 +601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142 { get { @@ -611,7 +611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142_1 { get { @@ -621,7 +621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _143 { get { @@ -631,7 +631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _144 { get { @@ -641,7 +641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _145 { get { @@ -651,7 +651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _146 { get { @@ -661,7 +661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _147 { get { @@ -671,7 +671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _148 { get { @@ -681,7 +681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _149 { get { @@ -691,7 +691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15 { get { @@ -701,7 +701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15_1 { get { @@ -711,7 +711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150 { get { @@ -721,7 +721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_1 { get { @@ -731,7 +731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_2 { get { @@ -741,7 +741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _151 { get { @@ -751,7 +751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _152 { get { @@ -761,7 +761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _153 { get { @@ -771,7 +771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _154 { get { @@ -781,7 +781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _155 { get { @@ -791,7 +791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _156 { get { @@ -801,7 +801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _157 { get { @@ -811,7 +811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _158 { get { @@ -821,7 +821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _159 { get { @@ -831,7 +831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _16 { get { @@ -841,7 +841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _160 { get { @@ -851,7 +851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _161 { get { @@ -861,7 +861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _162 { get { @@ -871,7 +871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _163 { get { @@ -881,7 +881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _164 { get { @@ -891,7 +891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _165 { get { @@ -901,7 +901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _166 { get { @@ -911,7 +911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _167 { get { @@ -921,7 +921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _168 { get { @@ -931,7 +931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _169 { get { @@ -941,7 +941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _17 { get { @@ -951,7 +951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _170 { get { @@ -961,7 +961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _171 { get { @@ -971,7 +971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172 { get { @@ -981,7 +981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172_1 { get { @@ -991,7 +991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _173 { get { @@ -1001,7 +1001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _174 { get { @@ -1011,7 +1011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _175 { get { @@ -1021,7 +1021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _176 { get { @@ -1031,7 +1031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _177 { get { @@ -1041,7 +1041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _178 { get { @@ -1051,7 +1051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _179 { get { @@ -1061,7 +1061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18 { get { @@ -1071,7 +1071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18_1 { get { @@ -1081,7 +1081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _180 { get { @@ -1091,7 +1091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181 { get { @@ -1101,7 +1101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181_1 { get { @@ -1111,7 +1111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _182 { get { @@ -1121,7 +1121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _183 { get { @@ -1131,7 +1131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _184 { get { @@ -1141,7 +1141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _185 { get { @@ -1151,7 +1151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _186 { get { @@ -1161,7 +1161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _187 { get { @@ -1171,7 +1171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _188 { get { @@ -1181,7 +1181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _189 { get { @@ -1191,7 +1191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19 { get { @@ -1201,7 +1201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19_1 { get { @@ -1211,7 +1211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _190 { get { @@ -1221,7 +1221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _191 { get { @@ -1231,7 +1231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _192 { get { @@ -1241,7 +1241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _193 { get { @@ -1251,7 +1251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _194 { get { @@ -1261,7 +1261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _195 { get { @@ -1271,7 +1271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _196 { get { @@ -1281,7 +1281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _197 { get { @@ -1291,7 +1291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _198 { get { @@ -1301,7 +1301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _199 { get { @@ -1311,7 +1311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _2 { get { @@ -1321,7 +1321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20 { get { @@ -1331,7 +1331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20_1 { get { @@ -1341,7 +1341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _200 { get { @@ -1351,7 +1351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201 { get { @@ -1361,7 +1361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_1 { get { @@ -1371,7 +1371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_10 { get { @@ -1381,7 +1381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_11 { get { @@ -1391,7 +1391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_12 { get { @@ -1401,7 +1401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_13 { get { @@ -1411,7 +1411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_14 { get { @@ -1421,7 +1421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_15 { get { @@ -1431,7 +1431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_16 { get { @@ -1441,7 +1441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_17 { get { @@ -1451,7 +1451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_18 { get { @@ -1461,7 +1461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_19 { get { @@ -1471,7 +1471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_2 { get { @@ -1481,7 +1481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_20 { get { @@ -1491,7 +1491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_21 { get { @@ -1501,7 +1501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_22 { get { @@ -1511,7 +1511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_23 { get { @@ -1521,7 +1521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_24 { get { @@ -1531,7 +1531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_25 { get { @@ -1541,7 +1541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_26 { get { @@ -1551,7 +1551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_27 { get { @@ -1561,7 +1561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_3 { get { @@ -1571,7 +1571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_4 { get { @@ -1581,7 +1581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_5 { get { @@ -1591,7 +1591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_6 { get { @@ -1601,7 +1601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_7 { get { @@ -1611,7 +1611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_8 { get { @@ -1621,7 +1621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_9 { get { @@ -1631,7 +1631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _202 { get { @@ -1641,7 +1641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _203 { get { @@ -1651,7 +1651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _204 { get { @@ -1661,7 +1661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _205 { get { @@ -1671,7 +1671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _206 { get { @@ -1681,7 +1681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _207 { get { @@ -1691,7 +1691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208 { get { @@ -1701,7 +1701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208_1 { get { @@ -1711,7 +1711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _209 { get { @@ -1721,7 +1721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _21 { get { @@ -1731,7 +1731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _210 { get { @@ -1741,7 +1741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _211 { get { @@ -1751,7 +1751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212 { get { @@ -1761,7 +1761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212_1 { get { @@ -1771,7 +1771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _213 { get { @@ -1781,7 +1781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214 { get { @@ -1791,7 +1791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214_1 { get { @@ -1801,7 +1801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _215 { get { @@ -1811,7 +1811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _216 { get { @@ -1821,7 +1821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _217 { get { @@ -1831,7 +1831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _218 { get { @@ -1841,7 +1841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _219 { get { @@ -1851,7 +1851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _22 { get { @@ -1861,7 +1861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _220 { get { @@ -1871,7 +1871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _221 { get { @@ -1881,7 +1881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _222 { get { @@ -1891,7 +1891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _223 { get { @@ -1901,7 +1901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _224 { get { @@ -1911,7 +1911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _225 { get { @@ -1921,7 +1921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _226 { get { @@ -1931,7 +1931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _227 { get { @@ -1941,7 +1941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _228 { get { @@ -1951,7 +1951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229 { get { @@ -1961,7 +1961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229_1 { get { @@ -1971,7 +1971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _23 { get { @@ -1981,7 +1981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _230 { get { @@ -1991,7 +1991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _231 { get { @@ -2001,7 +2001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _232 { get { @@ -2011,7 +2011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _233 { get { @@ -2021,7 +2021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _234 { get { @@ -2031,7 +2031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _235 { get { @@ -2041,7 +2041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _236 { get { @@ -2051,7 +2051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _237 { get { @@ -2061,7 +2061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _238 { get { @@ -2071,7 +2071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _239 { get { @@ -2081,7 +2081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _24 { get { @@ -2091,7 +2091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _240 { get { @@ -2101,7 +2101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _241 { get { @@ -2111,7 +2111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _242 { get { @@ -2121,7 +2121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _243 { get { @@ -2131,7 +2131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _244 { get { @@ -2141,7 +2141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _245 { get { @@ -2151,7 +2151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _246 { get { @@ -2161,7 +2161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _247 { get { @@ -2171,7 +2171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248 { get { @@ -2181,7 +2181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248_1 { get { @@ -2191,7 +2191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _249 { get { @@ -2201,7 +2201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25 { get { @@ -2211,7 +2211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1 { get { @@ -2221,7 +2221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1c { get { @@ -2231,7 +2231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2 { get { @@ -2241,7 +2241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2c { get { @@ -2251,7 +2251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3 { get { @@ -2261,7 +2261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3c { get { @@ -2271,7 +2271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4 { get { @@ -2281,7 +2281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4c { get { @@ -2291,7 +2291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5 { get { @@ -2301,7 +2301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5c { get { @@ -2311,7 +2311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6 { get { @@ -2321,7 +2321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6c { get { @@ -2331,7 +2331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _250 { get { @@ -2341,7 +2341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _251 { get { @@ -2351,7 +2351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _252 { get { @@ -2361,7 +2361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _253 { get { @@ -2371,7 +2371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254 { get { @@ -2381,7 +2381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254_1 { get { @@ -2391,7 +2391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _255 { get { @@ -2401,7 +2401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _256 { get { @@ -2411,7 +2411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257 { get { @@ -2421,7 +2421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257_1 { get { @@ -2431,7 +2431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _258 { get { @@ -2441,7 +2441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _259 { get { @@ -2451,7 +2451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26 { get { @@ -2461,7 +2461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26_1 { get { @@ -2471,7 +2471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260 { get { @@ -2481,7 +2481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260_1 { get { @@ -2491,7 +2491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _261 { get { @@ -2501,7 +2501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _262 { get { @@ -2511,7 +2511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _263 { get { @@ -2521,7 +2521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _264 { get { @@ -2531,7 +2531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _265 { get { @@ -2541,7 +2541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _266 { get { @@ -2551,7 +2551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _267 { get { @@ -2561,7 +2561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _268 { get { @@ -2571,7 +2571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _269 { get { @@ -2581,7 +2581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27 { get { @@ -2591,7 +2591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27_1 { get { @@ -2601,7 +2601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _270 { get { @@ -2611,7 +2611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _271 { get { @@ -2621,7 +2621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _272 { get { @@ -2631,7 +2631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _273 { get { @@ -2641,7 +2641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _274 { get { @@ -2651,7 +2651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _275 { get { @@ -2661,7 +2661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _276 { get { @@ -2671,7 +2671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _277 { get { @@ -2681,7 +2681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _278 { get { @@ -2691,7 +2691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _279 { get { @@ -2701,7 +2701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28 { get { @@ -2711,7 +2711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28_1 { get { @@ -2721,7 +2721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _280 { get { @@ -2731,7 +2731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _281 { get { @@ -2741,7 +2741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282 { get { @@ -2751,7 +2751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282_1 { get { @@ -2761,7 +2761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _283 { get { @@ -2771,7 +2771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _284 { get { @@ -2781,7 +2781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _285 { get { @@ -2791,7 +2791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _286 { get { @@ -2801,7 +2801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _287 { get { @@ -2811,7 +2811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _288 { get { @@ -2821,7 +2821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _289 { get { @@ -2831,7 +2831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _29 { get { @@ -2841,7 +2841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _290 { get { @@ -2851,7 +2851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _291 { get { @@ -2861,7 +2861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _292 { get { @@ -2871,7 +2871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _293 { get { @@ -2881,7 +2881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _294 { get { @@ -2891,7 +2891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _295 { get { @@ -2901,7 +2901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _296 { get { @@ -2911,7 +2911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _297 { get { @@ -2921,7 +2921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _298 { get { @@ -2931,7 +2931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _299 { get { @@ -2941,7 +2941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3 { get { @@ -2951,7 +2951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3_1 { get { @@ -2961,7 +2961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _30 { get { @@ -2971,7 +2971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _300 { get { @@ -2981,7 +2981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _301 { get { @@ -2991,7 +2991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302 { get { @@ -3001,7 +3001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302_1 { get { @@ -3011,7 +3011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303 { get { @@ -3021,7 +3021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303_1 { get { @@ -3031,7 +3031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _304 { get { @@ -3041,7 +3041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _305 { get { @@ -3051,7 +3051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306 { get { @@ -3061,7 +3061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306_1 { get { @@ -3071,7 +3071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _307 { get { @@ -3081,7 +3081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308 { get { @@ -3091,7 +3091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308_1 { get { @@ -3101,7 +3101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _309 { get { @@ -3111,7 +3111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _31 { get { @@ -3121,7 +3121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310 { get { @@ -3131,7 +3131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310_1 { get { @@ -3141,7 +3141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _311 { get { @@ -3151,7 +3151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _312 { get { @@ -3161,7 +3161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _313 { get { @@ -3171,7 +3171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _314 { get { @@ -3181,7 +3181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _315 { get { @@ -3191,7 +3191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _316 { get { @@ -3201,7 +3201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _317 { get { @@ -3211,7 +3211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _318 { get { @@ -3221,7 +3221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319 { get { @@ -3231,7 +3231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319_1 { get { @@ -3241,7 +3241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _32 { get { @@ -3251,7 +3251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _320 { get { @@ -3261,7 +3261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _321 { get { @@ -3271,7 +3271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _322 { get { @@ -3281,7 +3281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323 { get { @@ -3291,7 +3291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323_1 { get { @@ -3301,7 +3301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _324 { get { @@ -3311,7 +3311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _325 { get { @@ -3321,7 +3321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _326 { get { @@ -3331,7 +3331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _327 { get { @@ -3341,7 +3341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _328 { get { @@ -3351,7 +3351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _329 { get { @@ -3361,7 +3361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _33 { get { @@ -3371,7 +3371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _330 { get { @@ -3381,7 +3381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _331 { get { @@ -3391,7 +3391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _332 { get { @@ -3401,7 +3401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _333 { get { @@ -3411,7 +3411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334 { get { @@ -3421,7 +3421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334_1 { get { @@ -3431,7 +3431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _335 { get { @@ -3441,7 +3441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _336 { get { @@ -3451,7 +3451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _337 { get { @@ -3461,7 +3461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _338 { get { @@ -3471,7 +3471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _339 { get { @@ -3481,7 +3481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _34 { get { @@ -3491,7 +3491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _340 { get { @@ -3501,7 +3501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _341 { get { @@ -3511,7 +3511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _342 { get { @@ -3521,7 +3521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _343 { get { @@ -3531,7 +3531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _344 { get { @@ -3541,7 +3541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _345 { get { @@ -3551,7 +3551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _346 { get { @@ -3561,7 +3561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _347 { get { @@ -3571,7 +3571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _348 { get { @@ -3581,7 +3581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _349 { get { @@ -3591,7 +3591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _35 { get { @@ -3601,7 +3601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _350 { get { @@ -3611,7 +3611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351 { get { @@ -3621,7 +3621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_1 { get { @@ -3631,7 +3631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_2 { get { @@ -3641,7 +3641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_3 { get { @@ -3651,7 +3651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _352 { get { @@ -3661,7 +3661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _353 { get { @@ -3671,7 +3671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354 { get { @@ -3681,7 +3681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354_1 { get { @@ -3691,7 +3691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _355 { get { @@ -3701,7 +3701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _356 { get { @@ -3711,7 +3711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _357 { get { @@ -3721,7 +3721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _358 { get { @@ -3731,7 +3731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359 { get { @@ -3741,7 +3741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359_1 { get { @@ -3751,7 +3751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _36 { get { @@ -3761,7 +3761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _360 { get { @@ -3771,7 +3771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _361 { get { @@ -3781,7 +3781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362 { get { @@ -3791,7 +3791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362_1 { get { @@ -3801,7 +3801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _363 { get { @@ -3811,7 +3811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _364 { get { @@ -3821,7 +3821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _365 { get { @@ -3831,7 +3831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _366 { get { @@ -3841,7 +3841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _367 { get { @@ -3851,7 +3851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _368 { get { @@ -3861,7 +3861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _369 { get { @@ -3871,7 +3871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37 { get { @@ -3881,7 +3881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37_1 { get { @@ -3891,7 +3891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _370 { get { @@ -3901,7 +3901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _371 { get { @@ -3911,7 +3911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _372 { get { @@ -3921,7 +3921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373 { get { @@ -3931,7 +3931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373_1 { get { @@ -3941,7 +3941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _374 { get { @@ -3951,7 +3951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _375 { get { @@ -3961,7 +3961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376 { get { @@ -3971,7 +3971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376_1 { get { @@ -3981,7 +3981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _377 { get { @@ -3991,7 +3991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _378 { get { @@ -4001,7 +4001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _379 { get { @@ -4011,7 +4011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38 { get { @@ -4021,7 +4021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38_1 { get { @@ -4031,7 +4031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380 { get { @@ -4041,7 +4041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380_1 { get { @@ -4051,7 +4051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381 { get { @@ -4061,7 +4061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381_1 { get { @@ -4071,7 +4071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382 { get { @@ -4081,7 +4081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382_1 { get { @@ -4091,7 +4091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383 { get { @@ -4101,7 +4101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383_1 { get { @@ -4111,7 +4111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384 { get { @@ -4121,7 +4121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384_1 { get { @@ -4131,7 +4131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _385 { get { @@ -4141,7 +4141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386 { get { @@ -4151,7 +4151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_1 { get { @@ -4161,7 +4161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_2 { get { @@ -4171,7 +4171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_3 { get { @@ -4181,7 +4181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _387 { get { @@ -4191,7 +4191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _388 { get { @@ -4201,7 +4201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _389 { get { @@ -4211,7 +4211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _39 { get { @@ -4221,7 +4221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _390 { get { @@ -4231,7 +4231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _391 { get { @@ -4241,7 +4241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _392 { get { @@ -4251,7 +4251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _393 { get { @@ -4261,7 +4261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _394 { get { @@ -4271,7 +4271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _395 { get { @@ -4281,7 +4281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _396 { get { @@ -4291,7 +4291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _397 { get { @@ -4301,7 +4301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _398 { get { @@ -4311,7 +4311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _399 { get { @@ -4321,7 +4321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _4 { get { @@ -4331,7 +4331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _40 { get { @@ -4341,7 +4341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _400 { get { @@ -4351,7 +4351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _401 { get { @@ -4361,7 +4361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _402 { get { @@ -4371,7 +4371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _403 { get { @@ -4381,7 +4381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _404 { get { @@ -4391,7 +4391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _405 { get { @@ -4401,7 +4401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _406 { get { @@ -4411,7 +4411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _407 { get { @@ -4421,7 +4421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _408 { get { @@ -4431,7 +4431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _409 { get { @@ -4441,7 +4441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _41 { get { @@ -4451,7 +4451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _410 { get { @@ -4461,7 +4461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _411 { get { @@ -4471,7 +4471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412 { get { @@ -4481,7 +4481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_1 { get { @@ -4491,7 +4491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_2 { get { @@ -4501,7 +4501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413 { get { @@ -4511,7 +4511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_1 { get { @@ -4521,7 +4521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_2 { get { @@ -4531,7 +4531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _414 { get { @@ -4541,7 +4541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _415 { get { @@ -4551,7 +4551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _416 { get { @@ -4561,7 +4561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _417 { get { @@ -4571,7 +4571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _418 { get { @@ -4581,7 +4581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _419 { get { @@ -4591,7 +4591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _42 { get { @@ -4601,7 +4601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _420 { get { @@ -4611,7 +4611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421 { get { @@ -4621,7 +4621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421_1 { get { @@ -4631,7 +4631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422 { get { @@ -4641,7 +4641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422_1 { get { @@ -4651,7 +4651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423 { get { @@ -4661,7 +4661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423_1 { get { @@ -4671,7 +4671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _424 { get { @@ -4681,7 +4681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _425 { get { @@ -4691,7 +4691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _426 { get { @@ -4701,7 +4701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _427 { get { @@ -4711,7 +4711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428 { get { @@ -4721,7 +4721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428_1 { get { @@ -4731,7 +4731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _429 { get { @@ -4741,7 +4741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _43 { get { @@ -4751,7 +4751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _430 { get { @@ -4761,7 +4761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _431 { get { @@ -4771,7 +4771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _432 { get { @@ -4781,7 +4781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _433 { get { @@ -4791,7 +4791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _434 { get { @@ -4801,7 +4801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _435 { get { @@ -4811,7 +4811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _436 { get { @@ -4821,7 +4821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _437 { get { @@ -4831,7 +4831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _438 { get { @@ -4841,7 +4841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _439 { get { @@ -4851,7 +4851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _44 { get { @@ -4861,7 +4861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _440 { get { @@ -4871,7 +4871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _441 { get { @@ -4881,7 +4881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _442 { get { @@ -4891,7 +4891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _443 { get { @@ -4901,7 +4901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _444 { get { @@ -4911,7 +4911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445 { get { @@ -4921,7 +4921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445_1 { get { @@ -4931,7 +4931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _446 { get { @@ -4941,7 +4941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _447 { get { @@ -4951,7 +4951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448 { get { @@ -4961,7 +4961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448_1 { get { @@ -4971,7 +4971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _449 { get { @@ -4981,7 +4981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _45 { get { @@ -4991,7 +4991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _450 { get { @@ -5001,7 +5001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _451 { get { @@ -5011,7 +5011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _452 { get { @@ -5021,7 +5021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _453 { get { @@ -5031,7 +5031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _454 { get { @@ -5041,7 +5041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _455 { get { @@ -5051,7 +5051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _456 { get { @@ -5061,7 +5061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _457 { get { @@ -5071,7 +5071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _458 { get { @@ -5081,7 +5081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _459 { get { @@ -5091,7 +5091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _46 { get { @@ -5101,7 +5101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460 { get { @@ -5111,7 +5111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460_1 { get { @@ -5121,7 +5121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _461 { get { @@ -5131,7 +5131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _462 { get { @@ -5141,7 +5141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _463 { get { @@ -5151,7 +5151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _464 { get { @@ -5161,7 +5161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _465 { get { @@ -5171,7 +5171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _466 { get { @@ -5181,7 +5181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _467 { get { @@ -5191,7 +5191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _468 { get { @@ -5201,7 +5201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _469 { get { @@ -5211,7 +5211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _47 { get { @@ -5221,7 +5221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _470 { get { @@ -5231,7 +5231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _471 { get { @@ -5241,7 +5241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _472 { get { @@ -5251,7 +5251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _473 { get { @@ -5261,7 +5261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _474 { get { @@ -5271,7 +5271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475 { get { @@ -5281,7 +5281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475_1 { get { @@ -5291,7 +5291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _476 { get { @@ -5301,7 +5301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _477 { get { @@ -5311,7 +5311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _478 { get { @@ -5321,7 +5321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479 { get { @@ -5331,7 +5331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_1 { get { @@ -5341,7 +5341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_2 { get { @@ -5351,7 +5351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_3 { get { @@ -5361,7 +5361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_4 { get { @@ -5371,7 +5371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_5 { get { @@ -5381,7 +5381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _48 { get { @@ -5391,7 +5391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _480 { get { @@ -5401,7 +5401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _481 { get { @@ -5411,7 +5411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _482 { get { @@ -5421,7 +5421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _483 { get { @@ -5431,7 +5431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _484 { get { @@ -5441,7 +5441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _485 { get { @@ -5451,7 +5451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _486 { get { @@ -5461,7 +5461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487 { get { @@ -5471,7 +5471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487_1 { get { @@ -5481,7 +5481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _488 { get { @@ -5491,7 +5491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _489 { get { @@ -5501,7 +5501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _49 { get { @@ -5511,7 +5511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _490 { get { @@ -5521,7 +5521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _491 { get { @@ -5531,7 +5531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492 { get { @@ -5541,7 +5541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492_1 { get { @@ -5551,7 +5551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _493 { get { @@ -5561,7 +5561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _494 { get { @@ -5571,7 +5571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _495 { get { @@ -5581,7 +5581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _496 { get { @@ -5591,7 +5591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _497 { get { @@ -5601,7 +5601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _498 { get { @@ -5611,7 +5611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _499 { get { @@ -5621,7 +5621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _5 { get { @@ -5631,7 +5631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50 { get { @@ -5641,7 +5641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50_1 { get { @@ -5651,7 +5651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _500 { get { @@ -5661,7 +5661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _501 { get { @@ -5671,7 +5671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _502 { get { @@ -5681,7 +5681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _503 { get { @@ -5691,7 +5691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _504 { get { @@ -5701,7 +5701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _505 { get { @@ -5711,7 +5711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _506 { get { @@ -5721,7 +5721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _507 { get { @@ -5731,7 +5731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _508 { get { @@ -5741,7 +5741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _509 { get { @@ -5751,7 +5751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51 { get { @@ -5761,7 +5761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51_1 { get { @@ -5771,7 +5771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _510 { get { @@ -5781,7 +5781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _511 { get { @@ -5791,7 +5791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _512 { get { @@ -5801,7 +5801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _513 { get { @@ -5811,7 +5811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _514 { get { @@ -5821,7 +5821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _515 { get { @@ -5831,7 +5831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _516 { get { @@ -5841,7 +5841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _517 { get { @@ -5851,7 +5851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _518 { get { @@ -5861,7 +5861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _519 { get { @@ -5871,7 +5871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52 { get { @@ -5881,7 +5881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52_1 { get { @@ -5891,7 +5891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _520 { get { @@ -5901,7 +5901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521 { get { @@ -5911,7 +5911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521_1 { get { @@ -5921,7 +5921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _522 { get { @@ -5931,7 +5931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _523 { get { @@ -5941,7 +5941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _524 { get { @@ -5951,7 +5951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _525 { get { @@ -5961,7 +5961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _526 { get { @@ -5971,7 +5971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _527 { get { @@ -5981,7 +5981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _528 { get { @@ -5991,7 +5991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _529 { get { @@ -6001,7 +6001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53 { get { @@ -6011,7 +6011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53_1 { get { @@ -6021,7 +6021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _530 { get { @@ -6031,7 +6031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531 { get { @@ -6041,7 +6041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531_1 { get { @@ -6051,7 +6051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _532 { get { @@ -6061,7 +6061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _533 { get { @@ -6071,7 +6071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _534 { get { @@ -6081,7 +6081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _535 { get { @@ -6091,7 +6091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _536 { get { @@ -6101,7 +6101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _537 { get { @@ -6111,7 +6111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _538 { get { @@ -6121,7 +6121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _539 { get { @@ -6131,7 +6131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _54 { get { @@ -6141,7 +6141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _540 { get { @@ -6151,7 +6151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _541 { get { @@ -6161,7 +6161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _542 { get { @@ -6171,7 +6171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _543 { get { @@ -6181,7 +6181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _544 { get { @@ -6191,7 +6191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _545 { get { @@ -6201,7 +6201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _546 { get { @@ -6211,7 +6211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _547 { get { @@ -6221,7 +6221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _548 { get { @@ -6231,7 +6231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _549 { get { @@ -6241,7 +6241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _55 { get { @@ -6251,7 +6251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550 { get { @@ -6261,7 +6261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550_1 { get { @@ -6271,7 +6271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _551 { get { @@ -6281,7 +6281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _552 { get { @@ -6291,7 +6291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _553 { get { @@ -6301,7 +6301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _554 { get { @@ -6311,7 +6311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555 { get { @@ -6321,7 +6321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555_1 { get { @@ -6331,7 +6331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _556 { get { @@ -6341,7 +6341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _557 { get { @@ -6351,7 +6351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _558 { get { @@ -6361,7 +6361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _559 { get { @@ -6371,7 +6371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _56 { get { @@ -6381,7 +6381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _560 { get { @@ -6391,7 +6391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _561 { get { @@ -6401,7 +6401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _562 { get { @@ -6411,7 +6411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _563 { get { @@ -6421,7 +6421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _564 { get { @@ -6431,7 +6431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _565 { get { @@ -6441,7 +6441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _566 { get { @@ -6451,7 +6451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _567 { get { @@ -6461,7 +6461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _568 { get { @@ -6471,7 +6471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _569 { get { @@ -6481,7 +6481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _57 { get { @@ -6491,7 +6491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _570 { get { @@ -6501,7 +6501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _571 { get { @@ -6511,7 +6511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _572 { get { @@ -6521,7 +6521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _573 { get { @@ -6531,7 +6531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _574 { get { @@ -6541,7 +6541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _575 { get { @@ -6551,7 +6551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _576 { get { @@ -6561,7 +6561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _577 { get { @@ -6571,7 +6571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _578 { get { @@ -6581,7 +6581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _579 { get { @@ -6591,7 +6591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _58 { get { @@ -6601,7 +6601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _580 { get { @@ -6611,7 +6611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _581 { get { @@ -6621,7 +6621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _582 { get { @@ -6631,7 +6631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _583 { get { @@ -6641,7 +6641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _584 { get { @@ -6651,7 +6651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585 { get { @@ -6661,7 +6661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_1 { get { @@ -6671,7 +6671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_2 { get { @@ -6681,7 +6681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_3 { get { @@ -6691,7 +6691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586 { get { @@ -6701,7 +6701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_1 { get { @@ -6711,7 +6711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_2 { get { @@ -6721,7 +6721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_3 { get { @@ -6731,7 +6731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _587 { get { @@ -6741,7 +6741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _588 { get { @@ -6751,7 +6751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _589 { get { @@ -6761,7 +6761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _59 { get { @@ -6771,7 +6771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _590 { get { @@ -6781,7 +6781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _591 { get { @@ -6791,7 +6791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592 { get { @@ -6801,7 +6801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592_1 { get { @@ -6811,7 +6811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593 { get { @@ -6821,7 +6821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593_1 { get { @@ -6831,7 +6831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _594 { get { @@ -6841,7 +6841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _595 { get { @@ -6851,7 +6851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _596 { get { @@ -6861,7 +6861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _597 { get { @@ -6871,7 +6871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _598 { get { @@ -6881,7 +6881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _599 { get { @@ -6891,7 +6891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6 { get { @@ -6901,7 +6901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_1 { get { @@ -6911,7 +6911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_2 { get { @@ -6921,7 +6921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _60 { get { @@ -6931,7 +6931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _600 { get { @@ -6941,7 +6941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _601 { get { @@ -6951,7 +6951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _602 { get { @@ -6961,7 +6961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _603 { get { @@ -6971,7 +6971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _604 { get { @@ -6981,7 +6981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _605 { get { @@ -6991,7 +6991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _606 { get { @@ -7001,7 +7001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _607 { get { @@ -7011,7 +7011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _608 { get { @@ -7021,7 +7021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _609 { get { @@ -7031,7 +7031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _61 { get { @@ -7041,7 +7041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _610 { get { @@ -7051,7 +7051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _611 { get { @@ -7061,7 +7061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _612 { get { @@ -7071,7 +7071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _613 { get { @@ -7081,7 +7081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _614 { get { @@ -7091,7 +7091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _615 { get { @@ -7101,7 +7101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _616 { get { @@ -7111,7 +7111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _617 { get { @@ -7121,7 +7121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _618 { get { @@ -7131,7 +7131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _619 { get { @@ -7141,7 +7141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _62 { get { @@ -7151,7 +7151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _620 { get { @@ -7161,7 +7161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _621 { get { @@ -7171,7 +7171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _622 { get { @@ -7181,7 +7181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _623 { get { @@ -7191,7 +7191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _624 { get { @@ -7201,7 +7201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _625 { get { @@ -7211,7 +7211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _626 { get { @@ -7221,7 +7221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _627 { get { @@ -7231,7 +7231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _628 { get { @@ -7241,7 +7241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _629 { get { @@ -7251,7 +7251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _63 { get { @@ -7261,7 +7261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _630 { get { @@ -7271,7 +7271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _631 { get { @@ -7281,7 +7281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _632 { get { @@ -7291,7 +7291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _633 { get { @@ -7301,7 +7301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _634 { get { @@ -7311,7 +7311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _635 { get { @@ -7321,7 +7321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _636 { get { @@ -7331,7 +7331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _637 { get { @@ -7341,7 +7341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _638 { get { @@ -7351,7 +7351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _639 { get { @@ -7361,7 +7361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _64 { get { @@ -7371,7 +7371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _640 { get { @@ -7381,7 +7381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641 { get { @@ -7391,7 +7391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641_1 { get { @@ -7401,7 +7401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642 { get { @@ -7411,7 +7411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642_1 { get { @@ -7421,7 +7421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _643 { get { @@ -7431,7 +7431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _644 { get { @@ -7441,7 +7441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645 { get { @@ -7451,7 +7451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645_1 { get { @@ -7461,7 +7461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646 { get { @@ -7471,7 +7471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_1 { get { @@ -7481,7 +7481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_2 { get { @@ -7491,7 +7491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647 { get { @@ -7501,7 +7501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647_1 { get { @@ -7511,7 +7511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648 { get { @@ -7521,7 +7521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648_1 { get { @@ -7531,7 +7531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649 { get { @@ -7541,7 +7541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_1 { get { @@ -7551,7 +7551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_2 { get { @@ -7561,7 +7561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_3 { get { @@ -7571,7 +7571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_4 { get { @@ -7581,7 +7581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65 { get { @@ -7591,7 +7591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65_1 { get { @@ -7601,7 +7601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _650 { get { @@ -7611,7 +7611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _651 { get { @@ -7621,7 +7621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _652 { get { @@ -7631,7 +7631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _653 { get { @@ -7641,7 +7641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _654 { get { @@ -7651,7 +7651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _655 { get { @@ -7661,7 +7661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _656 { get { @@ -7671,7 +7671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _657 { get { @@ -7681,7 +7681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658 { get { @@ -7691,7 +7691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_1 { get { @@ -7701,7 +7701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_2 { get { @@ -7711,7 +7711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _659 { get { @@ -7721,7 +7721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _66 { get { @@ -7731,7 +7731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _660 { get { @@ -7741,7 +7741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _661 { get { @@ -7751,7 +7751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _662 { get { @@ -7761,7 +7761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _663 { get { @@ -7771,7 +7771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _664 { get { @@ -7781,7 +7781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _665 { get { @@ -7791,7 +7791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666 { get { @@ -7801,7 +7801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_1 { get { @@ -7811,7 +7811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_10 { get { @@ -7821,7 +7821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_11 { get { @@ -7831,7 +7831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_12 { get { @@ -7841,7 +7841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_13 { get { @@ -7851,7 +7851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_14 { get { @@ -7861,7 +7861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_15 { get { @@ -7871,7 +7871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_16 { get { @@ -7881,7 +7881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_17 { get { @@ -7891,7 +7891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_18 { get { @@ -7901,7 +7901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_19 { get { @@ -7911,7 +7911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_2 { get { @@ -7921,7 +7921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_3 { get { @@ -7931,7 +7931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_4 { get { @@ -7941,7 +7941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_5 { get { @@ -7951,7 +7951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_6 { get { @@ -7961,7 +7961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_7 { get { @@ -7971,7 +7971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_8 { get { @@ -7981,7 +7981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_9 { get { @@ -7991,7 +7991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _667 { get { @@ -8001,7 +8001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668 { get { @@ -8011,7 +8011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668_1 { get { @@ -8021,7 +8021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669 { get { @@ -8031,7 +8031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_1 { get { @@ -8041,7 +8041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_2 { get { @@ -8051,7 +8051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_3 { get { @@ -8061,7 +8061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_4 { get { @@ -8071,7 +8071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _67 { get { @@ -8081,7 +8081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670 { get { @@ -8091,7 +8091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_1 { get { @@ -8101,7 +8101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_2 { get { @@ -8111,7 +8111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_3 { get { @@ -8121,7 +8121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_4 { get { @@ -8131,7 +8131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_5 { get { @@ -8141,7 +8141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671 { get { @@ -8151,7 +8151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_1 { get { @@ -8161,7 +8161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_2 { get { @@ -8171,7 +8171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_3 { get { @@ -8181,7 +8181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_4 { get { @@ -8191,7 +8191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _672 { get { @@ -8201,7 +8201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _673 { get { @@ -8211,7 +8211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _674 { get { @@ -8221,7 +8221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _675 { get { @@ -8231,7 +8231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676 { get { @@ -8241,7 +8241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_1 { get { @@ -8251,7 +8251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_2 { get { @@ -8261,7 +8261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_3 { get { @@ -8271,7 +8271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_4 { get { @@ -8281,7 +8281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_5 { get { @@ -8291,7 +8291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_6 { get { @@ -8301,7 +8301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_7 { get { @@ -8311,7 +8311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_8 { get { @@ -8321,7 +8321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_9 { get { @@ -8331,7 +8331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _677 { get { @@ -8341,7 +8341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678 { get { @@ -8351,7 +8351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678_1 { get { @@ -8361,7 +8361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _679 { get { @@ -8371,7 +8371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _68 { get { @@ -8381,7 +8381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _680 { get { @@ -8391,7 +8391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681 { get { @@ -8401,7 +8401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681_1 { get { @@ -8411,7 +8411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _682 { get { @@ -8421,7 +8421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _683 { get { @@ -8431,7 +8431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _684 { get { @@ -8441,7 +8441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _685 { get { @@ -8451,7 +8451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _686 { get { @@ -8461,7 +8461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _687 { get { @@ -8471,7 +8471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _688 { get { @@ -8481,7 +8481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _689 { get { @@ -8491,7 +8491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _69 { get { @@ -8501,7 +8501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _690 { get { @@ -8511,7 +8511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _691 { get { @@ -8521,7 +8521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _692 { get { @@ -8531,7 +8531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _693 { get { @@ -8541,7 +8541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _694 { get { @@ -8551,7 +8551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _695 { get { @@ -8561,7 +8561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _696 { get { @@ -8571,7 +8571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _697 { get { @@ -8581,7 +8581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _698 { get { @@ -8591,7 +8591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _699 { get { @@ -8601,7 +8601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6th { get { @@ -8611,7 +8611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _7 { get { @@ -8621,7 +8621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _70 { get { @@ -8631,7 +8631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _700 { get { @@ -8641,7 +8641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _701 { get { @@ -8651,7 +8651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _702 { get { @@ -8661,7 +8661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _703 { get { @@ -8671,7 +8671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _704 { get { @@ -8681,7 +8681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _705 { get { @@ -8691,7 +8691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _706 { get { @@ -8701,7 +8701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _707 { get { @@ -8711,7 +8711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _708 { get { @@ -8721,7 +8721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _709 { get { @@ -8731,7 +8731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _71 { get { @@ -8741,7 +8741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710 { get { @@ -8751,7 +8751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_1 { get { @@ -8761,7 +8761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_2 { get { @@ -8771,7 +8771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_3 { get { @@ -8781,7 +8781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711 { get { @@ -8791,7 +8791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_1 { get { @@ -8801,7 +8801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_2 { get { @@ -8811,7 +8811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_3 { get { @@ -8821,7 +8821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _712 { get { @@ -8831,7 +8831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _713 { get { @@ -8841,7 +8841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _714 { get { @@ -8851,7 +8851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _715 { get { @@ -8861,7 +8861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716 { get { @@ -8871,7 +8871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716_1 { get { @@ -8881,7 +8881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _717 { get { @@ -8891,7 +8891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718 { get { @@ -8901,7 +8901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_1 { get { @@ -8911,7 +8911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_2 { get { @@ -8921,7 +8921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_3 { get { @@ -8931,7 +8931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_4 { get { @@ -8941,7 +8941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719 { get { @@ -8951,7 +8951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719_1 { get { @@ -8961,7 +8961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _72 { get { @@ -8971,7 +8971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720 { get { @@ -8981,7 +8981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720_1 { get { @@ -8991,7 +8991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _721 { get { @@ -9001,7 +9001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _722 { get { @@ -9011,7 +9011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _723 { get { @@ -9021,7 +9021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _724 { get { @@ -9031,7 +9031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _725 { get { @@ -9041,7 +9041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _726 { get { @@ -9051,7 +9051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _727 { get { @@ -9061,7 +9061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _728 { get { @@ -9071,7 +9071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _729 { get { @@ -9081,7 +9081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _73 { get { @@ -9091,7 +9091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _730 { get { @@ -9101,7 +9101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _731 { get { @@ -9111,7 +9111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _732 { get { @@ -9121,7 +9121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _733 { get { @@ -9131,7 +9131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _734 { get { @@ -9141,7 +9141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _735 { get { @@ -9151,7 +9151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _736 { get { @@ -9161,7 +9161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _737 { get { @@ -9171,7 +9171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _738 { get { @@ -9181,7 +9181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _739 { get { @@ -9191,7 +9191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74 { get { @@ -9201,7 +9201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74_1 { get { @@ -9211,7 +9211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _740 { get { @@ -9221,7 +9221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741 { get { @@ -9231,7 +9231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_1 { get { @@ -9241,7 +9241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_2 { get { @@ -9251,7 +9251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_3 { get { @@ -9261,7 +9261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _742 { get { @@ -9271,7 +9271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _743 { get { @@ -9281,7 +9281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _744 { get { @@ -9291,7 +9291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745 { get { @@ -9301,7 +9301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745_1 { get { @@ -9311,7 +9311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746 { get { @@ -9321,7 +9321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746_1 { get { @@ -9331,7 +9331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _747 { get { @@ -9341,7 +9341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _748 { get { @@ -9351,7 +9351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _749 { get { @@ -9361,7 +9361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75 { get { @@ -9371,7 +9371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75_1 { get { @@ -9381,7 +9381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _750 { get { @@ -9391,7 +9391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _751 { get { @@ -9401,7 +9401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _752 { get { @@ -9411,7 +9411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _753 { get { @@ -9421,7 +9421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _754 { get { @@ -9431,7 +9431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _755 { get { @@ -9441,7 +9441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _756 { get { @@ -9451,7 +9451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _757 { get { @@ -9461,7 +9461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _758 { get { @@ -9471,7 +9471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _759 { get { @@ -9481,7 +9481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76 { get { @@ -9491,7 +9491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76_1 { get { @@ -9501,7 +9501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _760 { get { @@ -9511,7 +9511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _761 { get { @@ -9521,7 +9521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _762 { get { @@ -9531,7 +9531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _763 { get { @@ -9541,7 +9541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _764 { get { @@ -9551,7 +9551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _765 { get { @@ -9561,7 +9561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _766 { get { @@ -9571,7 +9571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _767 { get { @@ -9581,7 +9581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _768 { get { @@ -9591,7 +9591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _769 { get { @@ -9601,7 +9601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _77 { get { @@ -9611,7 +9611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _770 { get { @@ -9621,7 +9621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _771 { get { @@ -9631,7 +9631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _772 { get { @@ -9641,7 +9641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _773 { get { @@ -9651,7 +9651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774 { get { @@ -9661,7 +9661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_1 { get { @@ -9671,7 +9671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_10 { get { @@ -9681,7 +9681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_11 { get { @@ -9691,7 +9691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_12 { get { @@ -9701,7 +9701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_13 { get { @@ -9711,7 +9711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_2 { get { @@ -9721,7 +9721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_3 { get { @@ -9731,7 +9731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_4 { get { @@ -9741,7 +9741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_5 { get { @@ -9751,7 +9751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_6 { get { @@ -9761,7 +9761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_7 { get { @@ -9771,7 +9771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_8 { get { @@ -9781,7 +9781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_9 { get { @@ -9791,7 +9791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _775 { get { @@ -9801,7 +9801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _776 { get { @@ -9811,7 +9811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _777 { get { @@ -9821,7 +9821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _778 { get { @@ -9831,7 +9831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _779 { get { @@ -9841,7 +9841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _78 { get { @@ -9851,7 +9851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _780 { get { @@ -9861,7 +9861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _781 { get { @@ -9871,7 +9871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _782 { get { @@ -9881,7 +9881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _783 { get { @@ -9891,7 +9891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _784 { get { @@ -9901,7 +9901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _785 { get { @@ -9911,7 +9911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _786 { get { @@ -9921,7 +9921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _787 { get { @@ -9931,7 +9931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _788 { get { @@ -9941,7 +9941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _789 { get { @@ -9951,7 +9951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _79 { get { @@ -9961,7 +9961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _790 { get { @@ -9971,7 +9971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _791 { get { @@ -9981,7 +9981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _792 { get { @@ -9991,7 +9991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _793 { get { @@ -10001,7 +10001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _794 { get { @@ -10011,7 +10011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _795 { get { @@ -10021,7 +10021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _796 { get { @@ -10031,7 +10031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _797 { get { @@ -10041,7 +10041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _798 { get { @@ -10051,7 +10051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _799 { get { @@ -10061,7 +10061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _8 { get { @@ -10071,7 +10071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80 { get { @@ -10081,7 +10081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80_1 { get { @@ -10091,7 +10091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _800 { get { @@ -10101,7 +10101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801 { get { @@ -10111,7 +10111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801_1 { get { @@ -10121,7 +10121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _802 { get { @@ -10131,7 +10131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _81 { get { @@ -10141,7 +10141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _82 { get { @@ -10151,7 +10151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _83 { get { @@ -10161,7 +10161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _84 { get { @@ -10171,7 +10171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _85 { get { @@ -10181,7 +10181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _86 { get { @@ -10191,7 +10191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _87 { get { @@ -10201,7 +10201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88 { get { @@ -10211,7 +10211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88_1 { get { @@ -10221,7 +10221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89 { get { @@ -10231,7 +10231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89_1 { get { @@ -10241,7 +10241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9 { get { @@ -10251,7 +10251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9_1 { get { @@ -10261,7 +10261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _90 { get { @@ -10271,7 +10271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _91 { get { @@ -10281,7 +10281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _92 { get { @@ -10291,7 +10291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _93 { get { @@ -10301,7 +10301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94 { get { @@ -10311,7 +10311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94_1 { get { @@ -10321,7 +10321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _95 { get { @@ -10331,7 +10331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _96 { get { @@ -10341,7 +10341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _97 { get { @@ -10351,7 +10351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _98 { get { @@ -10361,7 +10361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _99 { get { @@ -10371,7 +10371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball1 { get { @@ -10381,7 +10381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball10 { get { @@ -10391,7 +10391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball11 { get { @@ -10401,7 +10401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball12 { get { @@ -10411,7 +10411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball13 { get { @@ -10421,7 +10421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball14 { get { @@ -10431,7 +10431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball15 { get { @@ -10441,7 +10441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball16 { get { @@ -10451,7 +10451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball17 { get { @@ -10461,7 +10461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball18 { get { @@ -10471,7 +10471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball19 { get { @@ -10481,7 +10481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball2 { get { @@ -10491,7 +10491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball20 { get { @@ -10501,7 +10501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball21 { get { @@ -10511,7 +10511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball22 { get { @@ -10521,7 +10521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball23 { get { @@ -10531,7 +10531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball24 { get { @@ -10541,7 +10541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball25 { get { @@ -10551,7 +10551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball26 { get { @@ -10561,7 +10561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball3 { get { @@ -10571,7 +10571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball4 { get { @@ -10581,7 +10581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball5 { get { @@ -10591,7 +10591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball6 { get { @@ -10601,7 +10601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball7 { get { @@ -10611,7 +10611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball8 { get { @@ -10621,7 +10621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball9 { get { @@ -10631,7 +10631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap about { get { @@ -10641,7 +10641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap alora { get { @@ -10651,7 +10651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap anti_pokerus_icon { get { @@ -10661,7 +10661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_01 { get { @@ -10671,7 +10671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_02 { get { @@ -10681,7 +10681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_03 { get { @@ -10691,7 +10691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_04 { get { @@ -10701,7 +10701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_05 { get { @@ -10711,7 +10711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_06 { get { @@ -10721,7 +10721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_07 { get { @@ -10731,7 +10731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_08 { get { @@ -10741,7 +10741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_1 { get { @@ -10751,7 +10751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_2 { get { @@ -10761,7 +10761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_3 { get { @@ -10771,7 +10771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_4 { get { @@ -10781,7 +10781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_5 { get { @@ -10791,7 +10791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_6 { get { @@ -10801,7 +10801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_7 { get { @@ -10811,7 +10811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_8 { get { @@ -10821,7 +10821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Free { get { @@ -10831,7 +10831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_PCItems { get { @@ -10841,7 +10841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Z { get { @@ -10851,7 +10851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap bak { get { @@ -10861,7 +10861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_01 { get { @@ -10871,7 +10871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_02 { get { @@ -10881,7 +10881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_03 { get { @@ -10891,7 +10891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_04 { get { @@ -10901,7 +10901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_05 { get { @@ -10911,7 +10911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_06 { get { @@ -10921,7 +10921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01bw { get { @@ -10931,7 +10931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01dp { get { @@ -10941,7 +10941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01e { get { @@ -10951,7 +10951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01rs { get { @@ -10961,7 +10961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01xy { get { @@ -10971,7 +10971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02bw { get { @@ -10981,7 +10981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02dp { get { @@ -10991,7 +10991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02e { get { @@ -11001,7 +11001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02rs { get { @@ -11011,7 +11011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02xy { get { @@ -11021,7 +11021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03bw { get { @@ -11031,7 +11031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03dp { get { @@ -11041,7 +11041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03e { get { @@ -11051,7 +11051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03rs { get { @@ -11061,7 +11061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03xy { get { @@ -11071,7 +11071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04bw { get { @@ -11081,7 +11081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04dp { get { @@ -11091,7 +11091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04e { get { @@ -11101,7 +11101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04rs { get { @@ -11111,7 +11111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04xy { get { @@ -11121,7 +11121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05bw { get { @@ -11131,7 +11131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05dp { get { @@ -11141,7 +11141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05e { get { @@ -11151,7 +11151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05rs { get { @@ -11161,7 +11161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05xy { get { @@ -11171,7 +11171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06bw { get { @@ -11181,7 +11181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06dp { get { @@ -11191,7 +11191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06e { get { @@ -11201,7 +11201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06rs { get { @@ -11211,7 +11211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06xy { get { @@ -11221,7 +11221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07bw { get { @@ -11231,7 +11231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07dp { get { @@ -11241,7 +11241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07e { get { @@ -11251,7 +11251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07rs { get { @@ -11261,7 +11261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07xy { get { @@ -11271,7 +11271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08bw { get { @@ -11281,7 +11281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08dp { get { @@ -11291,7 +11291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08e { get { @@ -11301,7 +11301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08rs { get { @@ -11311,7 +11311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08xy { get { @@ -11321,7 +11321,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09bw { get { @@ -11331,7 +11331,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09dp { get { @@ -11341,7 +11341,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09e { get { @@ -11351,7 +11351,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09rs { get { @@ -11361,7 +11361,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09xy { get { @@ -11371,7 +11371,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10bw { get { @@ -11381,7 +11381,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10dp { get { @@ -11391,7 +11391,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10e { get { @@ -11401,7 +11401,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10rs { get { @@ -11411,7 +11411,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10xy { get { @@ -11421,7 +11421,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11bw { get { @@ -11431,7 +11431,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11dp { get { @@ -11441,7 +11441,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11e { get { @@ -11451,7 +11451,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11rs { get { @@ -11461,7 +11461,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11xy { get { @@ -11471,7 +11471,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12bw { get { @@ -11481,7 +11481,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12dp { get { @@ -11491,7 +11491,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12e { get { @@ -11501,7 +11501,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12rs { get { @@ -11511,7 +11511,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12xy { get { @@ -11521,7 +11521,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13bw { get { @@ -11531,7 +11531,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13dp { get { @@ -11541,7 +11541,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13e { get { @@ -11551,7 +11551,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13frlg { get { @@ -11561,7 +11561,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13rs { get { @@ -11571,7 +11571,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13xy { get { @@ -11581,7 +11581,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14bw { get { @@ -11591,7 +11591,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14dp { get { @@ -11601,7 +11601,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14e { get { @@ -11611,7 +11611,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14frlg { get { @@ -11621,7 +11621,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14rs { get { @@ -11631,7 +11631,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14xy { get { @@ -11641,7 +11641,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15bw { get { @@ -11651,7 +11651,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15dp { get { @@ -11661,7 +11661,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15e { get { @@ -11671,7 +11671,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15frlg { get { @@ -11681,7 +11681,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15rs { get { @@ -11691,7 +11691,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15xy { get { @@ -11701,7 +11701,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16bw { get { @@ -11711,7 +11711,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16dp { get { @@ -11721,7 +11721,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16e { get { @@ -11731,7 +11731,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16frlg { get { @@ -11741,7 +11741,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16rs { get { @@ -11751,7 +11751,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16xy { get { @@ -11761,7 +11761,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17ao { get { @@ -11771,7 +11771,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17b2w2 { get { @@ -11781,7 +11781,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17bw { get { @@ -11791,7 +11791,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17dp { get { @@ -11801,7 +11801,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17hgss { get { @@ -11811,7 +11811,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17pt { get { @@ -11821,7 +11821,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17xy { get { @@ -11831,7 +11831,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18ao { get { @@ -11841,7 +11841,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18b2w2 { get { @@ -11851,7 +11851,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18bw { get { @@ -11861,7 +11861,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18dp { get { @@ -11871,7 +11871,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18hgss { get { @@ -11881,7 +11881,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18pt { get { @@ -11891,7 +11891,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18xy { get { @@ -11901,7 +11901,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19ao { get { @@ -11911,7 +11911,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19b2w2 { get { @@ -11921,7 +11921,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19bw { get { @@ -11931,7 +11931,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19dp { get { @@ -11941,7 +11941,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19hgss { get { @@ -11951,7 +11951,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19pt { get { @@ -11961,7 +11961,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19xy { get { @@ -11971,7 +11971,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20ao { get { @@ -11981,7 +11981,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20b2w2 { get { @@ -11991,7 +11991,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20bw { get { @@ -12001,7 +12001,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20dp { get { @@ -12011,7 +12011,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20hgss { get { @@ -12021,7 +12021,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20pt { get { @@ -12031,7 +12031,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20xy { get { @@ -12041,7 +12041,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21ao { get { @@ -12051,7 +12051,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21b2w2 { get { @@ -12061,7 +12061,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21bw { get { @@ -12071,7 +12071,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21dp { get { @@ -12081,7 +12081,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21hgss { get { @@ -12091,7 +12091,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21pt { get { @@ -12101,7 +12101,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21xy { get { @@ -12111,7 +12111,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22ao { get { @@ -12121,7 +12121,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22b2w2 { get { @@ -12131,7 +12131,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22bw { get { @@ -12141,7 +12141,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22dp { get { @@ -12151,7 +12151,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22hgss { get { @@ -12161,7 +12161,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22pt { get { @@ -12171,7 +12171,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22xy { get { @@ -12181,7 +12181,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23ao { get { @@ -12191,7 +12191,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23b2w2 { get { @@ -12201,7 +12201,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23bw { get { @@ -12211,7 +12211,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23dp { get { @@ -12221,7 +12221,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23hgss { get { @@ -12231,7 +12231,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23pt { get { @@ -12241,7 +12241,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23xy { get { @@ -12251,7 +12251,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24ao { get { @@ -12261,7 +12261,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24b2w2 { get { @@ -12271,7 +12271,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24bw { get { @@ -12281,7 +12281,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24dp { get { @@ -12291,7 +12291,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24hgss { get { @@ -12301,7 +12301,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24pt { get { @@ -12311,7 +12311,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24xy { get { @@ -12321,7 +12321,7 @@ public class Resources { } /// - /// Looks up a localized string similar to PKHeX - By Kaphotics + /// Busca una cadena traducida similar a PKHeX - By Kaphotics ///http://projectpokemon.org/pkhex /// ///17/03/18 - New Update: @@ -12332,7 +12332,7 @@ public class Resources { /// - Fixed: Colosseum/XD Purification value editing. Thanks ArcticLoveBunny! /// - Fixed: Joyful Game Corner now editable by Emerald saves. /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string changelog { get { @@ -12341,7 +12341,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 60 Ash + /// Busca una cadena traducida similar a 60 Ash ///21 Test1 ///22 Test2 ///24 Test3. @@ -12353,7 +12353,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 148 Starter 00:Rowlet,01:Litten,02:Popplio + /// Busca una cadena traducida similar a 148 Starter 00:Rowlet,01:Litten,02:Popplio ///432 Tapu Koku 03:Battleable,04:Defeated,05:Captured ///433 Tapu Lele 01:Battleable,02:Defeated,03:Captured ///434 Tapu Bulu 01:Battleable,02:Defeated,03:Captured @@ -12366,7 +12366,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Country ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Country ID,JP,EN,FR,DE,IT,ES,ZH,KO ///1,日本,Japan,Japon,Japan,Giappone,Japón,日本,일본 ///8,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라 ///9,アンティグア・バーブーダ,Antigua and Barbuda,Antigua-et-Barbuda,Antigua und Barbuda,Antigua e Barbuda,Antigua y Barbuda,安提瓜和巴布达,앤티가 바부다 @@ -12374,7 +12374,7 @@ public class Resources { ///11,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바 ///12,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마 ///13,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스 - ///14,ベリーズ,Beli [rest of string was truncated]";. + ///14,ベリーズ,Beli [resto de la cadena truncado]";. /// public static string countries { get { @@ -12383,7 +12383,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap data { get { @@ -12393,7 +12393,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap database { get { @@ -12403,7 +12403,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap dump { get { @@ -12413,7 +12413,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap egg { get { @@ -12423,7 +12423,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_ao { get { @@ -12433,7 +12433,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_bw { get { @@ -12443,7 +12443,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_c { get { @@ -12453,7 +12453,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_dppt { get { @@ -12463,7 +12463,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_gs { get { @@ -12473,7 +12473,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_hgss { get { @@ -12483,7 +12483,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_rs { get { @@ -12493,7 +12493,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_sm { get { @@ -12503,7 +12503,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] eggmove_xy { get { @@ -12513,7 +12513,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_a { get { @@ -12523,7 +12523,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_b { get { @@ -12533,7 +12533,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_b2 { get { @@ -12543,7 +12543,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_blue { get { @@ -12553,7 +12553,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_crystal { get { @@ -12563,7 +12563,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_crystal_h { get { @@ -12573,7 +12573,37 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_d { + get { + object obj = ResourceManager.GetObject("encounter_d", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_e { + get { + object obj = ResourceManager.GetObject("encounter_e", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_fr { + get { + object obj = ResourceManager.GetObject("encounter_fr", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_gold { get { @@ -12583,7 +12613,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_gold_h { get { @@ -12593,7 +12623,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_gsc_f { get { @@ -12603,7 +12633,27 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_hg { + get { + object obj = ResourceManager.GetObject("encounter_hg", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_lg { + get { + object obj = ResourceManager.GetObject("encounter_lg", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_mn { get { @@ -12613,7 +12663,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_mn_sos { get { @@ -12623,7 +12673,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_o { get { @@ -12633,7 +12683,37 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_p { + get { + object obj = ResourceManager.GetObject("encounter_p", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_pt { + get { + object obj = ResourceManager.GetObject("encounter_pt", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_r { + get { + object obj = ResourceManager.GetObject("encounter_r", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_rb_f { get { @@ -12643,7 +12723,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_red { get { @@ -12653,7 +12733,17 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_s { + get { + object obj = ResourceManager.GetObject("encounter_s", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_silver { get { @@ -12663,7 +12753,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_silver_h { get { @@ -12673,7 +12763,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_sn { get { @@ -12683,7 +12773,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_sn_sos { get { @@ -12693,7 +12783,17 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encounter_ss { + get { + object obj = ResourceManager.GetObject("encounter_ss", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_w { get { @@ -12703,7 +12803,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_w2 { get { @@ -12713,7 +12813,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_x { get { @@ -12723,7 +12823,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_y { get { @@ -12733,7 +12833,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_yellow { get { @@ -12743,7 +12843,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] encounter_yellow_f { get { @@ -12753,7 +12853,27 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encunters_hb_hg { + get { + object obj = ResourceManager.GetObject("encunters_hb_hg", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] encunters_hb_ss { + get { + object obj = ResourceManager.GetObject("encunters_hb_ss", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_ao { get { @@ -12763,7 +12883,37 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] evos_g3 { + get { + object obj = ResourceManager.GetObject("evos_g3", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] evos_g4 { + get { + object obj = ResourceManager.GetObject("evos_g4", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. + /// + public static byte[] evos_g5 { + get { + object obj = ResourceManager.GetObject("evos_g5", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_gsc { get { @@ -12773,7 +12923,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_rby { get { @@ -12783,7 +12933,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] evos_sm { get { @@ -12793,7 +12943,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap exit { get { @@ -12803,7 +12953,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap export { get { @@ -12813,7 +12963,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_f_sm { get { @@ -12823,7 +12973,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_f_sm_illegal { get { @@ -12833,7 +12983,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_m_sm { get { @@ -12843,7 +12993,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] fashion_m_sm_illegal { get { @@ -12853,7 +13003,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 0648 (OR) Groudon Defeated + /// Busca una cadena traducida similar a 0648 (OR) Groudon Defeated ///2839 (OR) Groudon Captured ///0647 (AS) Kyogre Defeated ///2840 (AS) Kyogre Captured @@ -12871,7 +13021,7 @@ public class Resources { ///0183 (AS) Zekrom Defeated ///2831 (AS) Zekrom Captured ///0419 (OR) Latias Defeated - ///2834 (OR) Latias Captu [rest of string was truncated]";. + ///2834 (OR) Latias Captu [resto de la cadena truncado]";. /// public static string flags_oras { get { @@ -12880,7 +13030,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 3100 Is Alolan Champion + Magearna Event Active + /// Busca una cadena traducida similar a 3100 Is Alolan Champion + Magearna Event Active ///3487 Received Magearna Gift ///1216 Received Gift Cosmog ///0499 Received Gift Type:Null @@ -12893,7 +13043,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 2237 2237 + /// Busca una cadena traducida similar a 2237 2237 ///2238 2238 ///2239 2239 ///0963 Mewtwo Defeated @@ -12920,7 +13070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap folder { get { @@ -12930,7 +13080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap gift { get { @@ -12940,7 +13090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap helditem { get { @@ -12950,7 +13100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] hmtm_g3 { get { @@ -12960,7 +13110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap horohoro { get { @@ -12970,7 +13120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap icon { get { @@ -12980,7 +13130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap import { get { @@ -12990,7 +13140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_1 { get { @@ -13000,7 +13150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_10 { get { @@ -13010,7 +13160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_100 { get { @@ -13020,7 +13170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_101 { get { @@ -13030,7 +13180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_102 { get { @@ -13040,7 +13190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_103 { get { @@ -13050,7 +13200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_104 { get { @@ -13060,7 +13210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_105 { get { @@ -13070,7 +13220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_106 { get { @@ -13080,7 +13230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_107 { get { @@ -13090,7 +13240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_108 { get { @@ -13100,7 +13250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_109 { get { @@ -13110,7 +13260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_11 { get { @@ -13120,7 +13270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_110 { get { @@ -13130,7 +13280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_112 { get { @@ -13140,7 +13290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_116 { get { @@ -13150,7 +13300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_117 { get { @@ -13160,7 +13310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_118 { get { @@ -13170,7 +13320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_119 { get { @@ -13180,7 +13330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_12 { get { @@ -13190,7 +13340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_13 { get { @@ -13200,7 +13350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_134 { get { @@ -13210,7 +13360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_135 { get { @@ -13220,7 +13370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_136 { get { @@ -13230,7 +13380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_14 { get { @@ -13240,7 +13390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_149 { get { @@ -13250,7 +13400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_15 { get { @@ -13260,7 +13410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_150 { get { @@ -13270,7 +13420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_151 { get { @@ -13280,7 +13430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_152 { get { @@ -13290,7 +13440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_153 { get { @@ -13300,7 +13450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_154 { get { @@ -13310,7 +13460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_155 { get { @@ -13320,7 +13470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_156 { get { @@ -13330,7 +13480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_157 { get { @@ -13340,7 +13490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_158 { get { @@ -13350,7 +13500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_159 { get { @@ -13360,7 +13510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_16 { get { @@ -13370,7 +13520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_160 { get { @@ -13380,7 +13530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_161 { get { @@ -13390,7 +13540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_162 { get { @@ -13400,7 +13550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_163 { get { @@ -13410,7 +13560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_164 { get { @@ -13420,7 +13570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_165 { get { @@ -13430,7 +13580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_166 { get { @@ -13440,7 +13590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_167 { get { @@ -13450,7 +13600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_168 { get { @@ -13460,7 +13610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_169 { get { @@ -13470,7 +13620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_17 { get { @@ -13480,7 +13630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_170 { get { @@ -13490,7 +13640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_171 { get { @@ -13500,7 +13650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_172 { get { @@ -13510,7 +13660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_173 { get { @@ -13520,7 +13670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_174 { get { @@ -13530,7 +13680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_175 { get { @@ -13540,7 +13690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_176 { get { @@ -13550,7 +13700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_177 { get { @@ -13560,7 +13710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_178 { get { @@ -13570,7 +13720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_179 { get { @@ -13580,7 +13730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_18 { get { @@ -13590,7 +13740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_180 { get { @@ -13600,7 +13750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_181 { get { @@ -13610,7 +13760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_182 { get { @@ -13620,7 +13770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_183 { get { @@ -13630,7 +13780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_184 { get { @@ -13640,7 +13790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_185 { get { @@ -13650,7 +13800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_186 { get { @@ -13660,7 +13810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_187 { get { @@ -13670,7 +13820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_188 { get { @@ -13680,7 +13830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_189 { get { @@ -13690,7 +13840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_19 { get { @@ -13700,7 +13850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_190 { get { @@ -13710,7 +13860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_191 { get { @@ -13720,7 +13870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_192 { get { @@ -13730,7 +13880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_193 { get { @@ -13740,7 +13890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_194 { get { @@ -13750,7 +13900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_195 { get { @@ -13760,7 +13910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_196 { get { @@ -13770,7 +13920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_197 { get { @@ -13780,7 +13930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_198 { get { @@ -13790,7 +13940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_199 { get { @@ -13800,7 +13950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_2 { get { @@ -13810,7 +13960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_20 { get { @@ -13820,7 +13970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_200 { get { @@ -13830,7 +13980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_201 { get { @@ -13840,7 +13990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_202 { get { @@ -13850,7 +14000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_203 { get { @@ -13860,7 +14010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_204 { get { @@ -13870,7 +14020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_205 { get { @@ -13880,7 +14030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_206 { get { @@ -13890,7 +14040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_207 { get { @@ -13900,7 +14050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_208 { get { @@ -13910,7 +14060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_209 { get { @@ -13920,7 +14070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_21 { get { @@ -13930,7 +14080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_210 { get { @@ -13940,7 +14090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_211 { get { @@ -13950,7 +14100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_212 { get { @@ -13960,7 +14110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_213 { get { @@ -13970,7 +14120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_214 { get { @@ -13980,7 +14130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_215 { get { @@ -13990,7 +14140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_217 { get { @@ -14000,7 +14150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_218 { get { @@ -14010,7 +14160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_219 { get { @@ -14020,7 +14170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_22 { get { @@ -14030,7 +14180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_220 { get { @@ -14040,7 +14190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_221 { get { @@ -14050,7 +14200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_222 { get { @@ -14060,7 +14210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_223 { get { @@ -14070,7 +14220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_224 { get { @@ -14080,7 +14230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_225 { get { @@ -14090,7 +14240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_226 { get { @@ -14100,7 +14250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_227 { get { @@ -14110,7 +14260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_228 { get { @@ -14120,7 +14270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_229 { get { @@ -14130,7 +14280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_23 { get { @@ -14140,7 +14290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_230 { get { @@ -14150,7 +14300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_231 { get { @@ -14160,7 +14310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_232 { get { @@ -14170,7 +14320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_233 { get { @@ -14180,7 +14330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_234 { get { @@ -14190,7 +14340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_235 { get { @@ -14200,7 +14350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_236 { get { @@ -14210,7 +14360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_237 { get { @@ -14220,7 +14370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_238 { get { @@ -14230,7 +14380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_239 { get { @@ -14240,7 +14390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_24 { get { @@ -14250,7 +14400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_240 { get { @@ -14260,7 +14410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_241 { get { @@ -14270,7 +14420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_242 { get { @@ -14280,7 +14430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_243 { get { @@ -14290,7 +14440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_244 { get { @@ -14300,7 +14450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_245 { get { @@ -14310,7 +14460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_246 { get { @@ -14320,7 +14470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_247 { get { @@ -14330,7 +14480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_248 { get { @@ -14340,7 +14490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_249 { get { @@ -14350,7 +14500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_25 { get { @@ -14360,7 +14510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_250 { get { @@ -14370,7 +14520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_251 { get { @@ -14380,7 +14530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_252 { get { @@ -14390,7 +14540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_253 { get { @@ -14400,7 +14550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_254 { get { @@ -14410,7 +14560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_255 { get { @@ -14420,7 +14570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_256 { get { @@ -14430,7 +14580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_257 { get { @@ -14440,7 +14590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_258 { get { @@ -14450,7 +14600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_259 { get { @@ -14460,7 +14610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_26 { get { @@ -14470,7 +14620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_260 { get { @@ -14480,7 +14630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_261 { get { @@ -14490,7 +14640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_262 { get { @@ -14500,7 +14650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_263 { get { @@ -14510,7 +14660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_264 { get { @@ -14520,7 +14670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_265 { get { @@ -14530,7 +14680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_266 { get { @@ -14540,7 +14690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_267 { get { @@ -14550,7 +14700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_268 { get { @@ -14560,7 +14710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_269 { get { @@ -14570,7 +14720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_27 { get { @@ -14580,7 +14730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_270 { get { @@ -14590,7 +14740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_271 { get { @@ -14600,7 +14750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_272 { get { @@ -14610,7 +14760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_273 { get { @@ -14620,7 +14770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_274 { get { @@ -14630,7 +14780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_275 { get { @@ -14640,7 +14790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_276 { get { @@ -14650,7 +14800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_277 { get { @@ -14660,7 +14810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_278 { get { @@ -14670,7 +14820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_279 { get { @@ -14680,7 +14830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_28 { get { @@ -14690,7 +14840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_280 { get { @@ -14700,7 +14850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_281 { get { @@ -14710,7 +14860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_282 { get { @@ -14720,7 +14870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_283 { get { @@ -14730,7 +14880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_284 { get { @@ -14740,7 +14890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_285 { get { @@ -14750,7 +14900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_286 { get { @@ -14760,7 +14910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_287 { get { @@ -14770,7 +14920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_288 { get { @@ -14780,7 +14930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_289 { get { @@ -14790,7 +14940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_29 { get { @@ -14800,7 +14950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_290 { get { @@ -14810,7 +14960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_291 { get { @@ -14820,7 +14970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_292 { get { @@ -14830,7 +14980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_293 { get { @@ -14840,7 +14990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_294 { get { @@ -14850,7 +15000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_295 { get { @@ -14860,7 +15010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_296 { get { @@ -14870,7 +15020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_297 { get { @@ -14880,7 +15030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_298 { get { @@ -14890,7 +15040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_299 { get { @@ -14900,7 +15050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_3 { get { @@ -14910,7 +15060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_30 { get { @@ -14920,7 +15070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_300 { get { @@ -14930,7 +15080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_301 { get { @@ -14940,7 +15090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_302 { get { @@ -14950,7 +15100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_303 { get { @@ -14960,7 +15110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_304 { get { @@ -14970,7 +15120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_305 { get { @@ -14980,7 +15130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_306 { get { @@ -14990,7 +15140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_307 { get { @@ -15000,7 +15150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_308 { get { @@ -15010,7 +15160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_309 { get { @@ -15020,7 +15170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_31 { get { @@ -15030,7 +15180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_310 { get { @@ -15040,7 +15190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_311 { get { @@ -15050,7 +15200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_312 { get { @@ -15060,7 +15210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_313 { get { @@ -15070,7 +15220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_314 { get { @@ -15080,7 +15230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_315 { get { @@ -15090,7 +15240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_316 { get { @@ -15100,7 +15250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_317 { get { @@ -15110,7 +15260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_318 { get { @@ -15120,7 +15270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_319 { get { @@ -15130,7 +15280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_32 { get { @@ -15140,7 +15290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_320 { get { @@ -15150,7 +15300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_321 { get { @@ -15160,7 +15310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_322 { get { @@ -15170,7 +15320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_323 { get { @@ -15180,7 +15330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_324 { get { @@ -15190,7 +15340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_325 { get { @@ -15200,7 +15350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_326 { get { @@ -15210,7 +15360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_327 { get { @@ -15220,7 +15370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_33 { get { @@ -15230,7 +15380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_34 { get { @@ -15240,7 +15390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_35 { get { @@ -15250,7 +15400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_36 { get { @@ -15260,7 +15410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_37 { get { @@ -15270,7 +15420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_38 { get { @@ -15280,7 +15430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_39 { get { @@ -15290,7 +15440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_4 { get { @@ -15300,7 +15450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_40 { get { @@ -15310,7 +15460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_41 { get { @@ -15320,7 +15470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_42 { get { @@ -15330,7 +15480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_43 { get { @@ -15340,7 +15490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_44 { get { @@ -15350,7 +15500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_45 { get { @@ -15360,7 +15510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_46 { get { @@ -15370,7 +15520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_47 { get { @@ -15380,7 +15530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_48 { get { @@ -15390,7 +15540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_49 { get { @@ -15400,7 +15550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_5 { get { @@ -15410,7 +15560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_50 { get { @@ -15420,7 +15570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_504 { get { @@ -15430,7 +15580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_51 { get { @@ -15440,7 +15590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_52 { get { @@ -15450,7 +15600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_53 { get { @@ -15460,7 +15610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_534 { get { @@ -15470,7 +15620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_535 { get { @@ -15480,7 +15630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_537 { get { @@ -15490,7 +15640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_538 { get { @@ -15500,7 +15650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_539 { get { @@ -15510,7 +15660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_54 { get { @@ -15520,7 +15670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_540 { get { @@ -15530,7 +15680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_541 { get { @@ -15540,7 +15690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_542 { get { @@ -15550,7 +15700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_543 { get { @@ -15560,7 +15710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_544 { get { @@ -15570,7 +15720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_545 { get { @@ -15580,7 +15730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_546 { get { @@ -15590,7 +15740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_547 { get { @@ -15600,7 +15750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_548 { get { @@ -15610,7 +15760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_549 { get { @@ -15620,7 +15770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_55 { get { @@ -15630,7 +15780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_550 { get { @@ -15640,7 +15790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_551 { get { @@ -15650,7 +15800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_552 { get { @@ -15660,7 +15810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_553 { get { @@ -15670,7 +15820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_554 { get { @@ -15680,7 +15830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_555 { get { @@ -15690,7 +15840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_556 { get { @@ -15700,7 +15850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_557 { get { @@ -15710,7 +15860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_558 { get { @@ -15720,7 +15870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_559 { get { @@ -15730,7 +15880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_56 { get { @@ -15740,7 +15890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_560 { get { @@ -15750,7 +15900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_561 { get { @@ -15760,7 +15910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_562 { get { @@ -15770,7 +15920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_563 { get { @@ -15780,7 +15930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_564 { get { @@ -15790,7 +15940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_57 { get { @@ -15800,7 +15950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_571 { get { @@ -15810,7 +15960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_572 { get { @@ -15820,7 +15970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_573 { get { @@ -15830,7 +15980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_577 { get { @@ -15840,7 +15990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_58 { get { @@ -15850,7 +16000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_580 { get { @@ -15860,7 +16010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_581 { get { @@ -15870,7 +16020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_582 { get { @@ -15880,7 +16030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_583 { get { @@ -15890,7 +16040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_584 { get { @@ -15900,7 +16050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_585 { get { @@ -15910,7 +16060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_586 { get { @@ -15920,7 +16070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_587 { get { @@ -15930,7 +16080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_588 { get { @@ -15940,7 +16090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_589 { get { @@ -15950,7 +16100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_59 { get { @@ -15960,7 +16110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_590 { get { @@ -15970,7 +16120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_591 { get { @@ -15980,7 +16130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_6 { get { @@ -15990,7 +16140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_60 { get { @@ -16000,7 +16150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_61 { get { @@ -16010,7 +16160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_62 { get { @@ -16020,7 +16170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_63 { get { @@ -16030,7 +16180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_639 { get { @@ -16040,7 +16190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_64 { get { @@ -16050,7 +16200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_640 { get { @@ -16060,7 +16210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_644 { get { @@ -16070,7 +16220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_645 { get { @@ -16080,7 +16230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_646 { get { @@ -16090,7 +16240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_647 { get { @@ -16100,7 +16250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_648 { get { @@ -16110,7 +16260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_649 { get { @@ -16120,7 +16270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_65 { get { @@ -16130,7 +16280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_650 { get { @@ -16140,7 +16290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_652 { get { @@ -16150,7 +16300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_653 { get { @@ -16160,7 +16310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_654 { get { @@ -16170,7 +16320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_655 { get { @@ -16180,7 +16330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_656 { get { @@ -16190,7 +16340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_657 { get { @@ -16200,7 +16350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_658 { get { @@ -16210,7 +16360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_659 { get { @@ -16220,7 +16370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_66 { get { @@ -16230,7 +16380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_660 { get { @@ -16240,7 +16390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_661 { get { @@ -16250,7 +16400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_662 { get { @@ -16260,7 +16410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_663 { get { @@ -16270,7 +16420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_664 { get { @@ -16280,7 +16430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_665 { get { @@ -16290,7 +16440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_666 { get { @@ -16300,7 +16450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_667 { get { @@ -16310,7 +16460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_668 { get { @@ -16320,7 +16470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_669 { get { @@ -16330,7 +16480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_67 { get { @@ -16340,7 +16490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_670 { get { @@ -16350,7 +16500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_671 { get { @@ -16360,7 +16510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_672 { get { @@ -16370,7 +16520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_673 { get { @@ -16380,7 +16530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_674 { get { @@ -16390,7 +16540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_675 { get { @@ -16400,7 +16550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_676 { get { @@ -16410,7 +16560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_677 { get { @@ -16420,7 +16570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_678 { get { @@ -16430,7 +16580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_679 { get { @@ -16440,7 +16590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_68 { get { @@ -16450,7 +16600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_680 { get { @@ -16460,7 +16610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_681 { get { @@ -16470,7 +16620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_682 { get { @@ -16480,7 +16630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_683 { get { @@ -16490,7 +16640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_684 { get { @@ -16500,7 +16650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_685 { get { @@ -16510,7 +16660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_686 { get { @@ -16520,7 +16670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_687 { get { @@ -16530,7 +16680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_688 { get { @@ -16540,7 +16690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_69 { get { @@ -16550,7 +16700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_699 { get { @@ -16560,7 +16710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_7 { get { @@ -16570,7 +16720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_70 { get { @@ -16580,7 +16730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_704 { get { @@ -16590,7 +16740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_708 { get { @@ -16600,7 +16750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_709 { get { @@ -16610,7 +16760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_71 { get { @@ -16620,7 +16770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_710 { get { @@ -16630,7 +16780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_711 { get { @@ -16640,7 +16790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_715 { get { @@ -16650,7 +16800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_72 { get { @@ -16660,7 +16810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_73 { get { @@ -16670,7 +16820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_74 { get { @@ -16680,7 +16830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_75 { get { @@ -16690,7 +16840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_752 { get { @@ -16700,7 +16850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_753 { get { @@ -16710,7 +16860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_754 { get { @@ -16720,7 +16870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_755 { get { @@ -16730,7 +16880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_756 { get { @@ -16740,7 +16890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_757 { get { @@ -16750,7 +16900,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_758 { get { @@ -16760,7 +16910,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_759 { get { @@ -16770,7 +16920,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_76 { get { @@ -16780,7 +16930,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_760 { get { @@ -16790,7 +16940,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_761 { get { @@ -16800,7 +16950,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_762 { get { @@ -16810,7 +16960,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_763 { get { @@ -16820,7 +16970,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_764 { get { @@ -16830,7 +16980,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_767 { get { @@ -16840,7 +16990,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_768 { get { @@ -16850,7 +17000,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_769 { get { @@ -16860,7 +17010,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_77 { get { @@ -16870,7 +17020,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_770 { get { @@ -16880,7 +17030,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_776 { get { @@ -16890,7 +17040,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_777 { get { @@ -16900,7 +17050,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_778 { get { @@ -16910,7 +17060,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_779 { get { @@ -16920,7 +17070,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_78 { get { @@ -16930,7 +17080,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_780 { get { @@ -16940,7 +17090,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_781 { get { @@ -16950,7 +17100,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_782 { get { @@ -16960,7 +17110,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_783 { get { @@ -16970,7 +17120,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_784 { get { @@ -16980,7 +17130,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_785 { get { @@ -16990,7 +17140,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_786 { get { @@ -17000,7 +17150,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_787 { get { @@ -17010,7 +17160,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_788 { get { @@ -17020,7 +17170,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_789 { get { @@ -17030,7 +17180,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_79 { get { @@ -17040,7 +17190,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_790 { get { @@ -17050,7 +17200,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_791 { get { @@ -17060,7 +17210,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_792 { get { @@ -17070,7 +17220,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_793 { get { @@ -17080,7 +17230,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_794 { get { @@ -17090,7 +17240,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_795 { get { @@ -17100,7 +17250,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_796 { get { @@ -17110,7 +17260,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_798 { get { @@ -17120,7 +17270,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_799 { get { @@ -17130,7 +17280,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_8 { get { @@ -17140,7 +17290,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_80 { get { @@ -17150,7 +17300,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_800 { get { @@ -17160,7 +17310,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_801 { get { @@ -17170,7 +17320,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_802 { get { @@ -17180,7 +17330,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_803 { get { @@ -17190,7 +17340,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_804 { get { @@ -17200,7 +17350,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_805 { get { @@ -17210,7 +17360,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_806 { get { @@ -17220,7 +17370,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_81 { get { @@ -17230,7 +17380,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_82 { get { @@ -17240,7 +17390,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_83 { get { @@ -17250,7 +17400,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_836 { get { @@ -17260,7 +17410,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_84 { get { @@ -17270,7 +17420,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_846 { get { @@ -17280,7 +17430,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_849 { get { @@ -17290,7 +17440,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_85 { get { @@ -17300,7 +17450,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_851 { get { @@ -17310,7 +17460,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_852 { get { @@ -17320,7 +17470,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_853 { get { @@ -17330,7 +17480,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_854 { get { @@ -17340,7 +17490,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_855 { get { @@ -17350,7 +17500,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_856 { get { @@ -17360,7 +17510,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_86 { get { @@ -17370,7 +17520,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_87 { get { @@ -17380,7 +17530,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_879 { get { @@ -17390,7 +17540,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_88 { get { @@ -17400,7 +17550,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_880 { get { @@ -17410,7 +17560,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_881 { get { @@ -17420,7 +17570,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_882 { get { @@ -17430,7 +17580,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_883 { get { @@ -17440,7 +17590,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_884 { get { @@ -17450,7 +17600,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_89 { get { @@ -17460,7 +17610,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_9 { get { @@ -17470,7 +17620,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_90 { get { @@ -17480,7 +17630,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_904 { get { @@ -17490,7 +17640,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_905 { get { @@ -17500,7 +17650,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_906 { get { @@ -17510,7 +17660,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_907 { get { @@ -17520,7 +17670,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_908 { get { @@ -17530,7 +17680,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_909 { get { @@ -17540,7 +17690,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_91 { get { @@ -17550,7 +17700,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_910 { get { @@ -17560,7 +17710,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_911 { get { @@ -17570,7 +17720,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_912 { get { @@ -17580,7 +17730,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_913 { get { @@ -17590,7 +17740,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_914 { get { @@ -17600,7 +17750,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_915 { get { @@ -17610,7 +17760,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_916 { get { @@ -17620,7 +17770,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_917 { get { @@ -17630,7 +17780,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_918 { get { @@ -17640,7 +17790,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_919 { get { @@ -17650,7 +17800,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_92 { get { @@ -17660,7 +17810,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_920 { get { @@ -17670,7 +17820,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_93 { get { @@ -17680,7 +17830,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_94 { get { @@ -17690,7 +17840,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_95 { get { @@ -17700,7 +17850,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_96 { get { @@ -17710,7 +17860,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_97 { get { @@ -17720,7 +17870,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_98 { get { @@ -17730,7 +17880,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_99 { get { @@ -17740,7 +17890,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_tm { get { @@ -17750,7 +17900,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17764,7 +17914,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_de { get { @@ -17773,7 +17923,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17787,7 +17937,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_en { get { @@ -17796,7 +17946,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = Inglés ///! lang_jp.txt = Japonés @@ -17810,7 +17960,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THIS [rest of string was truncated]";. + ///- DO NOT CHANGE THIS [resto de la cadena truncado]";. /// public static string lang_es { get { @@ -17819,7 +17969,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17833,7 +17983,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_fr { get { @@ -17842,7 +17992,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17856,7 +18006,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_it { get { @@ -17865,7 +18015,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17879,7 +18029,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_ja { get { @@ -17888,7 +18038,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17902,7 +18052,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_ko { get { @@ -17911,7 +18061,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17925,7 +18075,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_pt { get { @@ -17934,7 +18084,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ! PKHeX Interface Customization File + /// Busca una cadena traducida similar a ! PKHeX Interface Customization File ///! Languages: Save this file accordingly and put it in the same folder as PKHeX's executable. ///! lang_en.txt = English ///! lang_jp.txt = Japanese @@ -17948,7 +18098,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [rest of string was truncated]";. + ///- DO NOT CHANGE THI [resto de la cadena truncado]";. /// public static string lang_zh { get { @@ -17957,7 +18107,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap language { get { @@ -17967,7 +18117,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ID,Language + /// Busca una cadena traducida similar a ID,Language ///1,JPN (日本語) ///2,ENG (English) ///3,FRE (Français) @@ -17985,7 +18135,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap load { get { @@ -17995,7 +18145,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap locked { get { @@ -18005,7 +18155,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_ao { get { @@ -18015,7 +18165,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_b2w2 { get { @@ -18025,7 +18175,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_bw { get { @@ -18035,7 +18185,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_c { get { @@ -18045,7 +18195,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_dp { get { @@ -18055,7 +18205,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_e { get { @@ -18065,7 +18215,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_fr { get { @@ -18075,7 +18225,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_gs { get { @@ -18085,7 +18235,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_hgss { get { @@ -18095,7 +18245,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_lg { get { @@ -18105,7 +18255,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_pt { get { @@ -18115,7 +18265,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_rb { get { @@ -18125,7 +18275,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_rs { get { @@ -18135,7 +18285,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_sm { get { @@ -18145,7 +18295,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_xy { get { @@ -18155,7 +18305,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] lvlmove_y { get { @@ -18165,7 +18315,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap main { get { @@ -18175,7 +18325,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap nocheck { get { @@ -18185,7 +18335,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap open { get { @@ -18195,7 +18345,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap other { get { @@ -18205,7 +18355,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap party { get { @@ -18215,7 +18365,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_ao { get { @@ -18225,7 +18375,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_b2w2 { get { @@ -18235,7 +18385,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_bw { get { @@ -18245,7 +18395,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_c { get { @@ -18255,7 +18405,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_dp { get { @@ -18265,7 +18415,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_e { get { @@ -18275,7 +18425,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_fr { get { @@ -18285,7 +18435,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_gs { get { @@ -18295,7 +18445,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_hgss { get { @@ -18305,7 +18455,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_lg { get { @@ -18315,7 +18465,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_pt { get { @@ -18325,7 +18475,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_rb { get { @@ -18335,7 +18485,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_rs { get { @@ -18345,7 +18495,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_sm { get { @@ -18355,7 +18505,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_xy { get { @@ -18365,7 +18515,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] personal_y { get { @@ -18375,7 +18525,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] pgldings_normalregular { get { @@ -18385,7 +18535,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 20170318. + /// Busca una cadena traducida similar a 20170318. /// public static string ProgramVersion { get { @@ -18394,7 +18544,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon { get { @@ -18404,7 +18554,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon_alt { get { @@ -18414,7 +18564,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ID,3DS Region + /// Busca una cadena traducida similar a ID,3DS Region ///0,Japan (日本) ///1,Americas (NA/SA) ///2,Europe (EU/AU) @@ -18429,7 +18579,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap report { get { @@ -18439,7 +18589,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonability { get { @@ -18449,7 +18599,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitydouble { get { @@ -18459,7 +18609,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitygreat { get { @@ -18469,7 +18619,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitymulti { get { @@ -18479,7 +18629,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitypair { get { @@ -18489,7 +18639,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilityworld { get { @@ -18499,7 +18649,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonalert { get { @@ -18509,7 +18659,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonartist { get { @@ -18519,7 +18669,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerexpert { get { @@ -18529,7 +18679,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattleroyale { get { @@ -18539,7 +18689,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerskillful { get { @@ -18549,7 +18699,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreegreat { get { @@ -18559,7 +18709,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreemaster { get { @@ -18569,7 +18719,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbestfriends { get { @@ -18579,7 +18729,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbirthday { get { @@ -18589,7 +18739,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncareless { get { @@ -18599,7 +18749,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionalola { get { @@ -18609,7 +18759,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionbattle { get { @@ -18619,7 +18769,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong3hoenn { get { @@ -18629,7 +18779,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong6hoenn { get { @@ -18639,7 +18789,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionkalos { get { @@ -18649,7 +18799,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionnational { get { @@ -18659,7 +18809,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionregional { get { @@ -18669,7 +18819,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionsinnoh { get { @@ -18679,7 +18829,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionworld { get { @@ -18689,7 +18839,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonclassic { get { @@ -18699,7 +18849,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonconteststar { get { @@ -18709,7 +18859,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle { get { @@ -18719,7 +18869,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle2 { get { @@ -18729,7 +18879,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest { get { @@ -18739,7 +18889,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest2 { get { @@ -18749,7 +18899,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountry { get { @@ -18759,7 +18909,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbondowncast { get { @@ -18769,7 +18919,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonearth { get { @@ -18779,7 +18929,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboneffort { get { @@ -18789,7 +18939,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonevent { get { @@ -18799,7 +18949,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonfootprint { get { @@ -18809,7 +18959,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beauty { get { @@ -18819,7 +18969,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautyhyper { get { @@ -18829,7 +18979,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautymaster { get { @@ -18839,7 +18989,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautysuper { get { @@ -18849,7 +18999,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cool { get { @@ -18859,7 +19009,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolhyper { get { @@ -18869,7 +19019,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolmaster { get { @@ -18879,7 +19029,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolsuper { get { @@ -18889,7 +19039,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cute { get { @@ -18899,7 +19049,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutehyper { get { @@ -18909,7 +19059,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutemaster { get { @@ -18919,7 +19069,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutesuper { get { @@ -18929,7 +19079,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smart { get { @@ -18939,7 +19089,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smarthyper { get { @@ -18949,7 +19099,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartmaster { get { @@ -18959,7 +19109,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartsuper { get { @@ -18969,7 +19119,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3tough { get { @@ -18979,7 +19129,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughhyper { get { @@ -18989,7 +19139,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughmaster { get { @@ -18999,7 +19149,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughsuper { get { @@ -19009,7 +19159,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beauty { get { @@ -19019,7 +19169,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautygreat { get { @@ -19029,7 +19179,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautymaster { get { @@ -19039,7 +19189,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautyultra { get { @@ -19049,7 +19199,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cool { get { @@ -19059,7 +19209,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolgreat { get { @@ -19069,7 +19219,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolmaster { get { @@ -19079,7 +19229,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolultra { get { @@ -19089,7 +19239,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cute { get { @@ -19099,7 +19249,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutegreat { get { @@ -19109,7 +19259,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutemaster { get { @@ -19119,7 +19269,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cuteultra { get { @@ -19129,7 +19279,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smart { get { @@ -19139,7 +19289,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartgreat { get { @@ -19149,7 +19299,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartmaster { get { @@ -19159,7 +19309,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartultra { get { @@ -19169,7 +19319,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4tough { get { @@ -19179,7 +19329,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughgreat { get { @@ -19189,7 +19339,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughmaster { get { @@ -19199,7 +19349,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughultra { get { @@ -19209,7 +19359,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeous { get { @@ -19219,7 +19369,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeousroyal { get { @@ -19229,7 +19379,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonlegend { get { @@ -19239,7 +19389,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmasterbeauty { get { @@ -19249,7 +19399,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercleverness { get { @@ -19259,7 +19409,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercoolness { get { @@ -19269,7 +19419,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercuteness { get { @@ -19279,7 +19429,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastertoughness { get { @@ -19289,7 +19439,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonnational { get { @@ -19299,7 +19449,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonpremier { get { @@ -19309,7 +19459,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrecord { get { @@ -19319,7 +19469,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrelax { get { @@ -19329,7 +19479,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonroyal { get { @@ -19339,7 +19489,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonshock { get { @@ -19349,7 +19499,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsmile { get { @@ -19359,7 +19509,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsnooze { get { @@ -19369,7 +19519,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsouvenir { get { @@ -19379,7 +19529,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonspecial { get { @@ -19389,7 +19539,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbontraining { get { @@ -19399,7 +19549,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonvictory { get { @@ -19409,7 +19559,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwinning { get { @@ -19419,7 +19569,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwishing { get { @@ -19429,7 +19579,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonworld { get { @@ -19439,7 +19589,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap savePKM { get { @@ -19449,7 +19599,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap saveSAV { get { @@ -19459,7 +19609,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap settings { get { @@ -19469,7 +19619,7 @@ public class Resources { } /// - /// Looks up a localized string similar to If you are having issues viewing certain symbols/text: Options -> Unicode + /// Busca una cadena traducida similar a If you are having issues viewing certain symbols/text: Options -> Unicode /// ///// Main Window /// @@ -19489,7 +19639,7 @@ public class Resources { ///Control + Click on... ///- Species: Import Showdown/Smogon set from Clipboard. ///- Nickname/OT box: Bring up the ingame-special characters. - ///- Individual [rest of string was truncated]";. + ///- Individual [resto de la cadena truncado]";. /// public static string shortcuts { get { @@ -19498,7 +19648,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap showdown { get { @@ -19508,7 +19658,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel { get { @@ -19518,7 +19668,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel1 { get { @@ -19528,7 +19678,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDrag { get { @@ -19538,7 +19688,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet { get { @@ -19548,7 +19698,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet1 { get { @@ -19558,7 +19708,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans { get { @@ -19568,7 +19718,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans1 { get { @@ -19578,7 +19728,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView { get { @@ -19588,7 +19738,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView1 { get { @@ -19598,7 +19748,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,東京都,Tokyo,Tokyo,Tokio,Tokyo,Tokio,东京都,도쿄 도, ///003,北海道,Hokkaido,Hokkaido,Hokkaido,Hokkaido,Hokaido,北海道,홋카이도, @@ -19607,7 +19757,7 @@ public class Resources { ///006,宮城県,Miyagi,Miyagi,Miyagi,Miyagi,Miyagi,宫城县,미야기 현, ///007,秋田県,Akita,Akita,Akita,Akita,Akita,秋田县,아키타 현, ///008,山形県,Yamagata,Yamagata,Yamagata,Yamagata,Yamagata,山形县,야마가타 현, - ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [rest of string was truncated]";. + ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [resto de la cadena truncado]";. /// public static string sr_001 { get { @@ -19616,7 +19766,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라,. /// @@ -19627,14 +19777,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・ジョン,Saint John,Saint-Jean,Saint John's,Saint John,Saint John,圣约翰区,세인트존, ///003,バーブーダ島,Barbuda,Barbuda,Barbuda,Barbuda,Barbuda,巴布达岛,바부다, ///004,セント・ジョージ,Saint George,Saint-Georges,Saint George,Saint George,Saint George,圣乔治区,세인트조지, ///005,セント・メアリー,Saint Mary,Sainte-Marie,Saint Mary,Saint Mary,Saint Mary,圣玛丽区,세인트메리, ///006,セント・ポール,Saint Paul,Saint-Paul,Saint Paul,Saint Paul,Saint Paul,圣保罗区,세인트폴, - ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [rest of string was truncated]";. + ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [resto de la cadena truncado]";. /// public static string sr_009 { get { @@ -19643,14 +19793,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,特別区,Distrito Federal,District Fédéral,Autonome Stadt Buenos Aires,Capitale Federale,Ciudad de Buenos Aires,联邦首都区,아르헨티나 연방구, ///003,ブエノスアイレス州,Buenos Aires,Buenos Aires,Buenos Aires,Buenos Aires,Provincia de Buenos Aires,布宜诺斯艾利斯省,부에노스아이레스 주, ///004,カタマルカ州,Catamarca,Catamarca,Catamarca,Catamarca,Catamarca,卡塔马卡省,카타마르카 주, ///005,チャコ州,Chaco,Chaco,Chaco,Chaco,Chaco,查科省,차코 주, ///006,チュブト州,Chubut,Chubut,Chubut,Chubut,Chubut,丘布特省,추부트 주, - ///007,コルドバ州,Córdoba,Córdoba [rest of string was truncated]";. + ///007,コルドバ州,Córdoba,Córdoba [resto de la cadena truncado]";. /// public static string sr_010 { get { @@ -19659,7 +19809,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바,. /// @@ -19670,7 +19820,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마,. /// @@ -19681,7 +19831,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스,. /// @@ -19692,7 +19842,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,カヨー州,Cayo,Cayo,Cayo,Cayo,Cayo,卡约区,카요 주, ///003,ベリーズ州,Belize,Belize,Belize,Belize,Belice,伯利兹城,벨리즈 주, @@ -19708,7 +19858,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ラパス県,La Paz,La Paz,La Paz,La Paz,La Paz,拉巴斯省,라파스 주, ///003,チュキサカ県,Chuquisaca,Chuquisaca,Chuquisaca,Chuquisaca,Chuquisaca,丘基萨卡省,추키사카 주, @@ -19717,7 +19867,7 @@ public class Resources { ///006,オルロ県,Oruro,Oruro,Oruro,Oruro,Oruro,奥鲁罗省,오루로 주, ///007,パンド県,Pando,Pando,Pando,Pando,Pando,潘多省,판도 주, ///008,ポトシ県,Potosí,Potosí,Potosí,Potosí,Potosí,波托西省,포토시 주, - ///009,サンタ・クルス県,Santa Cruz [rest of string was truncated]";. + ///009,サンタ・クルス県,Santa Cruz [resto de la cadena truncado]";. /// public static string sr_015 { get { @@ -19726,7 +19876,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・フェデラル州,Distrito Federal,District Fédéral,Distrito Federal,Distretto Federale,Distrito Federal,联邦区,브라질 연방구, ///003,アクレ州,Acre,Acre,Acre,Acre,Acre,阿克里州,아크리 주, @@ -19734,7 +19884,7 @@ public class Resources { ///005,アマパー州,Amapá,Amapá,Amapá,Amapá,Amapá,阿马帕州,아마파 주, ///006,アマゾナス州,Amazonas,Amazonas,Amazonas,Amazonas,Amazonas,亚马孙州,아마조나스 주, ///007,バイア州,Bahia,Bahia,Bahia,Bahia,Bahía,巴伊亚州,바이아 주, - ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [rest of string was truncated]";. + ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [resto de la cadena truncado]";. /// public static string sr_016 { get { @@ -19743,7 +19893,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,英領ヴァージン諸島,British Virgin Islands,Îles Vierges britanniques,Britische Jungferninseln,Isole Vergini Britanniche,Islas Vírgenes Británicas,英属维尔京群岛,영국령 버진아일랜드,. /// @@ -19754,14 +19904,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,オンタリオ州,Ontario,Ontario,Ontario,Ontario,Ontario,安大略省,온타리오 주, ///003,アルバータ州,Alberta,Alberta,Alberta,Alberta,Alberta,艾伯塔省,앨버타 주, ///004,ブリティッシュ・コロンビア州,British Columbia,Colombie-Britannique,Britisch-Kolumbien,Columbia Britannica,Columbia Británica,不列颠哥伦比亚省,브리티시컬럼비아 주, ///005,マニトバ州,Manitoba,Manitoba,Manitoba,Manitoba,Manitoba,马尼托巴省,매니토바 주, ///006,ニュー・ブランズウィック州,New Brunswick,Nouveau-Brunswick,Neubraunschweig,Nuovo Brunswick,Nuevo Brunswick,新不伦瑞克省,뉴브런즈윅 주, - ///00 [rest of string was truncated]";. + ///00 [resto de la cadena truncado]";. /// public static string sr_018 { get { @@ -19770,7 +19920,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ケイマン諸島,Cayman Islands,Îles Caïmans,Kaimaninseln,Isole Cayman,Islas Caimán,开曼群岛,케이맨 제도,. /// @@ -19781,11 +19931,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,レジョン・メトロポリタナ州,Región Metropolitana,Région Métropolitaine de Santiago,Región Metropolitana,Regione Metropolitana di Santiago,Región Metropolitana,圣地亚哥首都区,산티아고 수도주, ///003,バルパライソ州,Valparaíso,Valparaiso,Valparaíso (Region V),Valparaíso,Valparaíso,瓦尔帕莱索大区,발파라이소 주, - ///004,アイセン・デル・G・カルロス・イバニェス・デル・カンポ州,Aisén del General Carlos Ibáñez del Campo,Aisén del General Carlos Ibáñez del Campo,Aisén (Region XI),Aisén del General Carlos Ibáñez del Campo,Aisén del Ge [rest of string was truncated]";. + ///004,アイセン・デル・G・カルロス・イバニェス・デル・カンポ州,Aisén del General Carlos Ibáñez del Campo,Aisén del General Carlos Ibáñez del Campo,Aisén (Region XI),Aisén del General Carlos Ibáñez del Campo,Aisén del Ge [resto de la cadena truncado]";. /// public static string sr_020 { get { @@ -19794,14 +19944,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・キャピタル,Distrito Capital,District Capital de Santa Fe de Bogotá,Bogotá D.C.,Distretto Capitale,Distrito Capital,波哥大首都区,콜롬비아 수도주, ///003,クンディナマルカ県,Cundinamarca,Cundinamarca,Cundinamarca,Cundinamarca,Cundinamarca,昆迪纳马卡省,쿤디나마르카 주, ///004,アマソナス県,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙省,아마소나스 주, ///005,アンティオキア県,Antioquia,Antioquia,Antioquia,Antioquia,Antioquia,安提奥基亚省,안티오키아 주, ///006,アラウカ県,Arauca,Arauca,Arauca,Arauca,Arauca,阿劳卡省,아라우카 주, - ///007,アトラン [rest of string was truncated]";. + ///007,アトラン [resto de la cadena truncado]";. /// public static string sr_021 { get { @@ -19810,7 +19960,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,サン・ホセ州,San José,San José,San José,San José,San José,圣何塞省,산호세 주, ///003,アラフエラ州,Alajuela,Alajuela,Alajuela,Alajuela,Alajuela,阿拉胡埃拉省,알라후엘라 주, @@ -19818,7 +19968,7 @@ public class Resources { ///005,グアナカステ州,Guanacaste,Guanacaste,Guanacaste,Guanacaste,Guanacaste,瓜纳卡斯特省,과나카스테 주, ///006,エレディア州,Heredia,Heredia,Heredia,Heredia,Heredia,埃雷迪亚省,에레디아 주, ///007,リモン州,Limón,Limón,Limón,Limón,Limón,利蒙省,리몬 주, - ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [rest of string was truncated]";. + ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [resto de la cadena truncado]";. /// public static string sr_022 { get { @@ -19827,7 +19977,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ドミニカ国,Dominica,Dominique,Dominica,Dominica,Dominica,多米尼克,도미니카 연방,. /// @@ -19838,7 +19988,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・ナショナル首都圏,Distrito Nacional,District National,Distrito Nacional,Distretto Nazionale,Distrito Nacional,国家区,도미니카 행정구, ///003,アスア,Azua,Azua,Azua,Azua,Azua,阿苏阿省,아수아, @@ -19846,7 +19996,7 @@ public class Resources { ///005,バラオナ,Barahona,Barahona,Barahona,Barahona,Barahona,巴拉奥纳省,바라오나, ///006,ダハボン,Dajabón,Dajabón,Dajabón,Dajabón,Dajabón,达哈朋省,다하본, ///007,ドゥアルテ,Duarte,Duarte,Duarte,Duarte,Duarte,杜华德省,두아르테, - ///008,エスパイジャト,Espaillat,Espaillat,Espa [rest of string was truncated]";. + ///008,エスパイジャト,Espaillat,Espaillat,Espa [resto de la cadena truncado]";. /// public static string sr_024 { get { @@ -19855,7 +20005,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ピチンチャ,Pichincha,Pichincha,Pichincha,Pichincha,Pichincha,皮钦查省,피친차, ///003,ガラパゴス,Galápagos,Galápagos,Galapagosinseln,Galápagos,Galápagos,加拉帕戈斯省,갈라파고스, @@ -19864,7 +20014,7 @@ public class Resources { ///006,カニャル,Cañar,Cañar,Cañar,Cañar,Cañar,卡尼亚尔省,카냐르, ///007,カルチ,Carchi,Carchi,Carchi,Carchi,Carchi,卡尔奇省,카르치, ///008,チンボラソ,Chimborazo,Chimborazo,Chimborazo,Chimborazo,Chimborazo,钦博拉索省,침보라소, - ///009, [rest of string was truncated]";. + ///009, [resto de la cadena truncado]";. /// public static string sr_025 { get { @@ -19873,14 +20023,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,サン・サルバドル県,San Salvador,San Salvador,San Salvador,San Salvador,San Salvador,圣萨尔瓦多省,산살바도르 주, ///003,アワチャパン県,Ahuachapán,Ahuachapán,Ahuachapán,Ahuachapán,Ahuachapán,阿瓦查潘省,아우아차판 주, ///004,カバニャス県,Cabañas,Cabañas,Cabañas,Cabañas,Cabañas,卡瓦尼亚斯省,카바냐스 주, ///005,チャラテナンゴ県,Chalatenango,Chalatenango,Chalatenango,Chalatenango,Chalatenango,查拉特南戈省,찰라테낭고 주, ///006,クスカトラン県,Cuscatlán,Cuscatlán,Cuscatlán,Cuscatlán,Cuscatlán,库斯卡特兰省,쿠스카틀란 주, - ///007,ラ・リベルター県,La Libertad,La Liber [rest of string was truncated]";. + ///007,ラ・リベルター県,La Libertad,La Liber [resto de la cadena truncado]";. /// public static string sr_026 { get { @@ -19889,7 +20039,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,フランス領ギアナ,French Guiana,Guyane,Französisch-Guyana,Guyana Francese,Guayana Francesa,法属圭亚那,프랑스령 기아나,. /// @@ -19900,7 +20050,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グレナダ,Grenada,Grenade,Grenada,Grenada,Granada,格林纳达,그레나다,. /// @@ -19911,7 +20061,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グアドループ,Guadeloupe,Guadeloupe,Guadeloupe,Guadalupa,Guadalupe,瓜德罗普,과들루프,. /// @@ -19922,14 +20072,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,グアテマラ県,Guatemala,Guatemala,Guatemala,Guatemala,Guatemala,危地马拉省,과테말라 주, ///003,アルタ・べラパス県,Alta Verapaz,Alta Verapaz,Alta Verapaz,Alta Verapaz,Alta Verapaz,上韦拉帕斯省,알타베라파스 주, ///004,バハ・べラパス県,Baja Verapaz,Baja Verapaz,Baja Verapaz,Baja Verapaz,Baja Verapaz,下韦拉帕斯省,바하베라파스 주, ///005,チマルテナンゴ県,Chimaltenango,Chimaltenango,Chimaltenango,Chimaltenango,Chimaltenango,奇马尔特南戈省,치말테낭고 주, ///006,チキムラ県,Chiquimula,Chiquimula,Chiquimula,Chiquimula,Chiquimula,奇基穆拉省,치키물라 주, - ///007 [rest of string was truncated]";. + ///007 [resto de la cadena truncado]";. /// public static string sr_030 { get { @@ -19938,12 +20088,12 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,デメララ・マハイカ州,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,Demerara-Mahaica,德梅拉拉-马海卡区,데메라라-마하이카 주, ///003,バリマ・ワイニ州,Barima-Waini,Barima-Waini,Barima-Waini,Barima-Waini,Barima-Waini,巴里马-瓦伊尼区,바리마-와이니 주, ///004,クユニ・マザルニ州,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,Cuyuni-Mazaruni,库尤尼-马扎鲁尼区,쿠유니-마자루니 주, - ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [rest of string was truncated]";. + ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [resto de la cadena truncado]";. /// public static string sr_031 { get { @@ -19952,7 +20102,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,西県,Ouest,Ouest,Ouest,Ovest,Oeste,西部省,서부, ///003,北西県,Nord-Ouest,Nord-Ouest,Nord-Ouest,Nord-Ovest,Noroeste,西北省,북서부, @@ -19961,7 +20111,7 @@ public class Resources { ///006,湾岸県,Grand'Anse,Grande-Anse,Grand'Anse,Grande Anse,Grand'Anse,大湾省,그랑당스, ///007,北県,Nord,Nord,Nord,Nord,Norte,北部省,북부, ///008,北東県,Nord-Est,Nord-Est,Nord-Est,Nord-Est,Noreste,东北省,북동부, - ///009,南県,Sud,Sud,Sud [rest of string was truncated]";. + ///009,南県,Sud,Sud,Sud [resto de la cadena truncado]";. /// public static string sr_032 { get { @@ -19970,7 +20120,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,フランシスコ・モラサン,Francisco Morazán,Francisco Morazán,Francisco Morazán,Francisco Morazán,Francisco Morazán,弗朗西斯科-莫拉桑省,프란시스코모라산, ///003,アトランティダ,Atlántida,Atlántida,Atlántida,Atlántida,Atlántida,阿特兰蒂达省,아틀란티다, @@ -19978,7 +20128,7 @@ public class Resources { ///005,コロン,Colón,Colón,Colón,Colón,Colón,科隆省,콜론, ///006,コマヤグア,Comayagua,Comayagua,Comayagua,Comayagua,Comayagua,科马亚瓜省,코마야과, ///007,コパン,Copán,Copán,Copán,Copán,Copán,科潘省,코판, - ///008,コルテス [rest of string was truncated]";. + ///008,コルテス [resto de la cadena truncado]";. /// public static string sr_033 { get { @@ -19987,14 +20137,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・トーマス,Saint Thomas,Saint-Thomas,Saint Thomas,Saint Thomas,Saint Thomas,圣托马斯区,세인트토머스, ///003,クラレンドン,Clarendon,Clarendon,Clarendon,Clarendon,Clarendon,克拉伦登区,클래런던, ///004,ハノーバー,Hanover,Hanover,Hanover,Hanover,Hanover,汉诺威区,해노버, ///005,マンチェスター,Manchester,Manchester,Manchester,Manchester,Manchester,曼彻斯特区,맨체스터, ///006,ポートランド,Portland,Portland,Portland,Portland,Portland,波特兰区,포틀랜드, - ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [rest of string was truncated]";. + ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [resto de la cadena truncado]";. /// public static string sr_034 { get { @@ -20003,7 +20153,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルティニーク,Martinique,Martinique,Martinique,Martinica,Martinica,马提尼克,마르티니크,. /// @@ -20014,12 +20164,12 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト・フェデラル連邦区,Distrito Federal,District Fédéral,México D.F.,Distretto Federale,Distrito Federal,联邦区,멕시코 연방구, ///003,アグアスカリエンテス州,Aguascalientes,Aguascalientes,Aguascalientes,Aguascalientes,Aguascalientes,阿瓜斯卡连特斯州,아과스칼리엔테스 주, ///004,バハ・カリフォルニア州,Baja California,Basse-Californie,Niederkalifornien,Bassa California,Baja California,下加里福尼亚州,바하칼리포르니아 주, - ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [rest of string was truncated]";. + ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [resto de la cadena truncado]";. /// public static string sr_036 { get { @@ -20028,7 +20178,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モントセラト,Montserrat,Montserrat,Montserrat,Montserrat,Montserrat,蒙特塞拉特,몬트세랫,. /// @@ -20039,7 +20189,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,オランダ領アンティル,Netherlands Antilles,Antilles néerlandaises,Niederländische Antillen,Antille Olandesi,Antillas Neerlandesas,荷属安的列斯,네덜란드령 앤틸리스,. /// @@ -20050,7 +20200,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マナグア,Managua,Managua,Managua,Managua,Managua,马那瓜省,마나과, ///003,ボアコ,Boaco,Boaco,Boaco,Boaco,Boaco,博阿科省,보아코, @@ -20059,7 +20209,7 @@ public class Resources { ///006,チョンタレス,Chontales,Chontales,Chontales,Chontales,Chontales,琼塔莱斯省,촌탈레스, ///007,エステリ,Estelí,Estelí,Estelí,Estelí,Estelí,埃斯特利省,에스텔리, ///008,グラナダ,Granada,Granada,Granada,Granada,Granada,格拉纳达省,그라나다, - ///009,ヒノテガ,Jinotega,J [rest of string was truncated]";. + ///009,ヒノテガ,Jinotega,J [resto de la cadena truncado]";. /// public static string sr_039 { get { @@ -20068,7 +20218,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パナマ,Panamá,Panama,Panama,Panamá,Panamá,巴拿马省,파나마, ///003,ボカズ・デル・トーロ,Bocas del Toro,Bocas del Toro,Bocas del Toro,Bocas del Toro,Bocas del Toro,博卡斯-德尔托罗省,보카스델토로, @@ -20077,7 +20227,7 @@ public class Resources { ///006,コロン,Colón,Colón,Colón,Colón,Colón,科隆省,콜론, ///007,ダリエン,Darién,Darién,Darién,Darién,Darién,达连省,다리엔, ///008,エレーラ,Herrera,Herrera,Herrera,Herrera,Herrera,埃雷拉省,에레라, - ///009,ロス・サントス,Los [rest of string was truncated]";. + ///009,ロス・サントス,Los [resto de la cadena truncado]";. /// public static string sr_040 { get { @@ -20086,7 +20236,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セントラル県,Central,Central,Central,Central,Central,中央省,센트랄 주, ///003,アルト・パラナ県,Alto Paraná,Alto Paraná,Alto Paraná,Alto Paraná,Alto Paraná,上巴拉那省,알토파라나 주, @@ -20094,7 +20244,7 @@ public class Resources { ///005,カアグアスー県,Caaguazú,Caaguazú,Caaguazú,Caaguazú,Caaguazú,卡瓜苏省,카아과수 주, ///006,カアサパ県,Caazapá,Caazapá,Caazapá,Caazapá,Caazapá,卡萨帕省,카아사파 주, ///007,コンセプシオン県,Concepción,Concepción,Concepción,Concepción,Concepción,康塞普西翁省,콘셉시온 주, - ///008,コルディリェラ県,Cord [rest of string was truncated]";. + ///008,コルディリェラ県,Cord [resto de la cadena truncado]";. /// public static string sr_041 { get { @@ -20103,7 +20253,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リマ,Lima,Province de Lima,Lima Metropolitana,Lima,Lima,利马省,리마, ///003,アマソナス,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙省,아마소나스, @@ -20111,7 +20261,7 @@ public class Resources { ///005,アプリマック,Apurímac,Apurímac,Apurímac,Apurímac,Apurímac,阿普里马克省,아푸리막, ///006,アレキパ,Arequipa,Arequipa,Arequipa,Arequipa,Arequipa,阿雷基帕省,아레키파, ///007,アヤクーチョ,Ayacucho,Ayacucho,Ayacucho,Ayacucho,Ayacucho,阿亚库乔省,아야쿠초, - ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [rest of string was truncated]";. + ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [resto de la cadena truncado]";. /// public static string sr_042 { get { @@ -20120,11 +20270,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,セント・ジョージ・バセテール,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,Saint George Basseterre,圣乔治巴斯特尔区,세인트조지바스테르, ///003,クライスト・チャーチ・ニコラタウン,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,Christ Church Nichola Town,克赖斯特彻奇尼古拉镇区,크라이스트처치니콜라타운, - ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [rest of string was truncated]";. + ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [resto de la cadena truncado]";. /// public static string sr_043 { get { @@ -20133,7 +20283,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントルシア,St. Lucia,Sainte-Lucie,St. Lucia,Santa Lucia,Santa Lucía,圣卢西亚,세인트루시아,. /// @@ -20144,7 +20294,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントビンセント・グレナディーン,St. Vincent and the Grenadines,Saint-Vincent-et-les-Grenadines,St. Vincent und die Grenadinen,Saint Vincent e Grenadine,San Vicente y las Granadinas,圣文森特和格林纳丁斯,세인트빈센트 그레나딘,. /// @@ -20155,7 +20305,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パラマリボ,Paramaribo,Paramaribo,Paramaribo,Paramaribo,Paramaribo,帕拉马里博市,파라마리보, ///003,ブロコポンド,Brokopondo,Brokopondo,Brokopondo,Brokopondo,Brokopondo,布罗科蓬多区,브로코폰도, @@ -20163,7 +20313,7 @@ public class Resources { ///005,コロニー,Coronie,Coronie,Coronie,Coronie,Coronie,科罗尼区,코로니, ///006,マロウィネ,Marowijne,Marowijne,Marowijne,Marowijne,Marowijne,马罗韦讷区,마로베이너, ///007,ニッケリー,Nickerie,Nickerie,Nickerie,Nickerie,Nickerie,尼克里区,니케리, - ///008,パラ,Para,P [rest of string was truncated]";. + ///008,パラ,Para,P [resto de la cadena truncado]";. /// public static string sr_046 { get { @@ -20172,7 +20322,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ポート・オブ・スペイン,Port-of-Spain,Port d'Espagne,Port-of-Spain,Port of Spain,Puerto España,西班牙港市,포트오브스페인, ///003,アリマ,Arima,Arima,Arima,Arima,Arima,阿里马市,아리마, @@ -20180,7 +20330,7 @@ public class Resources { ///005,マジャロ州,Mayaro,Mayaro,Mayaro,Mayaro,Mayaro,马亚罗郡,마야로 주, ///006,ナリバ州,Nariva,Nariva,Nariva,Nariva,Nariva,纳里瓦郡,나리바 주, ///007,セント・アンドリュー州,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,圣安德鲁郡,세인트앤드루 주, - ///008,セント・デビッド州,Saint David,Saint [rest of string was truncated]";. + ///008,セント・デビッド州,Saint David,Saint [resto de la cadena truncado]";. /// public static string sr_047 { get { @@ -20189,7 +20339,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,タークス・カイコス諸島,Turks and Caicos Islands,Îles Turques-et-Caïques,Turks- und Caicosinseln,Isole Turks e Caicos,Islas Turcas y Caicos,特克斯和凯科斯群岛,터크스 케이커스 제도,. /// @@ -20200,14 +20350,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,コロンビア特別区,District of Columbia,Washington (District de Columbia),District of Columbia,Distretto di Columbia,Distrito de Columbia,哥伦比亚特区,컬럼비아 특별구, ///003,アラスカ州,Alaska,Alaska,Alaska,Alaska,Alaska,阿拉斯加州,알래스카 주, ///004,アラバマ州,Alabama,Alabama,Alabama,Alabama,Alabama,亚拉巴马州,앨라배마 주, ///005,アーカンソー州,Arkansas,Arkansas,Arkansas,Arkansas,Arkansas,阿肯色州,아칸소 주, ///006,アリゾナ州,Arizona,Arizona,Arizona,Arizona,Arizona,亚利桑那州,애리조나 주, - ///007,カリフォルニア州,California,Californie,Kaliforn [rest of string was truncated]";. + ///007,カリフォルニア州,California,Californie,Kaliforn [resto de la cadena truncado]";. /// public static string sr_049 { get { @@ -20216,7 +20366,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,モンテビデオ,Montevideo,Montevideo,Montevideo,Montevideo,Montevideo,蒙得维的亚省,몬테비데오, ///003,アルティガス,Artigas,Artigas,Artigas,Artigas,Artigas,阿蒂加斯省,아르티가스, @@ -20224,7 +20374,7 @@ public class Resources { ///005,セロ・ラルゴ,Cerro Largo,Cerro Largo,Cerro Largo,Cerro Largo,Cerro Largo,塞罗拉尔戈省,세로라르고, ///006,コロニア,Colonia,Colonia,Colonia,Colonia,Colonia,科洛尼亚省,콜로니아, ///007,ドゥラスノ,Durazno,Durazno,Durazno,Durazno,Durazno,杜拉斯诺省,두라스노, - ///008,フロレス,Flores,Flore [rest of string was truncated]";. + ///008,フロレス,Flores,Flore [resto de la cadena truncado]";. /// public static string sr_050 { get { @@ -20233,7 +20383,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,米領バージン諸島,US Virgin Islands,Îles Vierges américaines,Amerikanische Jungferninseln,Isole Vergini Statunitensi,Islas Vírgenes de los EE. UU.,美属维尔京群岛,미국령 버진아일랜드,. /// @@ -20244,7 +20394,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ディストリト首都地区,Distrito Federal,District Fédéral,Caracas D.F.,Distretto Capitale,Distrito Capital,首都区,베네수엘라 연방구, ///003,アマソナス,Amazonas,Amazone,Amazonas,Amazonas,Amazonas,亚马孙边疆区,아마소나스, @@ -20252,7 +20402,7 @@ public class Resources { ///005,アプレ,Apure,Apure,Apure,Apure,Apure,阿普雷州,아푸레, ///006,アラグア,Aragua,Aragua,Aragua,Aragua,Aragua,阿拉瓜州,아라과, ///007,バリナス,Barinas,Barinas,Barinas,Barinas,Barinas,巴里纳斯州,바리나스, - ///008,ボリーバル,Bolívar,Bolív [rest of string was truncated]";. + ///008,ボリーバル,Bolívar,Bolív [resto de la cadena truncado]";. /// public static string sr_052 { get { @@ -20261,7 +20411,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ティラナ州,Tirana,Tirana,Tirana,Tirana,Tirana,地拉那州,티라나 주, ///003,ベラト州,Berat,Berat,Berat,Berat,Berat,培拉特州,베라트 주, @@ -20270,7 +20420,7 @@ public class Resources { ///006,エルバサン州,Elbasan,Elbasan,Elbasan,Elbasan,Elbasan,爱尔巴桑州,엘바산 주, ///007,フィエル州,Fier,Fier,Fier,Fier,Fier,费里州,피에르 주, ///008,ギロカストラ州,Gjirokastër,Gjirokastër,Gjirokastra,Argirocastro,Gjirokastra,吉诺卡斯特州,지로카스터르 주, - ///009,コルチャ州,Korçë,Korçë,Korça, [rest of string was truncated]";. + ///009,コルチャ州,Korçë,Korçë,Korça, [resto de la cadena truncado]";. /// public static string sr_064 { get { @@ -20279,11 +20429,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,オーストラリア首都特別地域,Australian Capital Territory,Territoire de la capitale australienne,Australisches Hauptstadtterritorium,Territorio della Capitale Australiana,Territorio de la Capital Australiana,澳大利亚首都直辖区,오스트레일리아캐피털테리토리, ///003,ニューサウスウェールズ州,New South Wales,Nouvelle-Galles du Sud,Neusüdwales,Nuovo Galles del Sud,Nueva Gales del Sur,新南威尔士州,뉴사우스웨일스 주, - ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [rest of string was truncated]";. + ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [resto de la cadena truncado]";. /// public static string sr_065 { get { @@ -20292,14 +20442,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ウィーン,Vienna,Vienne,Wien,Vienna,Viena,维也纳州,빈, ///003,ブルゲンラント州,Burgenland,Burgenland,Burgenland,Burgenland,Burgenland,布尔根兰州,부르겐란트 주, ///004,ケルンテン州,Carinthia,Carinthie,Kärnten,Carinzia,Carintia,克恩顿州,케른텐 주, ///005,ニーダー・エスターライヒ州,Lower Austria,Basse-Autriche,Niederösterreich,Bassa Austria,Baja Austria,下奥地利州,니더외스터라이히 주, ///006,オーバー・エスターライヒ州,Upper Austria,Haute-Autriche,Oberösterreich,Alta Austria,Alta Austria,上奥地利州,오버외스터라이히 주, - ///007,ザルツブルク州,Salzburg,Salzbourg,S [rest of string was truncated]";. + ///007,ザルツブルク州,Salzburg,Salzbourg,S [resto de la cadena truncado]";. /// public static string sr_066 { get { @@ -20308,7 +20458,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブリュッセル首都地域圏,Brussels Region,Région de Bruxelles-Capitale,Region Brüssel-Hauptstadt,Regione di Bruxelles,Región de Bruselas-Capital,布鲁塞尔首都大区,브뤼셀 지역, ///003,フランデレン地域圏,Flanders,Région flamande,Flandern,Fiandre,Región de Flandes,佛兰德大区,플랑드르 지역, @@ -20321,11 +20471,11 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ボスニア・ヘルツェゴビナ連邦,Federation of Bosnia and Herzegovina,Fédération de Bosnie-Herzégovine,Föderation Bosnien und Herzegowina,Federazione di Bosnia-Erzegovina,Federación de Bosnia-Herzegovina,波黑联邦,보스니아헤르체고비나 연방, ///003,セルビア人共和国,Republika Srpska,République serbe de Bosnie,Serbische Republik,Repubblica Serba di Bosnia-Erzegovina,República Srpska,塞族共和国,스릅스카 공화국, - ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [rest of string was truncated]";. + ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [resto de la cadena truncado]";. /// public static string sr_068 { get { @@ -20334,7 +20484,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ボツワナ,Botswana,Botswana,Botsuana,Botswana,Botsuana,博茨瓦纳,보츠와나,. /// @@ -20345,7 +20495,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ソフィア市,Sofia City,Sofia (ville),Sofia (Stadt),Sofia,Ciudad de Sofía,索非亚市,소피아, ///003,ソフィア州,Sofia Province,Sofia (oblast),Sofia (Region),Regione di Sofia,Provincia de Sofía,索非亚州,소피아 주, @@ -20353,7 +20503,7 @@ public class Resources { ///005,プレベン州,Pleven,Pleven,Plewen,Pleven,Pleven,普列文州,플레벤 주, ///006,ビディン州,Vidin,Vidin,Widin,Vidin,Vidin,维丁州,비딘 주, ///007,バルナ州,Varna,Varna,Warna,Varna,Varna,瓦尔纳州,바르나 주, - ///008,ブルガス州, [rest of string was truncated]";. + ///008,ブルガス州, [resto de la cadena truncado]";. /// public static string sr_070 { get { @@ -20362,12 +20512,12 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///006,ザグレブ直轄市,Zagreb,Zagreb (ville),Zagreb (Stadt),Zagabria,Ciudad de Zagreb,萨格勒布市,자그레브, ///007,ビェロヴァル=ビロゴラ郡,Bjelovar-Bilogora County,Bjelovar-Bilogora,Bjelovar-Bilogora,Regione di Bjelovar e della Bilogora,Condado de Bjelovar-Bilogora,别洛瓦尔-比洛戈拉县,벨로바르-빌로고라 군, ///008,ブロド=ポサヴィナ郡,Brod-Posavina County,Brod-Posavina,Brod-Posavina,Regione di Brod e della Posavina,Condado de Brod-Posavina,布罗德-波萨维纳县,브로드-포사비나 군, - ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [rest of string was truncated]";. + ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [resto de la cadena truncado]";. /// public static string sr_071 { get { @@ -20376,7 +20526,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,キプロス,Cyprus,Chypre,Zypern,Cipro,Chipre,塞浦路斯,키프로스,. /// @@ -20387,13 +20537,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,プラハ,Prague,Prague,Prag,Praga,Praga,布拉格市,프라하, ///003,中部ボヘミア地方,Central Bohemian Region,Bohême centrale,Mittelböhmische Region,Boemia Centrale,Región de Bohemia Central,中捷克州,스트르제도체스키 지방, ///004,南ボヘミア地方,South Bohemian Region,Bohême du Sud,Südböhmische Region,Boemia Meridionale,Región de Bohemia Meridional,南捷克州,이호체스키 지방, ///005,プルゼニ地方,Plzeň Region,Région de Pilsen,Region Pilsen,Regione di Plseň,Región de Pilsen,比尔森州,플젠 지방, - ///006,カールスバート地方,Karlovy Vary Regio [rest of string was truncated]";. + ///006,カールスバート地方,Karlovy Vary Regio [resto de la cadena truncado]";. /// public static string sr_073 { get { @@ -20402,13 +20552,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///018,グリーンランド,Greenland,Groenland,Grönland,Groenlandia,Groenlandia,格陵兰,그린란드, ///019,デンマーク首都地域,Capital Region of Denmark,Hovedstaden,Hauptstadtregion,Hovedstaden,Hovedstaden,首都大区,덴마크 수도권 지역, ///020,中央ユラン地域,Central Denmark Region,Jutland-Central,Mitteljütland,Jutland Centrale,Jutlandia Central,中日德兰大区,중부 덴마크 지역, ///021,北ユラン地域,North Denmark Region,Jutland-du-Nord,Nordjütland,Jutland Settentrionale,Jutlandia Septentrional,北日德兰大区,북부 덴마크 지역, - ///022,シェラン地域,Region Zea [rest of string was truncated]";. + ///022,シェラン地域,Region Zea [resto de la cadena truncado]";. /// public static string sr_074 { get { @@ -20417,7 +20567,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エストニア,Estonia,Estonie,Estland,Estonia,Estonia,爱沙尼亚,에스토니아,. /// @@ -20428,13 +20578,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///008,ウーシマー県,Uusimaa / Nyland,Uusimaa,Uusimaa,Uusimaa,Uusimaa,新地区,우시마 주, ///009,ラッピ州,Lappi / Lapland,Laponie,Lappland,Lapponia,Laponia finlandesa,拉普兰省,라피 주, ///010,北ポフヤンマー県,Pohjois-Pohjanmaa / Norra Österbotten,Ostrobotnie du Nord,Nordösterbotten,Ostrobotnia Settentrionale,Ostrobothnia del Norte,北博滕区,북오스트로보트니아 주, ///011,カイヌー県,Kainuu / Kajanaland,Kainuu,Kainuu,Kainuu,Kainuu,凯努区,카이누 주, - ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [rest of string was truncated]";. + ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [resto de la cadena truncado]";. /// public static string sr_076 { get { @@ -20443,14 +20593,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イール・ド・フランス,Île-de-France,Île-de-France,Île-de-France,Île-de-France,Isla de Francia,法兰西岛大区,일드프랑스, ///003,アルザス,Alsace,Alsace,Elsass,Alsazia,Alsacia,阿尔萨斯大区,알자스, ///004,アキテーヌ,Aquitaine,Aquitaine,Aquitanien,Aquitania,Aquitania,阿基坦大区,아키텐, ///005,オーベルニュ,Auvergne,Auvergne,Auvergne,Alvernia,Auvernia,奥弗涅大区,오베르뉴, ///006,バス・ノルマンディ,Lower Normandy,Basse-Normandie,Basse-Normandie,Bassa Normandia,Baja Normandía,下诺曼底大区,바스노르망디, - ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [rest of string was truncated]";. + ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [resto de la cadena truncado]";. /// public static string sr_077 { get { @@ -20459,7 +20609,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルリン,Berlin,Berlin,Berlin,Berlino,Berlín,柏林市,베를린, ///003,ヘッセン州,Hesse,Hesse,Hessen,Assia,Hesse,黑森州,헤센 주, @@ -20467,7 +20617,7 @@ public class Resources { ///005,バイエルン州,Bavaria,Bavière,Bayern,Baviera,Baviera,巴伐利亚州,바이에른 주, ///006,ブランデンブルク州,Brandenburg,Brandebourg,Brandenburg,Brandeburgo,Brandeburgo,勃兰登堡州,브란덴부르크 주, ///007,ブレーメン,Bremen,Brême,Bremen,Brema,Bremen,不来梅市,브레멘 주, - ///008,ハンブ [rest of string was truncated]";. + ///008,ハンブ [resto de la cadena truncado]";. /// public static string sr_078 { get { @@ -20476,13 +20626,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アッティカ,Attica,Attique,Attika,Attica,Ática,阿提卡大区,아티카, ///003,中央ギリシャ,Central Greece,Grèce-Centrale,Mittelgriechenland,Grecia Centrale,Grecia Central,中希腊大区,중부 그리스, ///004,中央マケドニア,Central Macedonia,Macédoine-Centrale,Zentralmakedonien,Macedonia Centrale,Macedonia Central,中马其顿大区,중부 마케도니아, ///005,クレタ,Crete,Crète,Kreta,Creta,Creta,克里特大区,크레타, - ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [rest of string was truncated]";. + ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [resto de la cadena truncado]";. /// public static string sr_079 { get { @@ -20491,13 +20641,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブダペスト,Budapest,Budapest,Budapest,Budapest,Budapest,布达佩斯市,부다페스트, ///003,バーチ・キシュクン州,Bács-Kiskun County,Bács-Kiskun,Bács-Kiskun,Bács-Kiskun,Bács-Kiskun,巴奇-基什孔州,바치키슈쿤 주, ///004,バラニャ州,Baranya County,Baranya,Baranya,Baranya,Baranya,巴兰尼亚州,버러녀 주, ///005,ベーケーシュ州,Békés County,Békés,Békés,Békés,Békés,贝凯什州,베케시 주, - ///006,ボルショド・アバウーイ・ゼンプレーン州,Borsod-Abaúj-Zemplén County,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,包尔绍德-奥包乌伊-曾普伦州, [rest of string was truncated]";. + ///006,ボルショド・アバウーイ・ゼンプレーン州,Borsod-Abaúj-Zemplén County,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,Borsod-Abaúj-Zemplén,包尔绍德-奥包乌伊-曾普伦州, [resto de la cadena truncado]";. /// public static string sr_080 { get { @@ -20506,7 +20656,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アイスランド,Iceland,Islande,Island,Islanda,Islandia,冰岛,아이슬란드,. /// @@ -20517,7 +20667,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ダブリン州,Dublin,Dublin,Dublin,Dublino,Dublín,都柏林地区,더블린, ///010,カーロウ州,County Carlow,Carlow,Carlow,Carlow,Carlow,卡洛郡,칼로우 주, @@ -20526,7 +20676,7 @@ public class Resources { ///013,コーク州,County Cork,Cork,Cork,Cork,Cork,科克郡,코크 주, ///014,ドニゴール州,County Donegal,Donegal,Donegal,Donegal,Donegal,多内加尔郡,도니골 주, ///015,ゴールウェイ州,County Galway,Galway,Galway,Galway,Galway,戈尔韦郡,골웨이 주, - ///016,ケリー州,County Kerry,K [rest of string was truncated]";. + ///016,ケリー州,County Kerry,K [resto de la cadena truncado]";. /// public static string sr_082 { get { @@ -20535,14 +20685,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ラツィオ州,Lazio,Latium,Latium,Lazio,Lacio,拉齐奥大区,라치오 주, ///003,バッレ・ダオスタ州,Aosta Valley,Vallée d'Aoste,Aostatal,Valle d'Aosta,Valle de Aosta,瓦莱-达奥斯塔大区,발레다오스타 주, ///004,ピエモンテ州,Piedmont,Piémont,Piemont,Piemonte,Piamonte,皮埃蒙特大区,피에몬테 주, ///005,リグリア州,Liguria,Ligurie,Ligurien,Liguria,Liguria,利古里亚大区,리구리아 주, ///006,ロンバルディア州,Lombardy,Lombardie,Lombardei,Lombardia,Lombardía,伦巴第大区,롬바르디아 주, - ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [rest of string was truncated]";. + ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [resto de la cadena truncado]";. /// public static string sr_083 { get { @@ -20551,7 +20701,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ラトビア,Latvia,Lettonie,Lettland,Lettonia,Letonia,拉脱维亚,라트비아,. /// @@ -20562,7 +20712,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マセル県,Maseru,Maseru,Maseru,Maseru,Maseru,马塞卢区,마세루 주, ///003,べレア県,Berea,Berea,Berea,Berea,Berea,伯里亚区,베레아 주, @@ -20570,7 +20720,7 @@ public class Resources { ///005,レリベ県,Leribe,Leribe,Leribe,Leribe,Leribe,莱里贝区,레리베 주, ///006,マフェテング県,Mafeteng,Mafeteng,Mafeteng,Mafeteng,Mafeteng,马费滕区,마페텡 주, ///007,モハーレスフーク県,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,Mohale's Hoek,莫哈莱斯胡克区,모할레스후크 주, - ///008,モコトロング県,Mokhotlong,Mok [rest of string was truncated]";. + ///008,モコトロング県,Mokhotlong,Mok [resto de la cadena truncado]";. /// public static string sr_085 { get { @@ -20579,7 +20729,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,リヒテンシュタイン,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,列支敦士登,리히텐슈타인,. /// @@ -20590,14 +20740,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ヴィリニュス州,Vilnius,Vilnius,Vilnius,Vilnius,Condado de Vilna,维尔纽斯县,빌뉴스 주, ///003,アリートゥス州,Alytus,Alytus,Alytus,Alytus,Condado de Alytus,阿利图斯县,알리투스 주, ///004,カウナス州,Kaunas,Kaunas,Kaunas,Kaunas,Condado de Kaunas,考纳斯县,카우나스 주, ///005,クライペダ州,Klaipėda,Klaipėda,Klaipėda,Klaipėda,Condado de Klaipėda,克莱佩达县,클라이페다 주, ///006,マリヤンポレ州,Marijampolė,Marijampolė,Marijampolė,Marijampolė,Condado de Marijampolė,马里扬泊列县,마리얌폴레 주, - ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [rest of string was truncated]";. + ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [resto de la cadena truncado]";. /// public static string sr_087 { get { @@ -20606,7 +20756,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ルクセンブルク,Luxembourg,Luxembourg,Luxemburg,Lussemburgo,Luxemburgo,卢森堡,룩셈부르크,. /// @@ -20617,7 +20767,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マケドニア,Macedonia (Republic of),Macédoine (République),Mazedonien (Republik),Macedonia (Repubblica di),Macedonia (República),马其顿,마케도니아 공화국,. /// @@ -20628,7 +20778,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルタ,Malta,Malte,Malta,Malta,Malta,马耳他,몰타,. /// @@ -20639,7 +20789,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モンテネグロ,Montenegro,Monténégro,Montenegro,Montenegro,Montenegro,黑山,몬테네그로,. /// @@ -20650,7 +20800,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モザンビーク,Mozambique,Mozambique,Mosambik,Mozambico,Mozambique,莫桑比克,모잠비크,. /// @@ -20661,7 +20811,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ナミビア,Namibia,Namibie,Namibia,Namibia,Namibia,纳米比亚,나미비아,. /// @@ -20672,14 +20822,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ノールト・ホラント州,North Holland,Hollande-Septentrionale,Nordholland,Olanda Settentrionale,Holanda Septentrional,北荷兰省,노르트홀란트 주, ///003,ドレンテ州,Drenthe,Drenthe,Drenthe,Drenthe,Drente,德伦特省,드렌터 주, ///004,フレボラント州,Flevoland,Flevoland,Flevoland,Flevoland,Flevoland,弗莱福兰省,플레볼란트 주, ///005,フリースラント州,Friesland,Frise,Friesland,Frisia,Frisia,弗里斯兰省,프리슬란트 주, ///006,ヘルデンラント州,Gelderland,Gueldre,Gelderland,Gheldria,Güeldres,海尔德兰省,헬데를란트 주, - ///007,フローニンゲン州,Groningen,Groningue,Groningen [rest of string was truncated]";. + ///007,フローニンゲン州,Groningen,Groningue,Groningen [resto de la cadena truncado]";. /// public static string sr_094 { get { @@ -20688,14 +20838,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ウェリントン,Wellington,Wellington,Wellington,Wellington,Región de Wellington,惠灵顿大区,웰링턴, ///003,オークランド,Auckland,Auckland,Auckland,Auckland,Región de Auckland,奥克兰大区,오클랜드, ///004,ベイ・オブ・プレンティ,Bay of Plenty,Bay of Plenty,Bay of Plenty,Bay of Plenty,Bahía de Plenty,普伦蒂湾大区,베이오브플렌티, ///005,カンタベリー,Canterbury,Canterbury,Canterbury,Canterbury,Canterbury,坎特伯雷大区,캔터베리, ///006,ダニーデン,Otago,Otago,Otago,Otago,Otago,奥塔戈大区,오타고, - ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [rest of string was truncated]";. + ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [resto de la cadena truncado]";. /// public static string sr_095 { get { @@ -20704,7 +20854,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///007,オスロ,Oslo,Oslo,Oslo,Oslo,Oslo,奥斯陆,오슬로, ///008,アーケシュフース県,Akershus,Akershus,Akershus,Akershus,Akershus,阿克什胡斯郡,아케르스후스 주, @@ -20712,7 +20862,7 @@ public class Resources { ///010,ブスケルー県,Buskerud,Buskerud,Buskerud,Buskerud,Buskerud,布斯克吕郡,부스케루 주, ///011,フィンマルク県,Finnmark,Finnmark,Finnmark,Finnmark,Finnmark,芬马克郡,핀마르크 주, ///012,ヘードマルク県,Hedmark,Hedmark,Hedmark,Hedmark,Hedmark,海德马克郡,헤드마르크 주, - ///013,ホルダラン県,Hordaland,Hordaland,Ho [rest of string was truncated]";. + ///013,ホルダラン県,Hordaland,Hordaland,Ho [resto de la cadena truncado]";. /// public static string sr_096 { get { @@ -20721,14 +20871,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マゾフシェ,Masovia,Mazovie,Masowien,Masovia,Mazovia,马佐夫舍省,마조프셰, ///003,ドルヌィ・シロンスク,Lower Silesia,Basse-Silésie,Niederschlesien,Bassa Slesia,Baja Silesia,下西里西亚省,하슐레지엔, ///004,クヤヴィ・ポモージェ,Kuyavian-Pomeranian Voivodeship,Cujavie-Poméranie,Kujawien-Pommern,Cuiavia-Pomerania,Cuyavia y Pomerania,库亚瓦滨海省,쿠야비아포메라니아, ///005,ウッジ,Lodz,Łódź,Lodsch,Łódź,Lodz,罗兹省,우치, ///006,ルブリン,Lublin,Lublin,Lublin,Lublino,Lublin,卢布林省,루블린, - ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [rest of string was truncated]";. + ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [resto de la cadena truncado]";. /// public static string sr_097 { get { @@ -20737,7 +20887,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リスボン県,Lisbon,Lisbonne,Lissabon,Lisbona,Distrito de Lisboa,里斯本区,리스보아 주, ///007,マディラ自治州,Madeira,Madère,Madeira,Madera,Madeira,马德拉自治区,마데이라 주, @@ -20745,7 +20895,7 @@ public class Resources { ///009,アヴェイロ県,Aveiro,Aveiro,Aveiro,Aveiro,Distrito de Aveiro,阿威罗区,아베이루 주, ///010,ベージャ県,Beja,Beja,Beja,Beja,Distrito de Beja,贝雅区,베자 주, ///011,ブラガ県,Braga,Braga,Braga,Braga,Distrito de Braga,布拉加区,브라가 주, - ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [rest of string was truncated]";. + ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [resto de la cadena truncado]";. /// public static string sr_098 { get { @@ -20754,7 +20904,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブカレスト州,Bucharest,Bucarest,Bukarest,Bucarest,Bucarest,布加勒斯特市,부쿠레슈티 주, ///003,アルバ州,Alba,Alba,Alba,Alba,Alba,阿尔巴县,알바 주, @@ -20763,7 +20913,7 @@ public class Resources { ///006,バカウ州,Bacau,Bacău,Bacău,Bacău,Bacău,巴克乌县,바커우 주, ///007,ビホル州,Bihor,Bihor,Bihor,Bihor,Bihor,比霍尔县,비호르 주, ///008,ビストリツァ・ナサウド州,Bistrita-Nasaud,Bistrita-Năsăud,Bistrita-Năsăud,Bistrita-Năsăud,Bistrita-Năsăud,比斯特里察-讷瑟乌德县,비스트리차너서우드 주, - ///00 [rest of string was truncated]";. + ///00 [resto de la cadena truncado]";. /// public static string sr_099 { get { @@ -20772,13 +20922,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///009,モスクワ市,Moscow City,Moscou (ville),Moskau (Stadt),Mosca,Ciudad de Moscú,莫斯科市,모스크바, ///010,アディゲ共和国,Adygey,Adyguée,Republik Adygeja,Repubblica di Adigezia,República de Adigueya,阿迪格共和国,아디게야 공화국, ///011,アルタイ共和国,Gorno-Altay,Altaï (république),Republik Altai,Repubblica dell'Altaj,República de Altái,阿尔泰共和国,고르노알타이 공화국, ///012,アルタイ地方,Altay,Altaï (kraï),Region Altai,Territorio dell'Altaj,Territorio de Altái,阿尔泰边疆区,알타이 지방, - ///013,アムール州,Amur,Amour,Oblast Amur,Regione [rest of string was truncated]";. + ///013,アムール州,Amur,Amour,Oblast Amur,Regione [resto de la cadena truncado]";. /// public static string sr_100 { get { @@ -20787,7 +20937,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セルビア・コソヴォ,Serbia and Kosovo,Serbie et Kosovo,Serbien und Kosovo,Serbia e Kosovo,Serbia y Kosovo,塞尔维亚及科索沃,세르비아 코소보,. /// @@ -20798,7 +20948,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブラティスラバ,Bratislava,Bratislava,Bratislava,Bratislava,Bratislava,布拉迪斯拉发州,브라티슬라바, ///003,バンスカ・ビストリツァ,Banská Bystrica,Banská Bystrica,Banská Bystrica,Banská Bystrica,Banská Bystrica,班斯卡-比斯特里察州,반스카비스트리차, @@ -20806,7 +20956,7 @@ public class Resources { ///005,二トラ,Nitra,Nitra,Nitra,Nitra,Nitra,尼特拉州,니트라, ///006,プレショフ,Prešov,Prešov,Prešov,Prešov,Prešov,普雷绍夫州,프레쇼프, ///007,トレンチーン,Trencín,Trenčín,Trenčín,Trenčín,Trenčín,特伦钦州,트렌친, - ///008,トルナバ,Trnava,Trnava,Trna [rest of string was truncated]";. + ///008,トルナバ,Trnava,Trnava,Trna [resto de la cadena truncado]";. /// public static string sr_102 { get { @@ -20815,7 +20965,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スロベニア,Slovenia,Slovénie,Slowenien,Slovenia,Eslovenia,斯洛文尼亚,슬로베니아,. /// @@ -20826,13 +20976,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ハウテン州,Gauteng,Gauteng,Gauteng,Gauteng,Gauteng,豪登省,하우텡 주, ///003,ウェスタン・ケープ州,Western Cape,Cap-Occidental,Westkap,Capo Occidentale,Cabo Occidental,西开普省,웨스턴케이프 주, ///004,ノーザン・ケープ州,Northern Cape,Cap-du-Nord,Nordkap,Capo Settentrionale,Cabo Septentrional,北开普省,노던케이프 주, ///005,イースタン・ケープ州,Eastern Cape,Cap-Oriental,Ostkap,Capo Orientale,Cabo Oriental,东开普省,이스턴케이프 주, - ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [rest of string was truncated]";. + ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [resto de la cadena truncado]";. /// public static string sr_104 { get { @@ -20841,14 +20991,14 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マドリード州,Madrid,Madrid,Madrid,Madrid,Madrid,马德里自治区,마드리드 주, ///003,アンダルシーア州,Andalusia,Andalousie,Andalusien,Andalusia,Andalucía,安达卢西亚自治区,안달루시아 주, ///004,アラゴン州,Aragon,Aragon,Aragonien,Aragona,Aragón,阿拉贡自治区,아라곤 주, ///005,アストゥーリアス州,Principality of Asturias,Asturies,Asturien,Principato delle Asturie,Asturias,阿斯图利亚斯自治区,아스투리아스 주, ///006,バレアーレス諸島,Balearic Islands,Îles Baléares,Balearische Inseln,Baleari,Illes Balears,巴利阿里自治区,발레아레스 제도, - ///007,カナリア諸島,Canary Islands,Î [rest of string was truncated]";. + ///007,カナリア諸島,Canary Islands,Î [resto de la cadena truncado]";. /// public static string sr_105 { get { @@ -20857,7 +21007,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ホホ,Hhohho,Hhohho,Hhohho,Hhohho,Hhohho,霍霍区,호호, ///003,ルボンボ,Lubombo,Lubombo,Lubombo,Lubombo,Lubombo,卢邦博区,로밤바, @@ -20871,13 +21021,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ストックホルム州,Stockholm County,Stockholm,Stockholms län,Stoccolma,Estocolmo,斯德哥尔摩省,스톡홀름 주, ///003,スコーネ州,Skåne County,Skåne,Skåne län,Scania,Escania,斯科耐省,스코네 주, ///004,ヴェストラ・イェータランド州,Västra Götaland County,Västra Götaland,Västra Götalands län,Västra Götaland,Västra Götaland,西约特兰省,베스트라예탈란드 주, ///005,エステルイェトランド州,Östergötland County,Östergötland,Östergötlands län,Östergötland,Östergötland,东约特兰省,외스테르예틀란드 주, - ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [rest of string was truncated]";. + ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [resto de la cadena truncado]";. /// public static string sr_107 { get { @@ -20886,7 +21036,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルン州,Bern,Berne,Bern,Berna,Berna,伯尔尼州,베른 주, ///004,アールガウ州,Aargau,Argovie,Aargau,Argovia,Argovia,阿尔高州,아르가우 주, @@ -20894,7 +21044,7 @@ public class Resources { ///006,フリブール州,Fribourg,Fribourg,Freiburg,Friburgo,Friburgo,弗里堡州,프리부르 주, ///007,ジュネーヴ州,Geneva,Genève,Genf,Ginevra,Ginebra,日内瓦州,제네바 주, ///008,グラールス州,Glarus,Glaris,Glarus,Glarona,Glaris,格拉鲁斯州,글라루스 주, - ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [rest of string was truncated]";. + ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [resto de la cadena truncado]";. /// public static string sr_108 { get { @@ -20903,7 +21053,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アンカラ県,Ankara,Ankara,Ankara,Ankara,Ankara,安卡拉省,앙카라 주, ///003,イスタンブル県,İstanbul,İstanbul,İstanbul,Istanbul,Estambul,伊斯坦布尔省,이스탄불 주, @@ -20912,7 +21062,7 @@ public class Resources { ///006,アダナ県,Adana,Adana,Adana,Adana,Adana,阿达纳省,아다나 주, ///007,ガジアンテプ県,Gaziantep,Gaziantep,Gaziantep,Gaziantep,Gaziantep,加济安泰普省,가지안테프 주, ///008,コニヤ県,Konya,Konya,Konya,Konya,Konya,科尼亚省,코니아 주, - ///009,アンタリヤ県,Antalya,Antalya,Anta [rest of string was truncated]";. + ///009,アンタリヤ県,Antalya,Antalya,Anta [resto de la cadena truncado]";. /// public static string sr_109 { get { @@ -20921,7 +21071,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イングランド,England,Angleterre,England,Inghilterra,Inglaterra,英格兰,잉글랜드, ///004,スコットランド,Scotland,Écosse,Schottland,Scozia,Escocia,苏格兰,스코틀랜드, @@ -20935,7 +21085,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ザンビア,Zambia,Zambie,Sambia,Zambia,Zambia,赞比亚,잠비아,. /// @@ -20946,7 +21096,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジンバブエ,Zimbabwe,Zimbabwe,Simbabwe,Zimbabwe,Zimbabue,津巴布韦,짐바브웨,. /// @@ -20957,7 +21107,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アゼルバイジャン,Azerbaijan,Azerbaïdjan,Aserbaidschan,Azerbaigian,Azerbaiyán,阿塞拜疆,아제르바이잔,. /// @@ -20968,7 +21118,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モーリタニア,Mauritania,Mauritanie,Mauretanien,Mauritania,Mauritania,毛里塔尼亚,모리타니,. /// @@ -20979,7 +21129,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マリ,Mali,Mali,Mali,Mali,Malí,马里,말리,. /// @@ -20990,7 +21140,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ニジェール,Niger,Niger,Niger,Niger,Níger,尼日尔,니제르,. /// @@ -21001,7 +21151,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,チャド,Chad,Tchad,Tschad,Ciad,Chad,乍得,차드,. /// @@ -21012,7 +21162,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スーダン,Sudan,Soudan,Sudan,Sudan,Sudán,苏丹,수단,. /// @@ -21023,7 +21173,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エリトリア,Eritrea,Érythrée,Eritrea,Eritrea,Eritrea,厄立特里亚,에리트레아,. /// @@ -21034,7 +21184,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブチ,Djibouti,Djibouti,Dschibuti,Gibuti,Yibuti,吉布提,지부티,. /// @@ -21045,7 +21195,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ソマリア,Somalia,Somalie,Somalia,Somalia,Somalia,索马里,소말리아,. /// @@ -21056,7 +21206,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンドラ,Andorra,Andorre,Andorra,Andorra,Andorra,安道尔,안도라,. /// @@ -21067,7 +21217,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブラルタル,Gibraltar,Gibraltar,Gibraltar,Gibilterra,Gibraltar,直布罗陀,지브롤터,. /// @@ -21078,7 +21228,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ガーンジー島,Guernsey,Guernesey,Guernsey,Guernsey,Guernsey,根西,건지 섬,. /// @@ -21089,7 +21239,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マン島,Isle of Man,Île de Man,Isle of Man,Isola di Man,Isla de Man,马恩岛,맨 섬,. /// @@ -21100,7 +21250,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジャージー島,Jersey,Jersey,Jersey,Jersey,Jersey,泽西,저지 섬,. /// @@ -21111,7 +21261,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モナコ,Monaco,Monaco,Monaco,Monaco (Principato di),Mónaco,摩纳哥,모나코,. /// @@ -21122,7 +21272,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,台北市,Taipei City,Taipei,Taipeh,Taipei,Taipéi,-,타이베이, ///003,高雄市,Kaohsiung City,Kaohsiung,Kaohsiung,Kaohsiung,Condado de Kaohsiung,-,가오슝, @@ -21131,7 +21281,7 @@ public class Resources { ///006,台中市,Taichung City,Taichung,Taichung,Taichung,Taichung,-,타이중, ///007,嘉義市,Chiayi City,Chiayi,Chiayi,Chiayi,Chiayi,-,자이, ///008,台南市,Tainan City,Tainan,Tainan,Tainan,Tainan,-,타이난, - ///009,新北市,New Taipe [rest of string was truncated]";. + ///009,新北市,New Taipe [resto de la cadena truncado]";. /// public static string sr_128 { get { @@ -21140,7 +21290,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ソウル特別市,Seoul-teukbyeolsi,Séoul,Seoul,Seoul,Seúl,首尔特别市,서울특별시, ///003,プサン広域市,Busan-gwangyeoksi,Pusan,Busan,Busan,Busán,釜山广域市,부산광역시, @@ -21148,7 +21298,7 @@ public class Resources { ///005,インチョン広域市,Incheon-gwangyeoksi,Incheon,Incheon,Incheon,Incheon,仁川广域市,인천광역시, ///006,クァンジュ広域市,Gwangju-gwangyeoksi,Gwangju,Gwangju,Gwangju,Gwangju,光州广域市,광주광역시, ///007,テジョン広域市,Daejeon-gwangyeoksi,Daejeon,Daejeon,Daejeon,Daejeon,大田广域市,대전광역시, - ///008,ウルサン広域市,Ulsan- [rest of string was truncated]";. + ///008,ウルサン広域市,Ulsan- [resto de la cadena truncado]";. /// public static string sr_136 { get { @@ -21157,7 +21307,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ホンコン,Hong Kong,Hong Kong,Hongkong,Hong Kong,Hong Kong,中国 香港,홍콩,. /// @@ -21168,7 +21318,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,シンガポール,Singapore,Singapour,Singapur,Singapore,Singapur,新加坡,싱가포르,. /// @@ -21179,7 +21329,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,クアラ・ルンプール,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,Kuala Lumpur,吉隆坡联邦直辖区,쿠알라룸푸르, ///003,ジョホール州,Johor,Johor,Johor,Johor,Johor,柔佛州,조호르 주, @@ -21187,7 +21337,7 @@ public class Resources { ///005,ケランタン州,Kelantan,Kelantan,Kelantan,Kelantan,Kelantan,吉兰丹州,켈란탄 주, ///006,マラッカ州,Melaka,Malacca,Malakka,Malacca,Melaka,马六甲州,믈라카 주, ///007,ヌグリ・センビラン州,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,Negeri Sembilan,森美兰州,느그리슴빌란 주, - ///008,パハン州,Paha [rest of string was truncated]";. + ///008,パハン州,Paha [resto de la cadena truncado]";. /// public static string sr_156 { get { @@ -21196,7 +21346,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,北京市,Beijing,Pékin,Peking,Pechino,Pekín,北京市,베이징, ///003,重慶市,Chongqing,Chongqing,Chongqing,Chongqing,Chongqing,重庆市,충칭, @@ -21205,7 +21355,7 @@ public class Resources { ///006,安徽省,Anhui,Anhui,Anhui,Anhui,Anhui,安徽省,안후이 성, ///007,福建省,Fujian,Fujian,Fujian,Fujian,Fujian,福建省,푸젠 성, ///008,甘粛省,Gansu,Gansu,Gansu,Gansu,Gansu,甘肃省,간쑤 성, - ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [rest of string was truncated]";. + ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [resto de la cadena truncado]";. /// public static string sr_160 { get { @@ -21214,7 +21364,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アブダビ,Abu Dhabi,Abu Dhabi,Abu Dhabi,Abu Dhabi,Abu Dabi,阿布扎比,아부다비, ///003,アジュマン,Ajman,Ajman,Adschman,Ajman,Ajmán,阿治曼,아지만, @@ -21222,7 +21372,7 @@ public class Resources { ///005,ラアス・アル・カイマー,Ras al-Khaimah,Ras al-Khaïmah,Ras al-Chaima,Ras al-Khaimah,Ras el Jaima,哈伊马角,라스알카이마, ///006,ドゥバイ,Dubai,Dubaï,Dubai,Dubai,Dubái,迪拜,두바이, ///007,フジャイラー,Al Fujayrah,Fujaïrah,Fudschaira,Fujayrah,Fujaira,富查伊拉,알푸자이라, - ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [rest of string was truncated]";. + ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [resto de la cadena truncado]";. /// public static string sr_168 { get { @@ -21231,13 +21381,13 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,デリー,Delhi,Delhi,Delhi,Delhi,Delhi,德里中央直辖区,델리, ///003,アンダマン・ニコバル諸島,Andaman and Nicobar Islands,Îles Andaman-et-Nicobar,Andamanen und Nikobaren,Andamane e Nicobare,Islas Andamán y Nicobar,安达曼和尼科巴群岛中央直辖区,안다만 니코바르 제도, ///004,アーンドラ・プラデーシュ州,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,Andhra Pradesh,安得拉邦,안드라프라데시 주, ///005,アッサム州,Assam,Assam,Assam,Assam,Assam,阿萨姆邦,아삼 주, - ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [rest of string was truncated]";. + ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [resto de la cadena truncado]";. /// public static string sr_169 { get { @@ -21246,7 +21396,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,リヤド州,Ar Riyad,Riyad,Riad,Al-Riyad,Riad,利雅得地区,리야드 주, ///003,バーハ州,Al Bahah,Al Bâhah,Baha,Al-Bahah,Al Bahah,巴哈地区,알바하 주, @@ -21255,7 +21405,7 @@ public class Resources { ///006,カスィーム州,Al Qasim,Al Qasim,Qasim,Al-Qasim,Al Qasim,卡西姆地区,카심 주, ///007,アシール州,'Asir,Assir,Asir,'Asir,Asir,阿西尔地区,아시르 주, ///008,ハーイル州,Ha'il,Haïl,Hail,Ha'il,Hail,哈伊勒地区,하일 주, - ///009,メッカ [rest of string was truncated]";. + ///009,メッカ [resto de la cadena truncado]";. /// public static string sr_174 { get { @@ -21264,7 +21414,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,サンマリノ,San Marino,Saint-Marin,San Marino,San Marino,San Marino,圣马力诺,산마리노,. /// @@ -21275,7 +21425,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バチカン,Vatican City,Vatican,Vatikanstadt,Vaticano (Città del),Vaticano,梵蒂冈,바티칸,. /// @@ -21286,7 +21436,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バーミューダ,Bermuda,Bermudes,Bermuda,Bermude,Bermudas,百慕大,버뮤다,. /// @@ -21297,7 +21447,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap swapBox { get { @@ -21307,7 +21457,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap team { get { @@ -21317,7 +21467,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Duftnote ///Niesel ///Temposchub @@ -21360,7 +21510,7 @@ public class Resources { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [rest of string was truncated]";. + ///Lärmschutz [resto de la cadena truncado]";. /// public static string text_abilities_de { get { @@ -21369,7 +21519,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Duftnote ///Niesel ///Temposchub @@ -21412,7 +21562,7 @@ public class Resources { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [rest of string was truncated]";. + ///Lärmschutz [resto de la cadena truncado]";. /// public static string text_Abilities_de1 { get { @@ -21421,7 +21571,7 @@ public class Resources { } /// - /// Looks up a localized string similar to — + /// Busca una cadena traducida similar a — ///Stench ///Drizzle ///Speed Boost @@ -21465,7 +21615,7 @@ public class Resources { ///Water Veil ///Magnet Pull ///Soundproof - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_abilities_en { get { @@ -21474,7 +21624,7 @@ public class Resources { } /// - /// Looks up a localized string similar to — + /// Busca una cadena traducida similar a — ///Stench ///Drizzle ///Speed Boost @@ -21518,7 +21668,7 @@ public class Resources { ///Water Veil ///Magnet Pull ///Soundproof - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_Abilities_en1 { get { @@ -21527,7 +21677,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Hedor ///Llovizna ///Impulso @@ -21569,7 +21719,7 @@ public class Resources { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [rest of string was truncated]";. + ///Imá [resto de la cadena truncado]";. /// public static string text_abilities_es { get { @@ -21578,7 +21728,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Hedor ///Llovizna ///Impulso @@ -21620,7 +21770,7 @@ public class Resources { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [rest of string was truncated]";. + ///Imá [resto de la cadena truncado]";. /// public static string text_Abilities_es1 { get { @@ -21629,7 +21779,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Puanteur ///Crachin ///Turbo @@ -21674,7 +21824,7 @@ public class Resources { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [rest of string was truncated]";. + ///Sable Vol [resto de la cadena truncado]";. /// public static string text_abilities_fr { get { @@ -21683,7 +21833,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Puanteur ///Crachin ///Turbo @@ -21728,7 +21878,7 @@ public class Resources { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [rest of string was truncated]";. + ///Sable Vol [resto de la cadena truncado]";. /// public static string text_Abilities_fr1 { get { @@ -21737,7 +21887,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Tanfo ///Piovischio ///Acceleratore @@ -21781,7 +21931,7 @@ public class Resources { ///Idrovelo ///Magnetismo ///Antisuono - ///C [rest of string was truncated]";. + ///C [resto de la cadena truncado]";. /// public static string text_abilities_it { get { @@ -21790,7 +21940,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Tanfo ///Piovischio ///Acceleratore @@ -21834,7 +21984,7 @@ public class Resources { ///Idrovelo ///Magnetismo ///Antisuono - ///C [rest of string was truncated]";. + ///C [resto de la cadena truncado]";. /// public static string text_Abilities_it1 { get { @@ -21843,7 +21993,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///あくしゅう ///あめふらし ///かそく @@ -21918,7 +22068,7 @@ public class Resources { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [rest of string was truncated]";. + ///シェルアーマー [resto de la cadena truncado]";. /// public static string text_abilities_ja { get { @@ -21927,7 +22077,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///あくしゅう ///あめふらし ///かそく @@ -22002,7 +22152,7 @@ public class Resources { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [rest of string was truncated]";. + ///シェルアーマー [resto de la cadena truncado]";. /// public static string text_Abilities_ja1 { get { @@ -22011,7 +22161,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///악취 ///잔비 ///가속 @@ -22108,7 +22258,7 @@ public class Resources { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [rest of string was truncated]";. + ///스나이퍼 [resto de la cadena truncado]";. /// public static string text_abilities_ko { get { @@ -22117,7 +22267,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///악취 ///잔비 ///가속 @@ -22214,7 +22364,7 @@ public class Resources { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [rest of string was truncated]";. + ///스나이퍼 [resto de la cadena truncado]";. /// public static string text_Abilities_ko1 { get { @@ -22223,7 +22373,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///恶臭 ///降雨 ///加速 @@ -22331,7 +22481,7 @@ public class Resources { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [rest of string was truncated]";. + ///预知梦 /// [resto de la cadena truncado]";. /// public static string text_abilities_zh { get { @@ -22340,7 +22490,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ― + /// Busca una cadena traducida similar a ― ///恶臭 ///降雨 ///加速 @@ -22448,7 +22598,7 @@ public class Resources { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [rest of string was truncated]";. + ///预知梦 /// [resto de la cadena truncado]";. /// public static string text_Abilities_zh1 { get { @@ -22457,7 +22607,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Mysteriöser Ort ///Entfernter Ort ///\xf000ą\x0001\x0001 von \xf000Ā\x0001\x0000 @@ -22498,7 +22648,7 @@ public class Resources { ///Wendelberg ///Drachenstiege ///Siegesstraße - ///Tessera [rest of string was truncated]";. + ///Tessera [resto de la cadena truncado]";. /// public static string text_bw2_00000_de { get { @@ -22507,7 +22657,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Mystery Zone ///Faraway place ///\xf000Ā\x0001\x0000’s \xf000ą\x0001\x0001 @@ -22546,7 +22696,7 @@ public class Resources { ///PWT ///Chargestone Cave ///Twist Mountain - ///Dragonspiral [rest of string was truncated]";. + ///Dragonspiral [resto de la cadena truncado]";. /// public static string text_bw2_00000_en { get { @@ -22555,7 +22705,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Lugar misterioso ///Lugar lejano ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22594,7 +22744,7 @@ public class Resources { ///PWT ///Cueva Electrorroca ///Monte Tuerca - ///Torre [rest of string was truncated]";. + ///Torre [resto de la cadena truncado]";. /// public static string text_bw2_00000_es { get { @@ -22603,7 +22753,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Endroit Mystérieux ///Endroit Lointain ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22644,7 +22794,7 @@ public class Resources { ///Mont Foré ///Tour Dragospire ///Route Victoire - ///En [rest of string was truncated]";. + ///En [resto de la cadena truncado]";. /// public static string text_bw2_00000_fr { get { @@ -22653,7 +22803,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Zona Misteriosa ///Luogo Remoto ///\xf000ą\x0001\x0001 di \xf000Ā\x0001\x0000 @@ -22688,7 +22838,7 @@ public class Resources { ///Cantiere dei Sogni ///Bosco Girandola ///Deserto della Quiete - ///Castello [rest of string was truncated]";. + ///Castello [resto de la cadena truncado]";. /// public static string text_bw2_00000_it { get { @@ -22697,7 +22847,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///なぞのばしょ ///とおいばしょ ///\xf000Ā\x0001\x0000の\xf000ą\x0001\x0001 @@ -22750,7 +22900,7 @@ public class Resources { ///ブラックシティ ///ホワイトフォレスト ///ユナイテッドタワー - ///ちかすいみゃく [rest of string was truncated]";. + ///ちかすいみゃく [resto de la cadena truncado]";. /// public static string text_bw2_00000_ja { get { @@ -22759,7 +22909,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///수수께끼의 장소 ///먼 곳 ///\xf000Ā\x0001\x0000의 \xf000ą\x0001\x0001 @@ -22827,7 +22977,7 @@ public class Resources { ///물풍경도개교 ///실린더 브리지 ///빌리지 브리지 - ///원더 [rest of string was truncated]";. + ///원더 [resto de la cadena truncado]";. /// public static string text_bw2_00000_ko { get { @@ -22836,7 +22986,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///神秘的地方 ///遥远的地方 ///\xf000Ā\x0001\x0000的\xf000ą\x0001\x0001 @@ -22914,7 +23064,7 @@ public class Resources { ///潜入连接 ///雷文市 ///帆巴市 - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_bw2_00000_zh { get { @@ -22923,7 +23073,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Linktausch ///Linktausch ///Kanto @@ -22946,7 +23096,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Link Trade ///Link Trade ///Kanto @@ -22969,7 +23119,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Intercambio ///Intercambio ///Kanto @@ -22992,7 +23142,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Échange Link ///Échange Link ///Kanto @@ -23015,7 +23165,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///Scambio in link ///Scambio in link ///Kanto @@ -23038,7 +23188,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///つうしんこうかん ///つうしんこうかん ///カントーちほう @@ -23061,7 +23211,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///통신교환 ///통신교환 ///관동지방 @@ -23084,7 +23234,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- ///连接交换 ///连接交换 ///关都地区 @@ -23107,7 +23257,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Idyll + /// Busca una cadena traducida similar a Idyll ///Entfernter Ort ///Pokémon Movie ///Pokémon Film 10 @@ -23146,7 +23296,7 @@ public class Resources { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///Worlds 2014 [rest of string was truncated]";. + ///Worlds 2014 [resto de la cadena truncado]";. /// public static string text_bw2_40000_de { get { @@ -23155,7 +23305,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lovely place + /// Busca una cadena traducida similar a Lovely place ///Faraway place ///Pokémon Movie ///Pokémon Movie 10 @@ -23193,7 +23343,7 @@ public class Resources { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds [rest of string was truncated]";. + ///Worlds [resto de la cadena truncado]";. /// public static string text_bw2_40000_en { get { @@ -23202,7 +23352,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Lugar lejano ///Película Pokémon ///Película PKMN 10 @@ -23232,7 +23382,7 @@ public class Resources { ///Camp. Mundial 2014 ///Camp. Mundial 2015 ///Camp. Mundial 2016 - ///Camp [rest of string was truncated]";. + ///Camp [resto de la cadena truncado]";. /// public static string text_bw2_40000_es { get { @@ -23241,7 +23391,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 10 @@ -23279,7 +23429,7 @@ public class Resources { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds 2 [rest of string was truncated]";. + ///Worlds 2 [resto de la cadena truncado]";. /// public static string text_bw2_40000_fr { get { @@ -23288,7 +23438,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo grazioso + /// Busca una cadena traducida similar a Luogo grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 10 @@ -23327,7 +23477,7 @@ public class Resources { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///World [rest of string was truncated]";. + ///World [resto de la cadena truncado]";. /// public static string text_bw2_40000_it { get { @@ -23336,7 +23486,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが10 @@ -23388,7 +23538,7 @@ public class Resources { ///VGE2012 ///VGE2013 ///VGE2014 - ///VGE2 [rest of string was truncated]";. + ///VGE2 [resto de la cadena truncado]";. /// public static string text_bw2_40000_ja { get { @@ -23397,7 +23547,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화10 @@ -23453,7 +23603,7 @@ public class Resources { ///VGE2016 ///VGE2017 ///VGE2018 - ///VGE2 [rest of string was truncated]";. + ///VGE2 [resto de la cadena truncado]";. /// public static string text_bw2_40000_ko { get { @@ -23462,7 +23612,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美妙的地方 + /// Busca una cadena traducida similar a 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影10 @@ -23519,7 +23669,7 @@ public class Resources { ///VGE2017 ///VGE2018 ///VGE2019 - ///VG [rest of string was truncated]";. + ///VG [resto de la cadena truncado]";. /// public static string text_bw2_40000_zh { get { @@ -23528,7 +23678,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Entfernte Person + /// Busca una cadena traducida similar a Entfernte Person ///Betreuerpärchen ///Züchter. /// @@ -23539,7 +23689,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Stranger + /// Busca una cadena traducida similar a Stranger ///Day-Care Couple ///PKMN Breeder. /// @@ -23550,7 +23700,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lejana + /// Busca una cadena traducida similar a Persona lejana ///Pareja guardería ///Criapokémon. /// @@ -23561,7 +23711,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Personne lointaine + /// Busca una cadena traducida similar a Personne lointaine ///Couple de la Pension ///Éleveuse. /// @@ -23572,7 +23722,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lontana + /// Busca una cadena traducida similar a Persona lontana ///Coppia Pensione ///AllevaPKMN. /// @@ -23583,7 +23733,7 @@ public class Resources { } /// - /// Looks up a localized string similar to とおくにいるひと + /// Busca una cadena traducida similar a とおくにいるひと ///そだてやふうふ ///トレジャーハンター. /// @@ -23594,7 +23744,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 멀리 있는 사람 + /// Busca una cadena traducida similar a 멀리 있는 사람 ///키우미집부부 ///브리더. /// @@ -23605,7 +23755,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 远处的人 + /// Busca una cadena traducida similar a 远处的人 ///饲育屋夫妇 ///寻宝猎人. /// @@ -23616,7 +23766,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Liebt es zu essen. + /// Busca una cadena traducida similar a Liebt es zu essen. ///Nickt oft ein. ///Schläft gern. ///Macht oft Unordnung. @@ -23640,7 +23790,7 @@ public class Resources { ///Hinterhältig. ///Äußerst gerissen. ///Ist oft in Gedanken. - ///Sehr pedantis [rest of string was truncated]";. + ///Sehr pedantis [resto de la cadena truncado]";. /// public static string text_character_de { get { @@ -23649,7 +23799,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Loves to eat. + /// Busca una cadena traducida similar a Loves to eat. ///Takes plenty of siestas. ///Nods off a lot. ///Scatters things often. @@ -23675,7 +23825,7 @@ public class Resources { ///Often lost in thought. ///Very finicky. ///Strong willed. - ///Somewhat vai [rest of string was truncated]";. + ///Somewhat vai [resto de la cadena truncado]";. /// public static string text_character_en { get { @@ -23684,7 +23834,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Le encanta comer. + /// Busca una cadena traducida similar a Le encanta comer. ///A menudo se duerme. ///Duerme mucho. ///Suele desordenar cosas. @@ -23705,7 +23855,7 @@ public class Resources { ///Es un poco payaso. ///Huye rápido. ///Es extremadamente curioso. - ///Le gusta hacer [rest of string was truncated]";. + ///Le gusta hacer [resto de la cadena truncado]";. /// public static string text_character_es { get { @@ -23714,7 +23864,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Adore manger. + /// Busca una cadena traducida similar a Adore manger. ///S’assoupit souvent. ///Dort beaucoup. ///Éparpille des choses. @@ -23741,7 +23891,7 @@ public class Resources { ///Très particulier. ///Très volontaire. ///Un peu vaniteux. - ///Esprit [rest of string was truncated]";. + ///Esprit [resto de la cadena truncado]";. /// public static string text_character_fr { get { @@ -23750,7 +23900,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Adora mangiare. + /// Busca una cadena traducida similar a Adora mangiare. ///Si addormenta spesso. ///Dorme a lungo. ///Lascia cose in giro. @@ -23773,7 +23923,7 @@ public class Resources { ///È un grande ficcanaso. ///È alquanto vivace. ///È estremamente sagace. - ///Si perde nel suo mo [rest of string was truncated]";. + ///Si perde nel suo mo [resto de la cadena truncado]";. /// public static string text_character_it { get { @@ -23782,7 +23932,7 @@ public class Resources { } /// - /// Looks up a localized string similar to たべるのが だいすき. + /// Busca una cadena traducida similar a たべるのが だいすき. ///ひるねを よくする. ///いねむりが おおい. ///ものを よく ちらかす. @@ -23820,7 +23970,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 먹는 것을 제일 좋아함. + /// Busca una cadena traducida similar a 먹는 것을 제일 좋아함. ///낮잠을 잘 잠. ///말뚝잠이 많음. ///물건을 잘 어지름. @@ -23858,7 +24008,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 非常喜欢吃东西。 + /// Busca una cadena traducida similar a 非常喜欢吃东西。 ///经常睡午觉。 ///常常打瞌睡。 ///经常乱扔东西。 @@ -23896,7 +24046,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Outskirt Stand (C) Cipher Lab (XD) ///Outskirt Stand (C) ///Phenac City (C) @@ -23915,7 +24065,7 @@ public class Resources { ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) - ///P [rest of string was truncated]";. + ///P [resto de la cadena truncado]";. /// public static string text_cxd_00000_en { get { @@ -23924,7 +24074,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Kein + /// Busca una cadena traducida similar a Kein ///Zertrümmerer (HGSS) ///Hohes Graß /// @@ -23958,7 +24108,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -23991,7 +24141,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Golpe roca (HGSS) ///Hierba Alta /// @@ -24024,7 +24174,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24057,7 +24207,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24090,7 +24240,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24123,7 +24273,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24156,7 +24306,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 无 + /// Busca una cadena traducida similar a 无 ///碎岩 (HGSS) ///高草丛 /// @@ -24189,7 +24339,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -24440,7 +24590,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_de { get { @@ -24449,7 +24599,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -24702,7 +24852,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_en { get { @@ -24711,7 +24861,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Picoreja + /// Busca una cadena traducida similar a Picoreja /// /// /// @@ -24963,7 +25113,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_forms_es { get { @@ -24972,7 +25122,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Picoreja + /// Busca una cadena traducida similar a Picoreja /// /// /// @@ -25224,7 +25374,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_Forms_es1 { get { @@ -25233,7 +25383,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -25483,7 +25633,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_fr { get { @@ -25492,7 +25642,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -25742,7 +25892,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_Forms_fr1 { get { @@ -25751,7 +25901,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26002,7 +26152,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_it { get { @@ -26011,7 +26161,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26262,7 +26412,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_Forms_it1 { get { @@ -26271,7 +26421,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26522,7 +26672,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_forms_ja { get { @@ -26531,7 +26681,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Spiky + /// Busca una cadena traducida similar a Spiky /// /// /// @@ -26781,7 +26931,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_ko { get { @@ -26790,7 +26940,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 刺刺耳皮丘 + /// Busca una cadena traducida similar a 刺刺耳皮丘 /// /// /// @@ -27041,7 +27191,7 @@ public class Resources { /// /// /// - /// /// [rest of string was truncated]";. + /// /// [resto de la cadena truncado]";. /// public static string text_forms_zh { get { @@ -27050,7 +27200,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Saphir ///Rubin ///Smaragd @@ -27097,7 +27247,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Sapphire ///Ruby ///Emerald @@ -27144,7 +27294,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Zafiro ///Rubí ///Esmeralda @@ -27191,7 +27341,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Saphir ///Rubis ///Émeraude @@ -27238,7 +27388,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Zaffiro ///Rubino ///Smeraldo @@ -27285,7 +27435,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///サファイア ///ルビー ///エメラルド @@ -27332,7 +27482,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///사파이어 ///루비 ///에메랄드 @@ -27379,7 +27529,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///蓝宝石 ///红宝石 ///绿宝石 @@ -27426,7 +27576,7 @@ public class Resources { } /// - /// Looks up a localized string similar to irgendwo + /// Busca una cadena traducida similar a irgendwo ///in der ersten Stadt ///in [VAR GENDBR(00FF,0506,0000)]dessenderen Zuhause ///im Zuhause eines Freundes @@ -27447,7 +27597,7 @@ public class Resources { ///in einer Stadt an einem Abhang ///in einer prachtvollen Stadt ///in einer Pokémon-Arena - ///in [rest of string was truncated]";. + ///in [resto de la cadena truncado]";. /// public static string text_genloc_de { get { @@ -27456,7 +27606,7 @@ public class Resources { } /// - /// Looks up a localized string similar to somewhere + /// Busca una cadena traducida similar a somewhere ///the first town ///home ///a friend’s house @@ -27490,7 +27640,7 @@ public class Resources { ///a restaurant ///a high-class restaurant ///a seaside city - ///the inside of a tall bu [rest of string was truncated]";. + ///the inside of a tall bu [resto de la cadena truncado]";. /// public static string text_genloc_en { get { @@ -27499,7 +27649,7 @@ public class Resources { } /// - /// Looks up a localized string similar to algún lugar + /// Busca una cadena traducida similar a algún lugar ///el pueblo de partida ///casa ///casa de un amigo @@ -27528,7 +27678,7 @@ public class Resources { ///un museo ///un estudio de grabación ///una estación - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_genloc_es { get { @@ -27537,7 +27687,7 @@ public class Resources { } /// - /// Looks up a localized string similar to quelque part + /// Busca una cadena traducida similar a quelque part ///dans la ville de départ ///dans sa maison ///chez un ami @@ -27560,7 +27710,7 @@ public class Resources { ///dans une Arène Pokémon ///dans une école ///dans une ville immense - ///dans un imm [rest of string was truncated]";. + ///dans un imm [resto de la cadena truncado]";. /// public static string text_genloc_fr { get { @@ -27569,7 +27719,7 @@ public class Resources { } /// - /// Looks up a localized string similar to da qualche parte + /// Busca una cadena traducida similar a da qualche parte ///nella città iniziale ///a casa ///a casa di amici @@ -27594,7 +27744,7 @@ public class Resources { ///in una grande città ///in un edificio ///in un caffè elegante - ///in un c [rest of string was truncated]";. + ///in un c [resto de la cadena truncado]";. /// public static string text_genloc_it { get { @@ -27603,7 +27753,7 @@ public class Resources { } /// - /// Looks up a localized string similar to どこか + /// Busca una cadena traducida similar a どこか ///さいしょのまち ///うち ///ともだちのいえ @@ -27666,7 +27816,7 @@ public class Resources { ///すいどう ///サファリ ///ひみつきち - ///コンテストライブかい [rest of string was truncated]";. + ///コンテストライブかい [resto de la cadena truncado]";. /// public static string text_genloc_ja { get { @@ -27675,7 +27825,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 어딘가 + /// Busca una cadena traducida similar a 어딘가 ///최초의 마을 ///집 ///친구의 집 @@ -27754,7 +27904,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 某处 + /// Busca una cadena traducida similar a 某处 ///第一个城镇 ///家 ///朋友的家 @@ -27833,7 +27983,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///New Bark Town ///Route 29 ///Cherrygrove City @@ -27878,7 +28028,7 @@ public class Resources { ///Dragon's Den ///Route 45 ///Dark Cave - ///Rout [rest of string was truncated]";. + ///Rout [resto de la cadena truncado]";. /// public static string text_gsc_00000_en { get { @@ -27887,7 +28037,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (Ninguno) + /// Busca una cadena traducida similar a (Ninguno) ///Pueblo Primavera ///Ruta 29 ///Ciudad Cerezo @@ -27932,7 +28082,7 @@ public class Resources { ///Guarida Dragón ///Ruta 45 ///Cueva Oscura - ///Rut [rest of string was truncated]";. + ///Rut [resto de la cadena truncado]";. /// public static string text_gsc_00000_es { get { @@ -27941,7 +28091,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///若叶镇 ///29号道路 ///吉花市 @@ -28062,7 +28212,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_gsc_00000_zh { get { @@ -28071,7 +28221,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Mysteriöser Ort + /// Busca una cadena traducida similar a Mysteriöser Ort ///Zweiblattdorf ///Sandgemme ///Flori @@ -28117,7 +28267,7 @@ public class Resources { ///Route 228 ///Route 229 ///Route 230 - ///Erze [rest of string was truncated]";. + ///Erze [resto de la cadena truncado]";. /// public static string text_hgss_00000_de { get { @@ -28126,7 +28276,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Mystery Zone + /// Busca una cadena traducida similar a Mystery Zone ///Twinleaf Town ///Sandgem Town ///Floaroma Town @@ -28166,7 +28316,7 @@ public class Resources { ///Route 222 ///Route 223 ///Route 224 - ///Route 2 [rest of string was truncated]";. + ///Route 2 [resto de la cadena truncado]";. /// public static string text_hgss_00000_en { get { @@ -28175,7 +28325,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar misterioso + /// Busca una cadena traducida similar a Lugar misterioso ///Pueblo Hojaverde ///Pueblo Arena ///Pueblo Aromaflor @@ -28216,7 +28366,7 @@ public class Resources { ///Ruta 223 ///Ruta 224 ///Ruta 225 - ///Rut [rest of string was truncated]";. + ///Rut [resto de la cadena truncado]";. /// public static string text_hgss_00000_es { get { @@ -28225,7 +28375,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit mystér. + /// Busca una cadena traducida similar a Endroit mystér. ///Bonaugure ///Littorella ///Floraville @@ -28270,7 +28420,7 @@ public class Resources { ///Route 227 ///Route 228 ///Route 229 - ///Chenal [rest of string was truncated]";. + ///Chenal [resto de la cadena truncado]";. /// public static string text_hgss_00000_fr { get { @@ -28279,7 +28429,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Zona Misteriosa + /// Busca una cadena traducida similar a Zona Misteriosa ///Duefoglie ///Sabbiafine ///Giardinfiorito @@ -28318,7 +28468,7 @@ public class Resources { ///Percorso 221 ///Percorso 222 ///Percorso 223 - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_hgss_00000_it { get { @@ -28327,7 +28477,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---- + /// Busca una cadena traducida similar a ---- ///フタバタウン ///マサゴタウン ///ソノオタウン @@ -28381,7 +28531,7 @@ public class Resources { ///やりのはしら ///だいしつげん ///ズイのいせき - ///チャンピ [rest of string was truncated]";. + ///チャンピ [resto de la cadena truncado]";. /// public static string text_hgss_00000_ja { get { @@ -28390,7 +28540,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 수수께끼의 장소 + /// Busca una cadena traducida similar a 수수께끼의 장소 ///떡잎마을 ///잔모래마을 ///꽃향기마을 @@ -28460,7 +28610,7 @@ public class Resources { ///마니아터널 ///자랑의 뒷마당 ///갖철섬 - ///숲의 양옥집 /// [rest of string was truncated]";. + ///숲의 양옥집 /// [resto de la cadena truncado]";. /// public static string text_hgss_00000_ko { get { @@ -28469,7 +28619,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---- + /// Busca una cadena traducida similar a ---- ///双叶镇 ///真砂镇 ///苑之镇 @@ -28546,7 +28696,7 @@ public class Resources { ///睿智湖畔 ///隐泉之路 ///心齐湖 - ///立志湖 /// [rest of string was truncated]";. + ///立志湖 /// [resto de la cadena truncado]";. /// public static string text_hgss_00000_zh { get { @@ -28555,7 +28705,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Betreuerpärchen + /// Busca una cadena traducida similar a Betreuerpärchen ///Linktausch ///Linktausch ///Kanto @@ -28578,7 +28728,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Day-Care Couple + /// Busca una cadena traducida similar a Day-Care Couple ///Link trade ///Link trade ///Kanto @@ -28601,7 +28751,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pareja guardería + /// Busca una cadena traducida similar a Pareja guardería ///Intercambio ///Intercambio ///Kanto @@ -28624,7 +28774,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Couple Pension + /// Busca una cadena traducida similar a Couple Pension ///Echange Link ///Echange Link ///Kanto @@ -28647,7 +28797,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Coppia Pensione + /// Busca una cadena traducida similar a Coppia Pensione ///Scambio in link ///Scambio in link ///Kanto @@ -28670,7 +28820,7 @@ public class Resources { } /// - /// Looks up a localized string similar to そだてやふうふ + /// Busca una cadena traducida similar a そだてやふうふ ///つうしんこうかん ///つうしんこうかん ///カント-ちほう @@ -28693,7 +28843,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 키우미집부부 + /// Busca una cadena traducida similar a 키우미집부부 ///통신교환 ///통신교환 ///관동지방 @@ -28716,7 +28866,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 饲育屋夫妇 + /// Busca una cadena traducida similar a 饲育屋夫妇 ///连接交换 ///连接交换 ///关都地区 @@ -28739,7 +28889,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Idyll + /// Busca una cadena traducida similar a Idyll ///Pokémon Ranger ///Entfernter Ort ///Pokémon Movie @@ -28770,7 +28920,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon Festa [rest of string was truncated]";. + ///Pokémon Festa [resto de la cadena truncado]";. /// public static string text_hgss_03000_de { get { @@ -28779,7 +28929,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lovely place + /// Busca una cadena traducida similar a Lovely place ///Pokémon Ranger ///Faraway place ///Pokémon Movie @@ -28809,7 +28959,7 @@ public class Resources { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Festa 0 [rest of string was truncated]";. + ///Pokémon Festa 0 [resto de la cadena truncado]";. /// public static string text_hgss_03000_en { get { @@ -28818,7 +28968,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Pokémon Ranger ///Lugar lejano ///Película Pokémon @@ -28848,7 +28998,7 @@ public class Resources { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Fe [rest of string was truncated]";. + ///Pokémon Fe [resto de la cadena truncado]";. /// public static string text_hgss_03000_es { get { @@ -28857,7 +29007,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Pokémon Ranger ///Endroit lointain ///Film Pokémon @@ -28888,7 +29038,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Po [rest of string was truncated]";. + ///Po [resto de la cadena truncado]";. /// public static string text_hgss_03000_fr { get { @@ -28897,7 +29047,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo grazioso + /// Busca una cadena traducida similar a Luogo grazioso ///Pokémon Ranger ///Luogo Remoto ///Film Pokémon @@ -28928,7 +29078,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon [rest of string was truncated]";. + ///Pokémon [resto de la cadena truncado]";. /// public static string text_hgss_03000_it { get { @@ -28937,7 +29087,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///ポケモンレンジャ- ///とおいばしょ ///ポケモンえいが @@ -28984,7 +29134,7 @@ public class Resources { ///ポケパ-ク09 ///ポケパ-ク10 ///ポケパ-ク11 - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_hgss_03000_ja { get { @@ -28993,7 +29143,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///다른 지방 ///먼 곳 ///포켓몬영화 @@ -29051,7 +29201,7 @@ public class Resources { ///PC후쿠오카 ///PC나고야 ///PC삿포로 - ///PC요코하 [rest of string was truncated]";. + ///PC요코하 [resto de la cadena truncado]";. /// public static string text_hgss_03000_ko { get { @@ -29060,7 +29210,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美丽的地方 + /// Busca una cadena traducida similar a 美丽的地方 ///宝可梦保育家 ///遥远的地方 ///宝可梦电影 @@ -29123,7 +29273,7 @@ public class Resources { ///宝可梦活动 ///宝可梦活动06 ///宝可梦活动07 - ///宝可梦活动08 [rest of string was truncated]";. + ///宝可梦活动08 [resto de la cadena truncado]";. /// public static string text_hgss_03000_zh { get { @@ -29132,7 +29282,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Kein Item + /// Busca una cadena traducida similar a Kein Item ///Meisterball ///Hyperball ///Superball @@ -29177,7 +29327,7 @@ public class Resources { ///Lavakeks ///Beerensaft ///Zauberasche - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_items_de { get { @@ -29186,7 +29336,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Kein Item + /// Busca una cadena traducida similar a Kein Item ///Meisterball ///Hyperball ///Superball @@ -29231,7 +29381,7 @@ public class Resources { ///Lavakeks ///Beerensaft ///Zauberasche - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_Items_de1 { get { @@ -29240,7 +29390,7 @@ public class Resources { } /// - /// Looks up a localized string similar to None + /// Busca una cadena traducida similar a None ///Master Ball ///Ultra Ball ///Great Ball @@ -29283,7 +29433,7 @@ public class Resources { ///Elixir ///Max Elixir ///Lava Cookie - ///Berry Juice [rest of string was truncated]";. + ///Berry Juice [resto de la cadena truncado]";. /// public static string text_items_en { get { @@ -29292,7 +29442,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ninguno + /// Busca una cadena traducida similar a Ninguno ///Master Ball ///Ultra Ball ///Super Ball @@ -29333,7 +29483,7 @@ public class Resources { ///Éter ///Éter Máximo ///Elixir - ///Elixir Máximo /// [rest of string was truncated]";. + ///Elixir Máximo /// [resto de la cadena truncado]";. /// public static string text_items_es { get { @@ -29342,7 +29492,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Aucun objet + /// Busca una cadena traducida similar a Aucun objet ///Master Ball ///Hyper Ball ///Super Ball @@ -29385,7 +29535,7 @@ public class Resources { ///Élixir ///Max Élixir ///Lava Cookie - ///Jus de Baie [rest of string was truncated]";. + ///Jus de Baie [resto de la cadena truncado]";. /// public static string text_items_fr { get { @@ -29394,7 +29544,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Niente + /// Busca una cadena traducida similar a Niente ///Master Ball ///Ultra Ball ///Mega Ball @@ -29437,7 +29587,7 @@ public class Resources { ///Elisir ///Elisir Max ///Lavottino - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_items_it { get { @@ -29446,7 +29596,7 @@ public class Resources { } /// - /// Looks up a localized string similar to なし + /// Busca una cadena traducida similar a なし ///マスターボール ///ハイパーボール ///スーパーボール @@ -29505,7 +29655,7 @@ public class Resources { ///クリティカット ///プラスパワー ///ディフェンダー - ///スピーダー /// [rest of string was truncated]";. + ///スピーダー /// [resto de la cadena truncado]";. /// public static string text_items_ja { get { @@ -29514,7 +29664,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 없음 + /// Busca una cadena traducida similar a 없음 ///마스터볼 ///하이퍼볼 ///수퍼볼 @@ -29593,7 +29743,7 @@ public class Resources { ///실버스프레이 ///골드스프레이 ///동굴탈출로프 - ///벌레회피스프레이 /// [rest of string was truncated]";. + ///벌레회피스프레이 /// [resto de la cadena truncado]";. /// public static string text_items_ko { get { @@ -29602,7 +29752,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 无 + /// Busca una cadena traducida similar a 无 ///大师球 ///高级球 ///超级球 @@ -29690,7 +29840,7 @@ public class Resources { ///叶之石 ///小蘑菇 ///大蘑菇 - ///珍珠 [rest of string was truncated]";. + ///珍珠 [resto de la cadena truncado]";. /// public static string text_items_zh { get { @@ -29699,7 +29849,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -29747,7 +29897,7 @@ public class Resources { ///Bike Voucher ///X Accuracy ///Leaf Stone - ///Card Ke [rest of string was truncated]";. + ///Card Ke [resto de la cadena truncado]";. /// public static string text_ItemsG1_en { get { @@ -29756,7 +29906,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ningún + /// Busca una cadena traducida similar a Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -29800,7 +29950,7 @@ public class Resources { ///Fósil domo ///Fósil hélix ///Llave secreta - ///? [rest of string was truncated]";. + ///? [resto de la cadena truncado]";. /// public static string text_ItemsG1_es { get { @@ -29809,7 +29959,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (无) + /// Busca una cadena traducida similar a (无) ///大师球 ///高级球 ///超级球 @@ -29982,7 +30132,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_ItemsG1_zh { get { @@ -29991,7 +30141,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Master Ball ///Ultra Ball ///BrightPowder @@ -30036,7 +30186,7 @@ public class Resources { ///Super Repel ///Max Repel ///Dire Hit - ///Ter [rest of string was truncated]";. + ///Ter [resto de la cadena truncado]";. /// public static string text_ItemsG2_en { get { @@ -30045,7 +30195,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ningún + /// Busca una cadena traducida similar a Ningún ///Master Ball ///Ultra Ball ///Polvo brillo @@ -30086,7 +30236,7 @@ public class Resources { ///Cura Total ///Revivir ///Revivir Máximo - ///Prote [rest of string was truncated]";. + ///Prote [resto de la cadena truncado]";. /// public static string text_ItemsG2_es { get { @@ -30095,7 +30245,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (无) + /// Busca una cadena traducida similar a (无) ///大师球 ///高级球 ///光粉 @@ -30179,7 +30329,7 @@ public class Resources { ///毒针 ///王者之证 ///苦涩的果实 - ///薄荷的果 [rest of string was truncated]";. + ///薄荷的果 [resto de la cadena truncado]";. /// public static string text_ItemsG2_zh { get { @@ -30188,7 +30338,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (None) + /// Busca una cadena traducida similar a (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -30235,7 +30385,7 @@ public class Resources { ///Berry Juice ///Sacred Ash ///Shoal Salt - ///Shoal S [rest of string was truncated]";. + ///Shoal S [resto de la cadena truncado]";. /// public static string text_ItemsG3_en { get { @@ -30244,7 +30394,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ningún + /// Busca una cadena traducida similar a Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -30288,7 +30438,7 @@ public class Resources { ///Flauta Roja ///Flauta Negra ///Flauta Blanca - ///Zumo d [rest of string was truncated]";. + ///Zumo d [resto de la cadena truncado]";. /// public static string text_ItemsG3_es { get { @@ -30297,7 +30447,7 @@ public class Resources { } /// - /// Looks up a localized string similar to (无) + /// Busca una cadena traducida similar a (无) ///大师球 ///高级球 ///超级球 @@ -30407,7 +30557,7 @@ public class Resources { ///大珍珠 ///星星沙子 ///星星碎片 - ///金 [rest of string was truncated]";. + ///金 [resto de la cadena truncado]";. /// public static string text_ItemsG3_zh { get { @@ -30416,7 +30566,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Jail Key + /// Busca una cadena traducida similar a Jail Key ///Elevator Key ///Small Tablet ///F-Disk @@ -30463,7 +30613,7 @@ public class Resources { ///Excite Scent ///Vivid Scent ///Powerup Part - ///Ein [rest of string was truncated]";. + ///Ein [resto de la cadena truncado]";. /// public static string text_ItemsG3Colosseum_en { get { @@ -30472,7 +30622,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Safe Key + /// Busca una cadena traducida similar a Safe Key ///Elevator Key ///Bonsly Card ///Machine Part @@ -30515,7 +30665,7 @@ public class Resources { ///Battle CD 07 ///Battle CD 08 ///Battle CD 09 - ///Battle CD 1 [rest of string was truncated]";. + ///Battle CD 1 [resto de la cadena truncado]";. /// public static string text_ItemsG3XD_en { get { @@ -30524,7 +30674,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///Es erinnert sich daran, ///Es erinnert sich daran, @@ -30544,7 +30694,7 @@ public class Resources { ///dass es feuchte Augen bekommen hat ///wie sehr es sich amüsiert hat ///wie nervös es war - ///wie wohl es si [rest of string was truncated]";. + ///wie wohl es si [resto de la cadena truncado]";. /// public static string text_memories_de { get { @@ -30553,7 +30703,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///The Pokémon remembers ///The Pokémon remembers @@ -30579,7 +30729,7 @@ public class Resources { ///it felt sorry ///it got emotional ///it felt nostalgic - ///it had some diffi [rest of string was truncated]";. + ///it had some diffi [resto de la cadena truncado]";. /// public static string text_memories_en { get { @@ -30588,7 +30738,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///El Pokémon recuerda muy vagamente ///El Pokémon recuerda vagamente @@ -30607,7 +30757,7 @@ public class Resources { ///lo mucho que le agradó ///las lágrimas que le vinieron a los ojos ///la ilusión que le hizo - ///lo nervioso que se pu [rest of string was truncated]";. + ///lo nervioso que se pu [resto de la cadena truncado]";. /// public static string text_memories_es { get { @@ -30616,7 +30766,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///se souvient vaguement que ///se souvient vaguement que @@ -30639,7 +30789,7 @@ public class Resources { ///c’était apaisant ///ça chatouillait ///ça ne lui a laissé aucun regret - ///ça lui a laissé un [rest of string was truncated]";. + ///ça lui a laissé un [resto de la cadena truncado]";. /// public static string text_memories_fr { get { @@ -30648,7 +30798,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///Il Pokémon ricorda ancora ///Il Pokémon ricorda ancora @@ -30671,7 +30821,7 @@ public class Resources { ///quella bella sensazione ///che non riusciva a star fermo ///il suo entusiasmo - ///il suo dispiacere [rest of string was truncated]";. + ///il suo dispiacere [resto de la cadena truncado]";. /// public static string text_memories_it { get { @@ -30680,7 +30830,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///おもいで らしいわ ///おもいで らしいわ @@ -30720,7 +30870,7 @@ public class Resources { ///だれか ///いい おもいでが あるようだけど ちょっと おもいおこせないみたい…… ///{0}は {1}に {2}で であい  モンスターボールを なげられて いっしょに たびする ことになり  {3}ことが {4} - ///{0}は {2}で  タマゴの からをやぶって [rest of string was truncated]";. + ///{0}は {2}で  タマゴの からをやぶって [resto de la cadena truncado]";. /// public static string text_memories_ja { get { @@ -30729,7 +30879,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///추억인 것 같아 ///추억인 것 같아 @@ -30770,7 +30920,7 @@ public class Resources { ///좋은 추억이 있는 것 같은데 기억이 잘 떠오르지 않는 것 같아... ///{0} {1} {2}에서 만나 몬스터볼에 들어가게 되고 함께 여행하게 되어 {3} 게 {4} ///{0} {2}에서 알의 껍데기를 깨고 나왔을 때 처음 {1} 만나서 {3} 게 {4} - ///{0} {1} {2}에 [rest of string was truncated]";. + ///{0} {1} {2}에 [resto de la cadena truncado]";. /// public static string text_memories_ko { get { @@ -30779,7 +30929,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a /// ///宝可梦记得 ///宝可梦记得 @@ -30824,7 +30974,7 @@ public class Resources { ///{0}在{2}通过通讯交换遇见了{1},他们随后成了朋友。 ///{0}和{1}一起去了宝可梦中心/友好商店,购买了{2}。 ///{0}和{1}一起去了{2}的宝可梦中心并且恢复了它疲惫的身体。 - ///{0}和{1}一起垂钓,之 [rest of string was truncated]";. + ///{0}和{1}一起垂钓,之 [resto de la cadena truncado]";. /// public static string text_memories_zh { get { @@ -30833,7 +30983,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ----- + /// Busca una cadena traducida similar a ----- ///Pfund ///Karateschlag ///Duplexhieb @@ -30879,7 +31029,7 @@ public class Resources { ///Silberblick ///Biss ///Heuler - ///Brül [rest of string was truncated]";. + ///Brül [resto de la cadena truncado]";. /// public static string text_moves_de { get { @@ -30888,7 +31038,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ——— + /// Busca una cadena traducida similar a ——— ///Pound ///Karate Chop ///Double Slap @@ -30938,7 +31088,7 @@ public class Resources { ///Sing ///Supersonic ///Sonic Boom - ///Dis [rest of string was truncated]";. + ///Dis [resto de la cadena truncado]";. /// public static string text_moves_en { get { @@ -30947,7 +31097,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - ///Destructor ///Golpe Kárate ///Doble Bofetón @@ -30992,7 +31142,7 @@ public class Resources { ///Pin Misil ///Malicioso ///Mordisco - ///Gr [rest of string was truncated]";. + ///Gr [resto de la cadena truncado]";. /// public static string text_moves_es { get { @@ -31001,7 +31151,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///Écras’Face ///Poing-Karaté ///Torgnoles @@ -31046,7 +31196,7 @@ public class Resources { ///Dard-Nuée ///Groz’Yeux ///Morsure - ///Rugissement /// [rest of string was truncated]";. + ///Rugissement /// [resto de la cadena truncado]";. /// public static string text_moves_fr { get { @@ -31055,7 +31205,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ----- + /// Busca una cadena traducida similar a ----- ///Botta ///Colpokarate ///Doppiasberla @@ -31101,7 +31251,7 @@ public class Resources { ///Fulmisguardo ///Morso ///Ruggito - ///B [rest of string was truncated]";. + ///B [resto de la cadena truncado]";. /// public static string text_moves_it { get { @@ -31110,7 +31260,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///はたく ///からてチョップ ///おうふくビンタ @@ -31179,7 +31329,7 @@ public class Resources { ///じごくぐるま ///けたぐり ///カウンター - ///ちきゅうなげ /// [rest of string was truncated]";. + ///ちきゅうなげ /// [resto de la cadena truncado]";. /// public static string text_moves_ja { get { @@ -31188,7 +31338,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///막치기 ///태권당수 ///연속뺨치기 @@ -31275,7 +31425,7 @@ public class Resources { ///전기쇼크 ///10만볼트 ///전기자석파 - ///번개 /// [rest of string was truncated]";. + ///번개 /// [resto de la cadena truncado]";. /// public static string text_moves_ko { get { @@ -31284,7 +31434,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ――――― + /// Busca una cadena traducida similar a ――――― ///拍击 ///空手劈 ///连环巴掌 @@ -31390,7 +31540,7 @@ public class Resources { ///刺耳声 ///影子分身 ///自我再生 - ///变硬 /// [rest of string was truncated]";. + ///变硬 /// [resto de la cadena truncado]";. /// public static string text_moves_zh { get { @@ -31399,7 +31549,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Robust + /// Busca una cadena traducida similar a Robust ///Solo ///Mutig ///Hart @@ -31432,7 +31582,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Hardy + /// Busca una cadena traducida similar a Hardy ///Lonely ///Brave ///Adamant @@ -31465,7 +31615,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Fuerte + /// Busca una cadena traducida similar a Fuerte ///Huraña ///Audaz ///Firme @@ -31498,7 +31648,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Hardi + /// Busca una cadena traducida similar a Hardi ///Solo ///Brave ///Rigide @@ -31531,7 +31681,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ardita + /// Busca una cadena traducida similar a Ardita ///Schiva ///Audace ///Decisa @@ -31564,7 +31714,7 @@ public class Resources { } /// - /// Looks up a localized string similar to がんばりや + /// Busca una cadena traducida similar a がんばりや ///さみしがり ///ゆうかん ///いじっぱり @@ -31597,7 +31747,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 노력 + /// Busca una cadena traducida similar a 노력 ///외로움 ///용감 ///고집 @@ -31630,7 +31780,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 勤奋 + /// Busca una cadena traducida similar a 勤奋 ///怕寂寞 ///勇敢 ///固执 @@ -31663,7 +31813,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokériegelbox + /// Busca una cadena traducida similar a Pokériegelbox ///Beerenmixer ///Pokériegel geben ///Geben @@ -31682,7 +31832,7 @@ public class Resources { ///Gib mindestens zwei Beeren in den Mixer. ///[~ 17] ///Du hast [VAR NUM1(0001)] [VAR 01A3(0000)] hergestellt![VAR BE05(0000)][VAR BE05(0001)] - ///Willst du [VAR PK [rest of string was truncated]";. + ///Willst du [VAR PK [resto de la cadena truncado]";. /// public static string text_pokeblock_de { get { @@ -31691,7 +31841,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokéblock Case + /// Busca una cadena traducida similar a Pokéblock Case ///Berry Blender ///Give a Pokéblock ///Give @@ -31711,7 +31861,7 @@ public class Resources { ///[~ 17] ///You created [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///Give the Pokéblock to [VAR PKNICK(0000)]? - ///An Egg can’t ea [rest of string was truncated]";. + ///An Egg can’t ea [resto de la cadena truncado]";. /// public static string text_pokeblock_en { get { @@ -31720,7 +31870,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Tubo Pokécubos + /// Busca una cadena traducida similar a Tubo Pokécubos ///Licuabayas ///Dar un Pokécubo ///Dar @@ -31740,7 +31890,7 @@ public class Resources { ///[~ 17] ///¡Has conseguido [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///¿Quieres darle el Pokécubo a [VAR PKNICK(0000)]? - ///¡Los Huev [rest of string was truncated]";. + ///¡Los Huev [resto de la cadena truncado]";. /// public static string text_pokeblock_es { get { @@ -31749,7 +31899,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Boîte Pokéblocs + /// Busca una cadena traducida similar a Boîte Pokéblocs ///Mixeur à Baies ///Donner un Pokébloc ///Donner @@ -31769,7 +31919,7 @@ public class Resources { ///[~ 17] ///Vous avez concocté [VAR NUM1(0001)] [VAR 01A3(0000)] ![VAR BE05(0000)][VAR BE05(0001)] ///Donner un Pokébloc à [VAR PKNICK(0000)] ? - ///Un Œuf [rest of string was truncated]";. + ///Un Œuf [resto de la cadena truncado]";. /// public static string text_pokeblock_fr { get { @@ -31778,7 +31928,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Portapokémelle + /// Busca una cadena traducida similar a Portapokémelle ///Mixer bacche ///Dai una Pokémella ///Dai @@ -31798,7 +31948,7 @@ public class Resources { ///[~ 17] ///Hai preparato [VAR NUM1(0001)] [VAR 01A3(0000)]![VAR BE05(0000)][VAR BE05(0001)] ///Vuoi dare la Pokémella a [VAR PKNICK(0000)]? - ///Un Uovo non può mangiare Pokémelle [rest of string was truncated]";. + ///Un Uovo non può mangiare Pokémelle [resto de la cadena truncado]";. /// public static string text_pokeblock_it { get { @@ -31807,7 +31957,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ポロックケース + /// Busca una cadena traducida similar a ポロックケース ///きのみブレンダー ///ポロックを あげる ///あげる @@ -31838,7 +31988,7 @@ public class Resources { ///ブレンドスタート ///きのみを もどす ///ポケモンにあげる - ///やめる [rest of string was truncated]";. + ///やめる [resto de la cadena truncado]";. /// public static string text_pokeblock_ja { get { @@ -31847,7 +31997,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 포켓몬스넥케이스 + /// Busca una cadena traducida similar a 포켓몬스넥케이스 ///나무열매블렌더 ///포켓몬스넥을 준다 ///준다 @@ -31877,7 +32027,7 @@ public class Resources { ///노랑으로 추려냈습니다 ///블렌드 스타트 ///되돌려 둔다 - ///포켓몬에게 준 [rest of string was truncated]";. + ///포켓몬에게 준 [resto de la cadena truncado]";. /// public static string text_pokeblock_ko { get { @@ -31886,7 +32036,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 宝可方块盒 + /// Busca una cadena traducida similar a 宝可方块盒 ///树果混合器 ///给与一个宝可方块 ///给与 @@ -31937,7 +32087,7 @@ public class Resources { ///[~ 48] ///[~ 49] ///[~ 50] - ///[VAR 01A3(0000)] /// [rest of string was truncated]";. + ///[VAR 01A3(0000)] /// [resto de la cadena truncado]";. /// public static string text_pokeblock_zh { get { @@ -31946,7 +32096,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Zucker-Pofflé + /// Busca una cadena traducida similar a Zucker-Pofflé ///Minz-Pofflé ///Zitrus-Pofflé ///Bitter-Pofflé @@ -31971,7 +32121,7 @@ public class Resources { ///Frühlingsdeko-Pofflé ///Sommerdeko-Pofflé ///Herbstdeko-Pofflé - ///Winterdeko [rest of string was truncated]";. + ///Winterdeko [resto de la cadena truncado]";. /// public static string text_puff_de { get { @@ -31980,7 +32130,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Sweet Poké Puff + /// Busca una cadena traducida similar a Sweet Poké Puff ///Mint Poké Puff ///Citrus Poké Puff ///Mocha Poké Puff @@ -32002,7 +32152,7 @@ public class Resources { ///Deluxe Spice Poké Puff ///Supreme Wish Poké Puff ///Supreme Honor Poké Puff - ///Supreme Spring Pok [rest of string was truncated]";. + ///Supreme Spring Pok [resto de la cadena truncado]";. /// public static string text_puff_en { get { @@ -32011,7 +32161,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokélito Dulce + /// Busca una cadena traducida similar a Pokélito Dulce ///Pokélito Menta ///Pokélito Ácido ///Pokélito Amargo @@ -32034,7 +32184,7 @@ public class Resources { ///Pokélito de Cumpleaños ///Pokélito de Celebración ///Pokélito Primaveral - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_puff_es { get { @@ -32043,7 +32193,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pofiterole Sucrée + /// Busca una cadena traducida similar a Pofiterole Sucrée ///Pofiterole Mentholée ///Pofiterole Aigre ///Pofiterole Amère @@ -32063,7 +32213,7 @@ public class Resources { ///Pofiterole Deluxe Aigre ///Pofiterole Deluxe Amère ///Pofiterole Deluxe Épicée - ///Pofiterole Anniversaire [rest of string was truncated]";. + ///Pofiterole Anniversaire [resto de la cadena truncado]";. /// public static string text_puff_fr { get { @@ -32072,7 +32222,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Pokébignè dolce + /// Busca una cadena traducida similar a Pokébignè dolce ///Pokébignè fresco ///Pokébignè agro ///Pokébignè amaro @@ -32094,7 +32244,7 @@ public class Resources { ///Pokéb. speziato deluxe ///Pokébignè di compleanno ///Pokébignè celebrativo - ///Pokébignè p [rest of string was truncated]";. + ///Pokébignè p [resto de la cadena truncado]";. /// public static string text_puff_it { get { @@ -32103,7 +32253,7 @@ public class Resources { } /// - /// Looks up a localized string similar to スイートポフレ + /// Busca una cadena traducida similar a スイートポフレ ///フレッシュポフレ ///サワーポフレ ///ビターポフレ @@ -32137,7 +32287,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 스위트포플레 + /// Busca una cadena traducida similar a 스위트포플레 ///프레시포플레 ///사워포플레 ///비터포플레 @@ -32171,7 +32321,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 甘甜泡芙 + /// Busca una cadena traducida similar a 甘甜泡芙 ///清新泡芙 ///酸涩泡芙 ///苦甜泡芙 @@ -32205,7 +32355,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Littleroot Town + /// Busca una cadena traducida similar a Littleroot Town ///Oldale Town ///Dewford Town ///Lavaridge Town @@ -32248,7 +32398,7 @@ public class Resources { ///Route 125 ///Route 126 ///Route 127 - ///Route 1 [rest of string was truncated]";. + ///Route 1 [resto de la cadena truncado]";. /// public static string text_rsefrlg_00000_en { get { @@ -32257,7 +32407,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Villa Raíz + /// Busca una cadena traducida similar a Villa Raíz ///Pueblo Escaso ///Pueblo Azuliza ///Pueblo Lavacalda @@ -32303,7 +32453,7 @@ public class Resources { ///Ruta 128 ///Ruta 129 ///Ruta 130 - ///Ruta [rest of string was truncated]";. + ///Ruta [resto de la cadena truncado]";. /// public static string text_rsefrlg_00000_es { get { @@ -32312,7 +32462,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 未白镇 + /// Busca una cadena traducida similar a 未白镇 ///古辰镇 ///武斗镇 ///釜炎镇 @@ -32389,7 +32539,7 @@ public class Resources { ///热焰小径 ///热焰小径 (2) ///凹凸山道 - ///凹 [rest of string was truncated]";. + ///凹 [resto de la cadena truncado]";. /// public static string text_rsefrlg_00000_zh { get { @@ -32398,7 +32548,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Mysteriöser Ort /// @@ -32446,7 +32596,7 @@ public class Resources { /// ///Vegetationshöhle ///Prüfungsbereich - ///Vegetati [rest of string was truncated]";. + ///Vegetati [resto de la cadena truncado]";. /// public static string text_sm_00000_de { get { @@ -32455,7 +32605,7 @@ public class Resources { } /// - /// Looks up a localized string similar to —————— + /// Busca una cadena traducida similar a —————— /// ///Mystery Zone /// @@ -32507,7 +32657,7 @@ public class Resources { ///Totem’s Den ///Route 4 /// - ///Rou [rest of string was truncated]";. + ///Rou [resto de la cadena truncado]";. /// public static string text_sm_00000_en { get { @@ -32516,7 +32666,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - /// ///Lugar misterioso /// @@ -32564,7 +32714,7 @@ public class Resources { /// ///Cueva Sotobosque ///Sala de la Prueba - ///Cueva [rest of string was truncated]";. + ///Cueva [resto de la cadena truncado]";. /// public static string text_sm_00000_es { get { @@ -32573,7 +32723,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Endroit mystérieux /// @@ -32621,7 +32771,7 @@ public class Resources { /// ///Grotte Verdoyante ///Zone de l’Épreuve - ///Grotte Verdoyant [rest of string was truncated]";. + ///Grotte Verdoyant [resto de la cadena truncado]";. /// public static string text_sm_00000_fr { get { @@ -32630,7 +32780,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Zona misteriosa /// @@ -32677,7 +32827,7 @@ public class Resources { ///Orto delle Bacche /// ///Grotta Sottobosco - ///Luogo dell [rest of string was truncated]";. + ///Luogo dell [resto de la cadena truncado]";. /// public static string text_sm_00000_it { get { @@ -32686,7 +32836,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///なぞのばしょ /// @@ -32768,7 +32918,7 @@ public class Resources { /// ///[~ 80] /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_sm_00000_ja { get { @@ -32777,7 +32927,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///수수께끼의 장소 /// @@ -32871,7 +33021,7 @@ public class Resources { /// ///생명의 유적 /// - ///아칼라외 [rest of string was truncated]";. + ///아칼라외 [resto de la cadena truncado]";. /// public static string text_sm_00000_ko { get { @@ -32880,7 +33030,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///神秘的地方 /// @@ -32984,7 +33134,7 @@ public class Resources { /// ///豪诺豪诺度假地 /// - ///皇家巨蛋 [rest of string was truncated]";. + ///皇家巨蛋 [resto de la cadena truncado]";. /// public static string text_sm_00000_zh { get { @@ -32993,7 +33143,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Link-Tausch + /// Busca una cadena traducida similar a Link-Tausch ///Link-Tausch ///Kanto-Region ///Johto-Region @@ -33017,7 +33167,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a Link Trade + /// Busca una cadena traducida similar a a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -33041,7 +33191,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Intercambio en conexión + /// Busca una cadena traducida similar a Intercambio en conexión ///Intercambio en conexión ///Kanto ///Johto @@ -33065,7 +33215,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Échanges Link + /// Busca una cadena traducida similar a Échanges Link ///Échanges Link ///Kanto ///Johto @@ -33089,7 +33239,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Scambio in link + /// Busca una cadena traducida similar a Scambio in link ///Scambio in link ///Kanto ///Johto @@ -33113,7 +33263,7 @@ public class Resources { } /// - /// Looks up a localized string similar to つうしんこうかん + /// Busca una cadena traducida similar a つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -33137,7 +33287,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 통신교환 + /// Busca una cadena traducida similar a 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -33161,7 +33311,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 连接交换 + /// Busca una cadena traducida similar a 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -33185,7 +33335,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Netter Ort + /// Busca una cadena traducida similar a Netter Ort ///Ferner Ort ///Pokémon-Film ///Pokémon-Film 2016 @@ -33211,7 +33361,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS 2018 [rest of string was truncated]";. + ///WCS 2018 [resto de la cadena truncado]";. /// public static string text_sm_40000_de { get { @@ -33220,7 +33370,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a lovely place + /// Busca una cadena traducida similar a a lovely place ///a faraway place ///a Pokémon movie ///2016 Pokémon Movie @@ -33244,7 +33394,7 @@ public class Resources { ///Pokémon Ctr. SKYTREE TOWN ///a Pokémon Store ///a WCS - ///WCS 20 [rest of string was truncated]";. + ///WCS 20 [resto de la cadena truncado]";. /// public static string text_sm_40000_en { get { @@ -33253,7 +33403,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2016 @@ -33275,7 +33425,7 @@ public class Resources { ///Pokémon Center Hiroshima ///Pokémon Center Kyoto ///Pokémon Ctr. SKYTREE TOWN - ///Pokémon Store [rest of string was truncated]";. + ///Pokémon Store [resto de la cadena truncado]";. /// public static string text_sm_40000_es { get { @@ -33284,7 +33434,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2016 @@ -33310,7 +33460,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WC [rest of string was truncated]";. + ///WC [resto de la cadena truncado]";. /// public static string text_sm_40000_fr { get { @@ -33319,7 +33469,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo grazioso + /// Busca una cadena traducida similar a Luogo grazioso ///Luogo remoto ///Film Pokémon ///Film Pokémon 2016 @@ -33345,7 +33495,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS [rest of string was truncated]";. + ///WCS [resto de la cadena truncado]";. /// public static string text_sm_40000_it { get { @@ -33354,7 +33504,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが16 @@ -33408,7 +33558,7 @@ public class Resources { ///PGL ///ポケモンイベント16 ///ポケモンイベント17 - ///ポケモ [rest of string was truncated]";. + ///ポケモ [resto de la cadena truncado]";. /// public static string text_sm_40000_ja { get { @@ -33417,7 +33567,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화16 @@ -33473,7 +33623,7 @@ public class Resources { ///포켓몬이벤트17 ///포켓몬이벤트18 ///포켓몬이벤트19 - ///포켓몬이벤 [rest of string was truncated]";. + ///포켓몬이벤 [resto de la cadena truncado]";. /// public static string text_sm_40000_ko { get { @@ -33482,7 +33632,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美丽的地方 + /// Busca una cadena traducida similar a 美丽的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影16 @@ -33544,7 +33694,7 @@ public class Resources { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可梦庆典19 [rest of string was truncated]";. + ///宝可梦庆典19 [resto de la cadena truncado]";. /// public static string text_sm_40000_zh { get { @@ -33553,7 +33703,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ferne Person + /// Busca una cadena traducida similar a Ferne Person ///Hortleiterinnen ///Schatzsucher ///Dame der Heißen Quellen. @@ -33565,7 +33715,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a stranger + /// Busca una cadena traducida similar a a stranger ///Nursery helpers ///a treasure hunter ///an old hot-springs visitor. @@ -33577,7 +33727,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lejana + /// Busca una cadena traducida similar a Persona lejana ///Cuidados Pokémon ///Buscatesoros ///Anciana del Balneario. @@ -33589,7 +33739,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Personne lointaine + /// Busca una cadena traducida similar a Personne lointaine ///Responsable de la Garderie ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -33601,7 +33751,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lontana + /// Busca una cadena traducida similar a Persona lontana ///Ostello Pokémon ///Cercatesori ///Vecchina delle terme. @@ -33613,7 +33763,7 @@ public class Resources { } /// - /// Looks up a localized string similar to とおくにいるひと + /// Busca una cadena traducida similar a とおくにいるひと ///あずかりやさん ///トレジャーハンター ///おんせんばあさん. @@ -33625,7 +33775,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 멀리 있는 사람 + /// Busca una cadena traducida similar a 멀리 있는 사람 ///맡기미집 ///트레져헌터 ///온천할머니. @@ -33637,7 +33787,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 远处的人 + /// Busca una cadena traducida similar a 远处的人 ///寄放屋 ///寻宝猎人 ///温泉婆婆. @@ -33649,7 +33799,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ei + /// Busca una cadena traducida similar a Ei ///Bisasam ///Bisaknosp ///Bisaflor @@ -33708,7 +33858,7 @@ public class Resources { ///Menki ///Rasaff ///Fukano - ///Arka [rest of string was truncated]";. + ///Arka [resto de la cadena truncado]";. /// public static string text_species_de { get { @@ -33717,7 +33867,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Egg + /// Busca una cadena traducida similar a Egg ///Bulbasaur ///Ivysaur ///Venusaur @@ -33771,7 +33921,7 @@ public class Resources { ///Dugtrio ///Meowth ///Persian - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_species_en { get { @@ -33780,7 +33930,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Huevo + /// Busca una cadena traducida similar a Huevo ///Bulbasaur ///Ivysaur ///Venusaur @@ -33833,7 +33983,7 @@ public class Resources { ///Diglett ///Dugtrio ///Meowth - ///Persian [rest of string was truncated]";. + ///Persian [resto de la cadena truncado]";. /// public static string text_species_es { get { @@ -33842,7 +33992,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Œuf + /// Busca una cadena traducida similar a Œuf ///Bulbizarre ///Herbizarre ///Florizarre @@ -33892,7 +34042,7 @@ public class Resources { ///Parasect ///Mimitoss ///Aéromite - ///Taupiqu [rest of string was truncated]";. + ///Taupiqu [resto de la cadena truncado]";. /// public static string text_species_fr { get { @@ -33901,7 +34051,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Uovo + /// Busca una cadena traducida similar a Uovo ///Bulbasaur ///Ivysaur ///Venusaur @@ -33954,7 +34104,7 @@ public class Resources { ///Diglett ///Dugtrio ///Meowth - ///Persian /// [rest of string was truncated]";. + ///Persian /// [resto de la cadena truncado]";. /// public static string text_species_it { get { @@ -33963,7 +34113,7 @@ public class Resources { } /// - /// Looks up a localized string similar to タマゴ + /// Busca una cadena traducida similar a タマゴ ///フシギダネ ///フシギソウ ///フシギバナ @@ -34042,7 +34192,7 @@ public class Resources { ///ゴローニャ ///ポニータ ///ギャロップ - ///ヤ [rest of string was truncated]";. + ///ヤ [resto de la cadena truncado]";. /// public static string text_species_ja { get { @@ -34051,7 +34201,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 알 + /// Busca una cadena traducida similar a 알 ///이상해씨 ///이상해풀 ///이상해꽃 @@ -34153,7 +34303,7 @@ public class Resources { ///킹크랩 ///찌리리공 ///붐볼 - ///아라리 /// [rest of string was truncated]";. + ///아라리 /// [resto de la cadena truncado]";. /// public static string text_species_ko { get { @@ -34162,7 +34312,7 @@ public class Resources { } /// - /// Looks up a localized string similar to  + /// Busca una cadena traducida similar a  /// /// /// @@ -34266,7 +34416,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_species_zh { get { @@ -34275,7 +34425,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 蛋 + /// Busca una cadena traducida similar a 蛋 ///妙蛙种子 ///妙蛙草 ///妙蛙花 @@ -34379,7 +34529,7 @@ public class Resources { ///顽皮雷弹 ///蛋蛋 ///椰蛋树 - ///卡拉卡拉 [rest of string was truncated]";. + ///卡拉卡拉 [resto de la cadena truncado]";. /// public static string text_species_zh_alt { get { @@ -34388,7 +34538,7 @@ public class Resources { } /// - /// Looks up a localized string similar to  + /// Busca una cadena traducida similar a  /// /// /// @@ -34492,7 +34642,7 @@ public class Resources { /// /// /// - /// [rest of string was truncated]";. + /// [resto de la cadena truncado]";. /// public static string text_species_zh2 { get { @@ -34501,7 +34651,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 蛋 + /// Busca una cadena traducida similar a 蛋 ///妙蛙種子 ///妙蛙草 ///妙蛙花 @@ -34605,7 +34755,7 @@ public class Resources { ///頑皮雷彈 ///蛋蛋 ///椰蛋樹 - ///卡拉卡拉 [rest of string was truncated]";. + ///卡拉卡拉 [resto de la cadena truncado]";. /// public static string text_species_zh2_alt { get { @@ -34614,7 +34764,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Probetraining mit Purmel! + /// Busca una cadena traducida similar a Probetraining mit Purmel! ///Zeig’s Puponcho mit einem Fokusschuss! ///Spezial-Angriffs-Training mit Magnetilo! ///KP-Training mit Wailmer! @@ -34628,7 +34778,7 @@ public class Resources { ///Tentoxa und die Bit-Ballons! ///Gib Aerodactyl mit Temposchüssen zu denken! ///Zerstöre Georoks Schutzschild! - ///Wehr [rest of string was truncated]";. + ///Wehr [resto de la cadena truncado]";. /// public static string text_supertraining_de { get { @@ -34637,7 +34787,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Practice against Scatterbug! + /// Busca una cadena traducida similar a Practice against Scatterbug! ///Get Spewpa with an Energy Shot! ///Hone Sp. Atk with Magnemite! ///Raise Your HP with Wailmer! @@ -34653,7 +34803,7 @@ public class Resources { ///Break Down Graveler’s Barrier! ///Shake Off That Uncanny Magnezone! ///Shoot Back! Get the Giant Wailord! - ///C [rest of string was truncated]";. + ///C [resto de la cadena truncado]";. /// public static string text_supertraining_en { get { @@ -34662,7 +34812,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ¡Practica contra Scatterbug! + /// Busca una cadena traducida similar a ¡Practica contra Scatterbug! ///¡Tiro con ímpetu contra Spewpa! ///¡Mejora tu Ataque Especial contra Magnemite! ///¡Mejora tus PS contra Wailmer! @@ -34675,7 +34825,7 @@ public class Resources { ///¡Ráfaga de tiros de Fraxure! ///¡Tentacruel y sus globos de bits! ///¡Dale a Aerodactyl con tiros rápidos! - ///¡Destruye la barrera de Graveler! /// [rest of string was truncated]";. + ///¡Destruye la barrera de Graveler! /// [resto de la cadena truncado]";. /// public static string text_supertraining_es { get { @@ -34684,7 +34834,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Entraînez-vous contre Lépidonille! + /// Busca una cadena traducida similar a Entraînez-vous contre Lépidonille! ///Tir Volonté sur Pérégrain! ///À l’assaut de Magnéti! ///À l’assaut de Wailmer! @@ -34701,7 +34851,7 @@ public class Resources { ///Débarrassez-vous de Magnézone! ///Répliquez aux tirs de Wailord! ///Évitez les tirs de Tranchodon! - ///T [rest of string was truncated]";. + ///T [resto de la cadena truncado]";. /// public static string text_supertraining_fr { get { @@ -34710,7 +34860,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Allenamento di prova contro Scatterbug! + /// Busca una cadena traducida similar a Allenamento di prova contro Scatterbug! ///Sconfiggi Spewpa con un tiro vigoroso! ///Aumenta l’Attacco Speciale con Magnemite! ///Aumenta i PS con Wailmer! @@ -34724,7 +34874,7 @@ public class Resources { ///Tentacruel e i palloncini Bit! ///Tempesta di tiri Aerodactyl! ///Abbatti la barriera di Graveler! - ///Sbarazzati di [rest of string was truncated]";. + ///Sbarazzati di [resto de la cadena truncado]";. /// public static string text_supertraining_it { get { @@ -34733,7 +34883,7 @@ public class Resources { } /// - /// Looks up a localized string similar to おためしトレーニング! コフキムシ + /// Busca una cadena traducida similar a おためしトレーニング! コフキムシ ///コフーライ! きめろ ガッツシュート ///とくこうトレーニング VSコイル ///HPトレーニング VSホエルコ @@ -34761,7 +34911,7 @@ public class Resources { ///はんげきの こうはんせん! ///そっこうの ぜんはんせん! ///じゅうおう むじん ロングシュート! - ///ぎゃくしゅう [rest of string was truncated]";. + ///ぎゃくしゅう [resto de la cadena truncado]";. /// public static string text_supertraining_ja { get { @@ -34770,7 +34920,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 맛보기트레이닝! 분이벌레 + /// Busca una cadena traducida similar a 맛보기트레이닝! 분이벌레 ///분떠도리에게 거츠 슛을 날려라! ///특수공격트레이닝 VS 코일 ///HP트레이닝 VS 고래왕자 @@ -34807,7 +34957,7 @@ public class Resources { ///무쇠팔 강철팔의 협공! ///염동력! 스푼 난무 ///인생역전! 출세 잉어킹 - ///경 [rest of string was truncated]";. + ///경 [resto de la cadena truncado]";. /// public static string text_supertraining_ko { get { @@ -34816,7 +34966,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 试验训练!粉蛹 + /// Busca una cadena traducida similar a 试验训练!粉蛹 ///粉蝶蛹!精力射门 ///特攻训练 VS小磁怪 ///HP训练 VS吼吼鲸 @@ -34862,7 +35012,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Makuhipsta + /// Busca una cadena traducida similar a Makuhipsta ///Conec ///Coraso ///Maik @@ -34876,7 +35026,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Makit + /// Busca una cadena traducida similar a Makit ///Skitit ///Coroso ///Darrell @@ -34890,7 +35040,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Makit + /// Busca una cadena traducida similar a Makit ///Skitit ///Coroso ///Evelio @@ -34904,7 +35054,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Edmond + /// Busca una cadena traducida similar a Edmond ///Minetou ///Rosie ///Allan @@ -34918,7 +35068,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Maku + /// Busca una cadena traducida similar a Maku ///Pucci ///Corsolina ///Marchetto @@ -34932,7 +35082,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ポテマル + /// Busca una cadena traducida similar a ポテマル ///ベルベル ///モモちゃん ///モーリン @@ -34946,7 +35096,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 감자군 + /// Busca una cadena traducida similar a 감자군 ///베르베르 ///분홍이 ///모린 @@ -34960,7 +35110,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Karpiranha + /// Busca una cadena traducida similar a Karpiranha ///Ravioli ///Rentata ///Stadida @@ -34986,7 +35136,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Carpe Diem + /// Busca una cadena traducida similar a Carpe Diem ///Stevie ///Quacklin’ ///Thumper @@ -35012,7 +35162,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Karpirinha + /// Busca una cadena traducida similar a Karpirinha ///Fortunyet ///Sr.Puerró ///Titanix @@ -35038,7 +35188,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ouïe-Ouïe + /// Busca una cadena traducida similar a Ouïe-Ouïe ///Décorum ///Insp. Magret ///Megascolide @@ -35064,7 +35214,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Karkarp + /// Busca una cadena traducida similar a Karkarp ///Ottolnarg ///Rosto ///Rock @@ -35090,7 +35240,7 @@ public class Resources { } /// - /// Looks up a localized string similar to こいこい + /// Busca una cadena traducida similar a こいこい ///アマヤル ///マー ///カッチ @@ -35116,7 +35266,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 맞고 + /// Busca una cadena traducida similar a 맞고 ///달고나 ///마 ///카치 @@ -35142,7 +35292,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///KP-Sack S ///KP-Sack M ///KP-Sack L @@ -35177,7 +35327,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HP Bag S ///HP Bag M ///HP Bag L @@ -35212,7 +35362,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Saco PS S ///Saco PS M ///Saco PS L @@ -35247,7 +35397,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Sac PV ///Sac PV + ///Sac PV ++ @@ -35282,7 +35432,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///Sacco PS S ///Sacco PS M ///Sacco PS L @@ -35317,7 +35467,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HPバッグS ///HPバッグM ///HPバッグL @@ -35352,7 +35502,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HP백S ///HP백M ///HP백L @@ -35387,7 +35537,7 @@ public class Resources { } /// - /// Looks up a localized string similar to + /// Busca una cadena traducida similar a ///HP沙袋S ///HP沙袋M ///HP沙袋L @@ -35422,7 +35572,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Kampf ///Flug ///Gift @@ -35448,7 +35598,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Fighting ///Flying ///Poison @@ -35474,7 +35624,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Lucha ///Volador ///Veneno @@ -35500,7 +35650,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normal + /// Busca una cadena traducida similar a Normal ///Combat ///Vol ///Poison @@ -35526,7 +35676,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Normale + /// Busca una cadena traducida similar a Normale ///Lotta ///Volante ///Veleno @@ -35552,7 +35702,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ノーマル + /// Busca una cadena traducida similar a ノーマル ///かくとう ///ひこう ///どく @@ -35578,7 +35728,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 노말 + /// Busca una cadena traducida similar a 노말 ///격투 ///비행 ///독 @@ -35604,7 +35754,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 一般 + /// Busca una cadena traducida similar a 一般 ///格斗 ///飞行 ///毒 @@ -35630,7 +35780,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Wald + /// Busca una cadena traducida similar a Wald ///Stadt ///Wüste ///Steppe @@ -35662,7 +35812,7 @@ public class Resources { } /// - /// Looks up a localized string similar to FOREST + /// Busca una cadena traducida similar a FOREST ///CITY ///DESERT ///SAVANNA @@ -35694,7 +35844,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Bosque + /// Busca una cadena traducida similar a Bosque ///Ciudad ///Desierto ///Sabana @@ -35726,7 +35876,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Forêt + /// Busca una cadena traducida similar a Forêt ///Ville ///Désert ///Savane @@ -35758,7 +35908,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Foresta + /// Busca una cadena traducida similar a Foresta ///Città ///Deserto ///Savana @@ -35790,7 +35940,7 @@ public class Resources { } /// - /// Looks up a localized string similar to もり + /// Busca una cadena traducida similar a もり ///シティ ///さばく ///サバンナ @@ -35822,7 +35972,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 숲 + /// Busca una cadena traducida similar a 숲 ///시티 ///사막 ///사바나 @@ -35854,7 +36004,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 森林 + /// Busca una cadena traducida similar a 森林 ///城市 ///沙漠 ///热带草原 @@ -35886,7 +36036,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Mysteriöser Ort /// @@ -35938,7 +36088,7 @@ public class Resources { /// ///Route 10 ///Menhir-Weg - ///Cromlexia /// [rest of string was truncated]";. + ///Cromlexia /// [resto de la cadena truncado]";. /// public static string text_xy_00000_de { get { @@ -35947,7 +36097,7 @@ public class Resources { } /// - /// Looks up a localized string similar to —————— + /// Busca una cadena traducida similar a —————— /// ///Mystery Zone /// @@ -35999,7 +36149,7 @@ public class Resources { /// ///Route 10 ///Menhir Trail - ///Geo [rest of string was truncated]";. + ///Geo [resto de la cadena truncado]";. /// public static string text_xy_00000_en { get { @@ -36008,7 +36158,7 @@ public class Resources { } /// - /// Looks up a localized string similar to - + /// Busca una cadena traducida similar a - /// ///Lugar misterioso /// @@ -36056,7 +36206,7 @@ public class Resources { /// ///Ruta 9 ///Paso de Rhyhorn - ///Bastión Batalla [rest of string was truncated]";. + ///Bastión Batalla [resto de la cadena truncado]";. /// public static string text_xy_00000_es { get { @@ -36065,7 +36215,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Endroit Mystérieux /// @@ -36113,7 +36263,7 @@ public class Resources { /// ///Route 9 ///Piste Piquante - ///Château de [rest of string was truncated]";. + ///Château de [resto de la cadena truncado]";. /// public static string text_xy_00000_fr { get { @@ -36122,7 +36272,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///Zona Misteriosa /// @@ -36170,7 +36320,7 @@ public class Resources { /// ///Percorso 9 ///Sentiero Punzoni - ///Castell [rest of string was truncated]";. + ///Castell [resto de la cadena truncado]";. /// public static string text_xy_00000_it { get { @@ -36179,7 +36329,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///なぞのばしょ /// @@ -36253,7 +36403,7 @@ public class Resources { /// ///ボールこうじょう /// - ///15ばん [rest of string was truncated]";. + ///15ばん [resto de la cadena truncado]";. /// public static string text_xy_00000_ja { get { @@ -36262,7 +36412,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///수수께끼의 장소 /// @@ -36351,7 +36501,7 @@ public class Resources { ///향전시티 /// ///18번도로 - ///에뜨르와 발레 [rest of string was truncated]";. + ///에뜨르와 발레 [resto de la cadena truncado]";. /// public static string text_xy_00000_ko { get { @@ -36360,7 +36510,7 @@ public class Resources { } /// - /// Looks up a localized string similar to ---------- + /// Busca una cadena traducida similar a ---------- /// ///神秘的地方 /// @@ -36461,7 +36611,7 @@ public class Resources { ///神奇宝贝村庄 /// ///21号道路 - ///最后通道 [rest of string was truncated]";. + ///最后通道 [resto de la cadena truncado]";. /// public static string text_xy_00000_zh { get { @@ -36470,7 +36620,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Linktausch + /// Busca una cadena traducida similar a Linktausch ///Linktausch ///Kanto-Region ///Johto-Region @@ -36489,7 +36639,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a Link Trade + /// Busca una cadena traducida similar a a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -36508,7 +36658,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Intercambio + /// Busca una cadena traducida similar a Intercambio ///Intercambio en conexión ///Kanto ///Johto @@ -36527,7 +36677,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Échanges Link + /// Busca una cadena traducida similar a Échanges Link ///Échanges Link ///Kanto ///Johto @@ -36546,7 +36696,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Scambio in link + /// Busca una cadena traducida similar a Scambio in link ///Scambio in link ///Kanto ///Johto @@ -36565,7 +36715,7 @@ public class Resources { } /// - /// Looks up a localized string similar to つうしんこうかん + /// Busca una cadena traducida similar a つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -36584,7 +36734,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 통신교환 + /// Busca una cadena traducida similar a 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -36603,7 +36753,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 连接交换 + /// Busca una cadena traducida similar a 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -36622,7 +36772,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Netter Ort + /// Busca una cadena traducida similar a Netter Ort ///Entfernter Ort ///Pokémon-Film ///Pokémon-Film 2013 @@ -36661,7 +36811,7 @@ public class Resources { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2017 /// [rest of string was truncated]";. + ///VGE 2017 /// [resto de la cadena truncado]";. /// public static string text_xy_40000_de { get { @@ -36670,7 +36820,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a lovely place + /// Busca una cadena traducida similar a a lovely place ///a faraway place ///a Pokémon movie ///Pokémon Movie 13 @@ -36709,7 +36859,7 @@ public class Resources { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2 [rest of string was truncated]";. + ///VGE 2 [resto de la cadena truncado]";. /// public static string text_xy_40000_en { get { @@ -36718,7 +36868,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Lugar encantador + /// Busca una cadena traducida similar a Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2013 @@ -36741,7 +36891,7 @@ public class Resources { ///Campeonato Mundial ///Campeonato Mundial 2013 ///Campeonato Mundial 2014 - ///Campeo [rest of string was truncated]";. + ///Campeo [resto de la cadena truncado]";. /// public static string text_xy_40000_es { get { @@ -36750,7 +36900,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Endroit superbe + /// Busca una cadena traducida similar a Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2013 @@ -36780,7 +36930,7 @@ public class Resources { ///Worlds ///Worlds 2013 ///Worlds 2014 - ///Worlds 2 [rest of string was truncated]";. + ///Worlds 2 [resto de la cadena truncado]";. /// public static string text_xy_40000_fr { get { @@ -36789,7 +36939,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Luogo Grazioso + /// Busca una cadena traducida similar a Luogo Grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 2013 @@ -36817,7 +36967,7 @@ public class Resources { ///Mondiali 2017 ///Mondiali 2018 ///Mondiali - ///Mondi [rest of string was truncated]";. + ///Mondi [resto de la cadena truncado]";. /// public static string text_xy_40000_it { get { @@ -36826,7 +36976,7 @@ public class Resources { } /// - /// Looks up a localized string similar to すてきなばしょ + /// Busca una cadena traducida similar a すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが13 @@ -36879,7 +37029,7 @@ public class Resources { ///ポケモンイベント14 ///ポケモンイベント15 ///ポケモンイベント16 - ///ポケモンイベント [rest of string was truncated]";. + ///ポケモンイベント [resto de la cadena truncado]";. /// public static string text_xy_40000_ja { get { @@ -36888,7 +37038,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 근사한 장소 + /// Busca una cadena traducida similar a 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화13 @@ -36946,7 +37096,7 @@ public class Resources { ///포켓몬페스타 ///포켓몬페스타13 ///포켓몬페스타14 - ///포켓몬페스 [rest of string was truncated]";. + ///포켓몬페스 [resto de la cadena truncado]";. /// public static string text_xy_40000_ko { get { @@ -36955,7 +37105,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 美妙的地方 + /// Busca una cadena traducida similar a 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影13 @@ -37017,7 +37167,7 @@ public class Resources { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可 [rest of string was truncated]";. + ///宝可 [resto de la cadena truncado]";. /// public static string text_xy_40000_zh { get { @@ -37026,7 +37176,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Ferne Person + /// Busca una cadena traducida similar a Ferne Person ///Pensionsleiter ///Schatzsucher ///Dame der Heißen Quellen. @@ -37038,7 +37188,7 @@ public class Resources { } /// - /// Looks up a localized string similar to a stranger + /// Busca una cadena traducida similar a a stranger ///Day Care helpers ///a treasure hunter ///an old hot-springs visitor. @@ -37050,7 +37200,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona lejana + /// Busca una cadena traducida similar a Persona lejana ///Pareja de la Guardería ///Buscatesoros ///Anciana del Balneario. @@ -37062,7 +37212,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Personne lointaine + /// Busca una cadena traducida similar a Personne lointaine ///Responsable de la Pension ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -37074,7 +37224,7 @@ public class Resources { } /// - /// Looks up a localized string similar to Persona Lontana + /// Busca una cadena traducida similar a Persona Lontana ///Pensione Pokémon ///Cercatesori ///Vecchina delle terme. @@ -37086,7 +37236,7 @@ public class Resources { } /// - /// Looks up a localized string similar to とおくにいるひと + /// Busca una cadena traducida similar a とおくにいるひと ///そだてやさん ///トレジャーハンター ///おんせんばあさん. @@ -37098,7 +37248,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 멀리 있는 사람 + /// Busca una cadena traducida similar a 멀리 있는 사람 ///키우미집 ///트레져헌터 ///온천할머니. @@ -37110,7 +37260,7 @@ public class Resources { } /// - /// Looks up a localized string similar to 远处的人 + /// Busca una cadena traducida similar a 远处的人 ///饲育屋爷爷 ///寻宝猎人 ///温泉婆婆. @@ -37122,7 +37272,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_00 { get { @@ -37132,7 +37282,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_01 { get { @@ -37142,7 +37292,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_02 { get { @@ -37152,7 +37302,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_03 { get { @@ -37162,7 +37312,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_04 { get { @@ -37172,7 +37322,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_05 { get { @@ -37182,7 +37332,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_06 { get { @@ -37192,7 +37342,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_07 { get { @@ -37202,7 +37352,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_08 { get { @@ -37212,7 +37362,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_09 { get { @@ -37222,7 +37372,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_10 { get { @@ -37232,7 +37382,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_11 { get { @@ -37242,7 +37392,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_12 { get { @@ -37252,7 +37402,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_128 { get { @@ -37262,7 +37412,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_129 { get { @@ -37272,7 +37422,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_13 { get { @@ -37282,7 +37432,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_14 { get { @@ -37292,7 +37442,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_15 { get { @@ -37302,7 +37452,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_16 { get { @@ -37312,7 +37462,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_17 { get { @@ -37322,7 +37472,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_18 { get { @@ -37332,7 +37482,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_19 { get { @@ -37342,7 +37492,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_20 { get { @@ -37352,7 +37502,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_21 { get { @@ -37362,7 +37512,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_22 { get { @@ -37372,7 +37522,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_23 { get { @@ -37382,7 +37532,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_24 { get { @@ -37392,7 +37542,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_25 { get { @@ -37402,7 +37552,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_26 { get { @@ -37412,7 +37562,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_27 { get { @@ -37422,7 +37572,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_28 { get { @@ -37432,7 +37582,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_29 { get { @@ -37442,7 +37592,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_30 { get { @@ -37452,7 +37602,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_31 { get { @@ -37462,7 +37612,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_32 { get { @@ -37472,7 +37622,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_33 { get { @@ -37482,7 +37632,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_34 { get { @@ -37492,7 +37642,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_35 { get { @@ -37502,7 +37652,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_36 { get { @@ -37512,7 +37662,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_37 { get { @@ -37522,7 +37672,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_38 { get { @@ -37532,7 +37682,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_39 { get { @@ -37542,7 +37692,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_40 { get { @@ -37552,7 +37702,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_41 { get { @@ -37562,7 +37712,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_42 { get { @@ -37572,7 +37722,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_43 { get { @@ -37582,7 +37732,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_44 { get { @@ -37592,7 +37742,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_45 { get { @@ -37602,7 +37752,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_46 { get { @@ -37612,7 +37762,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_47 { get { @@ -37622,7 +37772,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_48 { get { @@ -37632,7 +37782,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_49 { get { @@ -37642,7 +37792,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_50 { get { @@ -37652,7 +37802,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_51 { get { @@ -37662,7 +37812,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_52 { get { @@ -37672,7 +37822,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_53 { get { @@ -37682,7 +37832,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_54 { get { @@ -37692,7 +37842,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_55 { get { @@ -37702,7 +37852,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_56 { get { @@ -37712,7 +37862,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_57 { get { @@ -37722,7 +37872,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_58 { get { @@ -37732,7 +37882,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_59 { get { @@ -37742,7 +37892,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_60 { get { @@ -37752,7 +37902,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_61 { get { @@ -37762,7 +37912,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_62 { get { @@ -37772,7 +37922,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_63 { get { @@ -37782,7 +37932,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_64 { get { @@ -37792,7 +37942,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_65 { get { @@ -37802,7 +37952,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_66 { get { @@ -37812,7 +37962,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_67 { get { @@ -37822,7 +37972,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_68 { get { @@ -37832,7 +37982,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_69 { get { @@ -37842,7 +37992,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_70 { get { @@ -37852,7 +38002,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_71 { get { @@ -37862,7 +38012,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_72 { get { @@ -37872,7 +38022,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_73 { get { @@ -37882,7 +38032,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] tutors_g3 { get { @@ -37892,7 +38042,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] tutors_g4 { get { @@ -37902,7 +38052,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_00 { get { @@ -37912,7 +38062,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_01 { get { @@ -37922,7 +38072,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_02 { get { @@ -37932,7 +38082,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_03 { get { @@ -37942,7 +38092,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_04 { get { @@ -37952,7 +38102,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_05 { get { @@ -37962,7 +38112,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_06 { get { @@ -37972,7 +38122,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_07 { get { @@ -37982,7 +38132,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_08 { get { @@ -37992,7 +38142,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_09 { get { @@ -38002,7 +38152,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_10 { get { @@ -38012,7 +38162,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_11 { get { @@ -38022,7 +38172,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_12 { get { @@ -38032,7 +38182,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_13 { get { @@ -38042,7 +38192,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_14 { get { @@ -38052,7 +38202,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_15 { get { @@ -38062,7 +38212,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_16 { get { @@ -38072,7 +38222,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_17 { get { @@ -38082,7 +38232,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap unknown { get { @@ -38092,7 +38242,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap valid { get { @@ -38102,7 +38252,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap vc { get { @@ -38112,7 +38262,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. /// public static System.Drawing.Bitmap warn { get { @@ -38122,7 +38272,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc6 { get { @@ -38132,7 +38282,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc6full { get { @@ -38142,7 +38292,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc7 { get { @@ -38152,7 +38302,7 @@ public class Resources { } /// - /// Looks up a localized resource of type System.Byte[]. + /// Busca un recurso adaptado de tipo System.Byte[]. /// public static byte[] wc7full { get { diff --git a/PKHeX/Properties/Resources.resx b/PKHeX/Properties/Resources.resx index e1e6b309e..d478b5762 100644 --- a/PKHeX/Properties/Resources.resx +++ b/PKHeX/Properties/Resources.resx @@ -7510,4 +7510,49 @@ ..\Resources\byte\encounter_w2.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\byte\encounter_d.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_e.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_fr.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_hg.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_lg.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_p.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_pt.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_r.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_s.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encounter_ss.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\evos_g3.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\evos_g4.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\evos_g5.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encunters_hb_hg.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\encunters_hb_ss.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/PKHeX/Resources/byte/encounter_d.pkl b/PKHeX/Resources/byte/encounter_d.pkl new file mode 100644 index 000000000..89099af4e Binary files /dev/null and b/PKHeX/Resources/byte/encounter_d.pkl differ diff --git a/PKHeX/Resources/byte/encounter_e.pkl b/PKHeX/Resources/byte/encounter_e.pkl new file mode 100644 index 000000000..22d03e7d4 Binary files /dev/null and b/PKHeX/Resources/byte/encounter_e.pkl differ diff --git a/PKHeX/Resources/byte/encounter_fr.pkl b/PKHeX/Resources/byte/encounter_fr.pkl new file mode 100644 index 000000000..0dcf716f7 Binary files /dev/null and b/PKHeX/Resources/byte/encounter_fr.pkl differ diff --git a/PKHeX/Resources/byte/encounter_hg.pkl b/PKHeX/Resources/byte/encounter_hg.pkl new file mode 100644 index 000000000..c45893dcb Binary files /dev/null and b/PKHeX/Resources/byte/encounter_hg.pkl differ diff --git a/PKHeX/Resources/byte/encounter_lg.pkl b/PKHeX/Resources/byte/encounter_lg.pkl new file mode 100644 index 000000000..8fc08f08e Binary files /dev/null and b/PKHeX/Resources/byte/encounter_lg.pkl differ diff --git a/PKHeX/Resources/byte/encounter_p.pkl b/PKHeX/Resources/byte/encounter_p.pkl new file mode 100644 index 000000000..eb0d7a4c8 Binary files /dev/null and b/PKHeX/Resources/byte/encounter_p.pkl differ diff --git a/PKHeX/Resources/byte/encounter_pt.pkl b/PKHeX/Resources/byte/encounter_pt.pkl new file mode 100644 index 000000000..dc4542abb Binary files /dev/null and b/PKHeX/Resources/byte/encounter_pt.pkl differ diff --git a/PKHeX/Resources/byte/encounter_r.pkl b/PKHeX/Resources/byte/encounter_r.pkl new file mode 100644 index 000000000..01eac7bf8 Binary files /dev/null and b/PKHeX/Resources/byte/encounter_r.pkl differ diff --git a/PKHeX/Resources/byte/encounter_s.pkl b/PKHeX/Resources/byte/encounter_s.pkl new file mode 100644 index 000000000..3431a43d1 Binary files /dev/null and b/PKHeX/Resources/byte/encounter_s.pkl differ diff --git a/PKHeX/Resources/byte/encounter_ss.pkl b/PKHeX/Resources/byte/encounter_ss.pkl new file mode 100644 index 000000000..409df781d Binary files /dev/null and b/PKHeX/Resources/byte/encounter_ss.pkl differ diff --git a/PKHeX/Resources/byte/encunters_hb_hg.pkl b/PKHeX/Resources/byte/encunters_hb_hg.pkl new file mode 100644 index 000000000..339ecbdc2 Binary files /dev/null and b/PKHeX/Resources/byte/encunters_hb_hg.pkl differ diff --git a/PKHeX/Resources/byte/encunters_hb_ss.pkl b/PKHeX/Resources/byte/encunters_hb_ss.pkl new file mode 100644 index 000000000..3d37db1b9 Binary files /dev/null and b/PKHeX/Resources/byte/encunters_hb_ss.pkl differ diff --git a/PKHeX/Resources/byte/evos_g3.pkl b/PKHeX/Resources/byte/evos_g3.pkl new file mode 100644 index 000000000..84a89ae6e Binary files /dev/null and b/PKHeX/Resources/byte/evos_g3.pkl differ diff --git a/PKHeX/Resources/byte/evos_g4.pkl b/PKHeX/Resources/byte/evos_g4.pkl new file mode 100644 index 000000000..75c68458c Binary files /dev/null and b/PKHeX/Resources/byte/evos_g4.pkl differ diff --git a/PKHeX/Resources/byte/evos_g5.pkl b/PKHeX/Resources/byte/evos_g5.pkl new file mode 100644 index 000000000..a5163e807 Binary files /dev/null and b/PKHeX/Resources/byte/evos_g5.pkl differ