From deac1724c7f80d4eac7f8203434eaae8e9696a04 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 19 Mar 2017 16:19:59 -0700 Subject: [PATCH] Add gen4/5 event concatenated binaries events now show up in the event browser too pcd(4)/pgf(5) will be used for encounter matching by the legality check. --- PKHeX.WinForms/MainWindow/Main.cs | 48 +- PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs | 2 + PKHeX/Legality/Core.cs | 16 +- PKHeX/MysteryGifts/PGF.cs | 2 +- PKHeX/MysteryGifts/PGT.cs | 2 +- PKHeX/PKHeX.Core.csproj | 2 + PKHeX/Properties/Resources.Designer.cs | 5510 +++++++++--------- PKHeX/Properties/Resources.resx | 6 + PKHeX/Resources/byte/pcd.pkl | Bin 0 -> 276488 bytes PKHeX/Resources/byte/pgf.pkl | Bin 0 -> 123216 bytes 10 files changed, 2831 insertions(+), 2757 deletions(-) create mode 100644 PKHeX/Resources/byte/pcd.pkl create mode 100644 PKHeX/Resources/byte/pgf.pkl diff --git a/PKHeX.WinForms/MainWindow/Main.cs b/PKHeX.WinForms/MainWindow/Main.cs index 973bed859..cd3bc4ca2 100644 --- a/PKHeX.WinForms/MainWindow/Main.cs +++ b/PKHeX.WinForms/MainWindow/Main.cs @@ -143,9 +143,10 @@ public Main() mnuL.Items.Insert(0, mnuLLegality); }; - // Load WC6 folder to legality + // Load Event Databases + refreshPCDDB(); + refreshPGFDB(); refreshWC6DB(); - // Load WC7 folder to legality refreshWC7DB(); #endregion @@ -1270,6 +1271,49 @@ private void openSAV(SaveFile sav, string path) // Indicate audibly the save is loaded SystemSounds.Beep.Play(); } + + private static void refreshPCDDB() + { + List db = new List(); + byte[] bin = Resources.pcd; + for (int i = 0; i < bin.Length; i += PCD.Size) + { + byte[] data = new byte[PCD.Size]; + Buffer.BlockCopy(bin, i, data, 0, PCD.Size); + db.Add(new PCD(data)); + } + if (Directory.Exists(MGDatabasePath)) + { + foreach (var file in Directory.GetFiles(MGDatabasePath, "*", SearchOption.AllDirectories)) + { + var fi = new FileInfo(file); + if (fi.Length == PCD.Size && fi.Extension == ".pcd") + db.Add(new PCD(File.ReadAllBytes(file))); + else if (fi.Length == PGT.Size && fi.Extension == ".pgt") + db.Add(new PCD {Gift = new PGT(File.ReadAllBytes(file)), CardTitle = "MGDB PGT"}); + } + } + + Legal.MGDB_G4 = db.Distinct().ToArray(); + } + private static void refreshPGFDB() + { + List db = new List(); + byte[] bin = Resources.pgf; + for (int i = 0; i < bin.Length; i += PGF.Size) + { + byte[] data = new byte[PGF.Size]; + Buffer.BlockCopy(bin, i, data, 0, PGF.Size); + db.Add(new PGF(data)); + } + if (Directory.Exists(MGDatabasePath)) + db.AddRange(from file in Directory.GetFiles(MGDatabasePath, "*", SearchOption.AllDirectories) + let fi = new FileInfo(file) + where ".pgf" == fi.Extension && PGF.Size == fi.Length + select new PGF(File.ReadAllBytes(file))); + + Legal.MGDB_G5 = db.Distinct().ToArray(); + } private static void refreshWC6DB() { List wc6db = new List(); diff --git a/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs b/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs index a29dab9f3..22b5d903d 100644 --- a/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs +++ b/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs @@ -75,6 +75,8 @@ public SAV_MysteryGiftDB(Main f1) // Load Data RawDB = new List(); + RawDB.AddRange(Legal.MGDB_G4); + RawDB.AddRange(Legal.MGDB_G5); RawDB.AddRange(Legal.MGDB_G6); RawDB.AddRange(Legal.MGDB_G7); diff --git a/PKHeX/Legality/Core.cs b/PKHeX/Legality/Core.cs index 3b1257ebe..6b564308c 100644 --- a/PKHeX/Legality/Core.cs +++ b/PKHeX/Legality/Core.cs @@ -871,7 +871,7 @@ internal static IEnumerable getValidGifts(PKM pkm) switch (pkm.GenNumber) { case 4: - return getMatchingPGT(pkm, MGDB_G4); + return getMatchingPCD(pkm, MGDB_G4); case 5: return getMatchingPGF(pkm, MGDB_G5); case 6: @@ -882,17 +882,17 @@ internal static IEnumerable getValidGifts(PKM pkm) return new List(); } } - private static IEnumerable getMatchingPGT(PKM pkm, IEnumerable DB) + private static IEnumerable getMatchingPCD(PKM pkm, IEnumerable DB) { - var validPGT = new List(); + var validPCD = new List(); if (DB == null) - return validPGT; + return validPCD; // todo var vs = getValidPreEvolutions(pkm).ToArray(); - foreach (PGT mg in DB.OfType().Where(wc => vs.Any(dl => dl.Species == wc.Species))) + foreach (PCD mg in DB.OfType().Where(wc => vs.Any(dl => dl.Species == wc.Species))) { - var wc = mg.PK; + var wc = mg.Gift.PK; if (pkm.Egg_Location == 0) // Not Egg { if (wc.SID != pkm.SID) continue; @@ -922,9 +922,9 @@ private static IEnumerable getMatchingPGT(PKM pkm, IEnumerable pkm.CurrentLevel) continue; // Defer to level legality // RIBBONS: Defer to ribbon legality - validPGT.Add(mg); + validPCD.Add(mg); } - return validPGT; + return validPCD; } private static IEnumerable getMatchingPGF(PKM pkm, IEnumerable DB) { diff --git a/PKHeX/MysteryGifts/PGF.cs b/PKHeX/MysteryGifts/PGF.cs index 051b1c896..20c330afb 100644 --- a/PKHeX/MysteryGifts/PGF.cs +++ b/PKHeX/MysteryGifts/PGF.cs @@ -5,7 +5,7 @@ namespace PKHeX.Core { public sealed class PGF : MysteryGift { - internal const int Size = 0xCC; + public const int Size = 0xCC; public override int Format => 5; public PGF(byte[] data = null) diff --git a/PKHeX/MysteryGifts/PGT.cs b/PKHeX/MysteryGifts/PGT.cs index 76f2322cd..19beab60b 100644 --- a/PKHeX/MysteryGifts/PGT.cs +++ b/PKHeX/MysteryGifts/PGT.cs @@ -102,7 +102,7 @@ public override PKM convertToPKM(SaveFile SAV) } public sealed class PGT : MysteryGift { - internal const int Size = 0x104; // 260 + public const int Size = 0x104; // 260 public override int Format => 4; public override int Level { diff --git a/PKHeX/PKHeX.Core.csproj b/PKHeX/PKHeX.Core.csproj index 54130c2ad..7d040fc2d 100644 --- a/PKHeX/PKHeX.Core.csproj +++ b/PKHeX/PKHeX.Core.csproj @@ -324,9 +324,11 @@ + + diff --git a/PKHeX/Properties/Resources.Designer.cs b/PKHeX/Properties/Resources.Designer.cs index 4490613b4..35fc9f5ac 100644 --- a/PKHeX/Properties/Resources.Designer.cs +++ b/PKHeX/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Este código fue generado por una herramienta. -// Versión de runtime:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si -// se vuelve a generar el código. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace PKHeX.Core.Properties { /// - /// Clase de recurso fuertemente tipado, para buscar cadenas traducidas, etc. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // 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. + // 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. [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 { } /// - /// Devuelve la instancia de ResourceManager almacenada en caché utilizada por esta clase. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ public class Resources { } /// - /// Reemplaza la propiedad CurrentUICulture del subproceso actual para todas las - /// búsquedas de recursos mediante esta clase de recurso fuertemente tipado. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _0 { get { @@ -71,7 +71,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _1 { get { @@ -81,7 +81,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _10 { get { @@ -91,7 +91,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _100 { get { @@ -101,7 +101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _101 { get { @@ -111,7 +111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _102 { get { @@ -121,7 +121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103 { get { @@ -131,7 +131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _103_1 { get { @@ -141,7 +141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _104 { get { @@ -151,7 +151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105 { get { @@ -161,7 +161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _105_1 { get { @@ -171,7 +171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _106 { get { @@ -181,7 +181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _107 { get { @@ -191,7 +191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _108 { get { @@ -201,7 +201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _109 { get { @@ -211,7 +211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _11 { get { @@ -221,7 +221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _110 { get { @@ -231,7 +231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _111 { get { @@ -241,7 +241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _112 { get { @@ -251,7 +251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _113 { get { @@ -261,7 +261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _114 { get { @@ -271,7 +271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115 { get { @@ -281,7 +281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _115_1 { get { @@ -291,7 +291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _116 { get { @@ -301,7 +301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _117 { get { @@ -311,7 +311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _118 { get { @@ -321,7 +321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _119 { get { @@ -331,7 +331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _12 { get { @@ -341,7 +341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _120 { get { @@ -351,7 +351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _121 { get { @@ -361,7 +361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _122 { get { @@ -371,7 +371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _123 { get { @@ -381,7 +381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _124 { get { @@ -391,7 +391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _125 { get { @@ -401,7 +401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _126 { get { @@ -411,7 +411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127 { get { @@ -421,7 +421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _127_1 { get { @@ -431,7 +431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _128 { get { @@ -441,7 +441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _129 { get { @@ -451,7 +451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _13 { get { @@ -461,7 +461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130 { get { @@ -471,7 +471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _130_1 { get { @@ -481,7 +481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _131 { get { @@ -491,7 +491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _132 { get { @@ -501,7 +501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _133 { get { @@ -511,7 +511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _134 { get { @@ -521,7 +521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _135 { get { @@ -531,7 +531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _136 { get { @@ -541,7 +541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _137 { get { @@ -551,7 +551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _138 { get { @@ -561,7 +561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _139 { get { @@ -571,7 +571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _14 { get { @@ -581,7 +581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _140 { get { @@ -591,7 +591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _141 { get { @@ -601,7 +601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142 { get { @@ -611,7 +611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _142_1 { get { @@ -621,7 +621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _143 { get { @@ -631,7 +631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _144 { get { @@ -641,7 +641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _145 { get { @@ -651,7 +651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _146 { get { @@ -661,7 +661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _147 { get { @@ -671,7 +671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _148 { get { @@ -681,7 +681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _149 { get { @@ -691,7 +691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15 { get { @@ -701,7 +701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _15_1 { get { @@ -711,7 +711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150 { get { @@ -721,7 +721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_1 { get { @@ -731,7 +731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _150_2 { get { @@ -741,7 +741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _151 { get { @@ -751,7 +751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _152 { get { @@ -761,7 +761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _153 { get { @@ -771,7 +771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _154 { get { @@ -781,7 +781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _155 { get { @@ -791,7 +791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _156 { get { @@ -801,7 +801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _157 { get { @@ -811,7 +811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _158 { get { @@ -821,7 +821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _159 { get { @@ -831,7 +831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _16 { get { @@ -841,7 +841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _160 { get { @@ -851,7 +851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _161 { get { @@ -861,7 +861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _162 { get { @@ -871,7 +871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _163 { get { @@ -881,7 +881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _164 { get { @@ -891,7 +891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _165 { get { @@ -901,7 +901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _166 { get { @@ -911,7 +911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _167 { get { @@ -921,7 +921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _168 { get { @@ -931,7 +931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _169 { get { @@ -941,7 +941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _17 { get { @@ -951,7 +951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _170 { get { @@ -961,7 +961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _171 { get { @@ -971,7 +971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172 { get { @@ -981,7 +981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _172_1 { get { @@ -991,7 +991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _173 { get { @@ -1001,7 +1001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _174 { get { @@ -1011,7 +1011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _175 { get { @@ -1021,7 +1021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _176 { get { @@ -1031,7 +1031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _177 { get { @@ -1041,7 +1041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _178 { get { @@ -1051,7 +1051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _179 { get { @@ -1061,7 +1061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18 { get { @@ -1071,7 +1071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _18_1 { get { @@ -1081,7 +1081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _180 { get { @@ -1091,7 +1091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181 { get { @@ -1101,7 +1101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _181_1 { get { @@ -1111,7 +1111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _182 { get { @@ -1121,7 +1121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _183 { get { @@ -1131,7 +1131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _184 { get { @@ -1141,7 +1141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _185 { get { @@ -1151,7 +1151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _186 { get { @@ -1161,7 +1161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _187 { get { @@ -1171,7 +1171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _188 { get { @@ -1181,7 +1181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _189 { get { @@ -1191,7 +1191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19 { get { @@ -1201,7 +1201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _19_1 { get { @@ -1211,7 +1211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _190 { get { @@ -1221,7 +1221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _191 { get { @@ -1231,7 +1231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _192 { get { @@ -1241,7 +1241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _193 { get { @@ -1251,7 +1251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _194 { get { @@ -1261,7 +1261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _195 { get { @@ -1271,7 +1271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _196 { get { @@ -1281,7 +1281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _197 { get { @@ -1291,7 +1291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _198 { get { @@ -1301,7 +1301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _199 { get { @@ -1311,7 +1311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _2 { get { @@ -1321,7 +1321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20 { get { @@ -1331,7 +1331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _20_1 { get { @@ -1341,7 +1341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _200 { get { @@ -1351,7 +1351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201 { get { @@ -1361,7 +1361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_1 { get { @@ -1371,7 +1371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_10 { get { @@ -1381,7 +1381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_11 { get { @@ -1391,7 +1391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_12 { get { @@ -1401,7 +1401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_13 { get { @@ -1411,7 +1411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_14 { get { @@ -1421,7 +1421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_15 { get { @@ -1431,7 +1431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_16 { get { @@ -1441,7 +1441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_17 { get { @@ -1451,7 +1451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_18 { get { @@ -1461,7 +1461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_19 { get { @@ -1471,7 +1471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_2 { get { @@ -1481,7 +1481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_20 { get { @@ -1491,7 +1491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_21 { get { @@ -1501,7 +1501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_22 { get { @@ -1511,7 +1511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_23 { get { @@ -1521,7 +1521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_24 { get { @@ -1531,7 +1531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_25 { get { @@ -1541,7 +1541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_26 { get { @@ -1551,7 +1551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_27 { get { @@ -1561,7 +1561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_3 { get { @@ -1571,7 +1571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_4 { get { @@ -1581,7 +1581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_5 { get { @@ -1591,7 +1591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_6 { get { @@ -1601,7 +1601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_7 { get { @@ -1611,7 +1611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_8 { get { @@ -1621,7 +1621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _201_9 { get { @@ -1631,7 +1631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _202 { get { @@ -1641,7 +1641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _203 { get { @@ -1651,7 +1651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _204 { get { @@ -1661,7 +1661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _205 { get { @@ -1671,7 +1671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _206 { get { @@ -1681,7 +1681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _207 { get { @@ -1691,7 +1691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208 { get { @@ -1701,7 +1701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _208_1 { get { @@ -1711,7 +1711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _209 { get { @@ -1721,7 +1721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _21 { get { @@ -1731,7 +1731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _210 { get { @@ -1741,7 +1741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _211 { get { @@ -1751,7 +1751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212 { get { @@ -1761,7 +1761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _212_1 { get { @@ -1771,7 +1771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _213 { get { @@ -1781,7 +1781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214 { get { @@ -1791,7 +1791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _214_1 { get { @@ -1801,7 +1801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _215 { get { @@ -1811,7 +1811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _216 { get { @@ -1821,7 +1821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _217 { get { @@ -1831,7 +1831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _218 { get { @@ -1841,7 +1841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _219 { get { @@ -1851,7 +1851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _22 { get { @@ -1861,7 +1861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _220 { get { @@ -1871,7 +1871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _221 { get { @@ -1881,7 +1881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _222 { get { @@ -1891,7 +1891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _223 { get { @@ -1901,7 +1901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _224 { get { @@ -1911,7 +1911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _225 { get { @@ -1921,7 +1921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _226 { get { @@ -1931,7 +1931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _227 { get { @@ -1941,7 +1941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _228 { get { @@ -1951,7 +1951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229 { get { @@ -1961,7 +1961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _229_1 { get { @@ -1971,7 +1971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _23 { get { @@ -1981,7 +1981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _230 { get { @@ -1991,7 +1991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _231 { get { @@ -2001,7 +2001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _232 { get { @@ -2011,7 +2011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _233 { get { @@ -2021,7 +2021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _234 { get { @@ -2031,7 +2031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _235 { get { @@ -2041,7 +2041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _236 { get { @@ -2051,7 +2051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _237 { get { @@ -2061,7 +2061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _238 { get { @@ -2071,7 +2071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _239 { get { @@ -2081,7 +2081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _24 { get { @@ -2091,7 +2091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _240 { get { @@ -2101,7 +2101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _241 { get { @@ -2111,7 +2111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _242 { get { @@ -2121,7 +2121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _243 { get { @@ -2131,7 +2131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _244 { get { @@ -2141,7 +2141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _245 { get { @@ -2151,7 +2151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _246 { get { @@ -2161,7 +2161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _247 { get { @@ -2171,7 +2171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248 { get { @@ -2181,7 +2181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _248_1 { get { @@ -2191,7 +2191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _249 { get { @@ -2201,7 +2201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25 { get { @@ -2211,7 +2211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1 { get { @@ -2221,7 +2221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_1c { get { @@ -2231,7 +2231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2 { get { @@ -2241,7 +2241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_2c { get { @@ -2251,7 +2251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3 { get { @@ -2261,7 +2261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_3c { get { @@ -2271,7 +2271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4 { get { @@ -2281,7 +2281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_4c { get { @@ -2291,7 +2291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5 { get { @@ -2301,7 +2301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_5c { get { @@ -2311,7 +2311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6 { get { @@ -2321,7 +2321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _25_6c { get { @@ -2331,7 +2331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _250 { get { @@ -2341,7 +2341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _251 { get { @@ -2351,7 +2351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _252 { get { @@ -2361,7 +2361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _253 { get { @@ -2371,7 +2371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254 { get { @@ -2381,7 +2381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _254_1 { get { @@ -2391,7 +2391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _255 { get { @@ -2401,7 +2401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _256 { get { @@ -2411,7 +2411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257 { get { @@ -2421,7 +2421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _257_1 { get { @@ -2431,7 +2431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _258 { get { @@ -2441,7 +2441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _259 { get { @@ -2451,7 +2451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26 { get { @@ -2461,7 +2461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _26_1 { get { @@ -2471,7 +2471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260 { get { @@ -2481,7 +2481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _260_1 { get { @@ -2491,7 +2491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _261 { get { @@ -2501,7 +2501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _262 { get { @@ -2511,7 +2511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _263 { get { @@ -2521,7 +2521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _264 { get { @@ -2531,7 +2531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _265 { get { @@ -2541,7 +2541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _266 { get { @@ -2551,7 +2551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _267 { get { @@ -2561,7 +2561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _268 { get { @@ -2571,7 +2571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _269 { get { @@ -2581,7 +2581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27 { get { @@ -2591,7 +2591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _27_1 { get { @@ -2601,7 +2601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _270 { get { @@ -2611,7 +2611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _271 { get { @@ -2621,7 +2621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _272 { get { @@ -2631,7 +2631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _273 { get { @@ -2641,7 +2641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _274 { get { @@ -2651,7 +2651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _275 { get { @@ -2661,7 +2661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _276 { get { @@ -2671,7 +2671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _277 { get { @@ -2681,7 +2681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _278 { get { @@ -2691,7 +2691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _279 { get { @@ -2701,7 +2701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28 { get { @@ -2711,7 +2711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _28_1 { get { @@ -2721,7 +2721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _280 { get { @@ -2731,7 +2731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _281 { get { @@ -2741,7 +2741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282 { get { @@ -2751,7 +2751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _282_1 { get { @@ -2761,7 +2761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _283 { get { @@ -2771,7 +2771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _284 { get { @@ -2781,7 +2781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _285 { get { @@ -2791,7 +2791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _286 { get { @@ -2801,7 +2801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _287 { get { @@ -2811,7 +2811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _288 { get { @@ -2821,7 +2821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _289 { get { @@ -2831,7 +2831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _29 { get { @@ -2841,7 +2841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _290 { get { @@ -2851,7 +2851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _291 { get { @@ -2861,7 +2861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _292 { get { @@ -2871,7 +2871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _293 { get { @@ -2881,7 +2881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _294 { get { @@ -2891,7 +2891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _295 { get { @@ -2901,7 +2901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _296 { get { @@ -2911,7 +2911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _297 { get { @@ -2921,7 +2921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _298 { get { @@ -2931,7 +2931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _299 { get { @@ -2941,7 +2941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3 { get { @@ -2951,7 +2951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _3_1 { get { @@ -2961,7 +2961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _30 { get { @@ -2971,7 +2971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _300 { get { @@ -2981,7 +2981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _301 { get { @@ -2991,7 +2991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302 { get { @@ -3001,7 +3001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _302_1 { get { @@ -3011,7 +3011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303 { get { @@ -3021,7 +3021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _303_1 { get { @@ -3031,7 +3031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _304 { get { @@ -3041,7 +3041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _305 { get { @@ -3051,7 +3051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306 { get { @@ -3061,7 +3061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _306_1 { get { @@ -3071,7 +3071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _307 { get { @@ -3081,7 +3081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308 { get { @@ -3091,7 +3091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _308_1 { get { @@ -3101,7 +3101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _309 { get { @@ -3111,7 +3111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _31 { get { @@ -3121,7 +3121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310 { get { @@ -3131,7 +3131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _310_1 { get { @@ -3141,7 +3141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _311 { get { @@ -3151,7 +3151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _312 { get { @@ -3161,7 +3161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _313 { get { @@ -3171,7 +3171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _314 { get { @@ -3181,7 +3181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _315 { get { @@ -3191,7 +3191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _316 { get { @@ -3201,7 +3201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _317 { get { @@ -3211,7 +3211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _318 { get { @@ -3221,7 +3221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319 { get { @@ -3231,7 +3231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _319_1 { get { @@ -3241,7 +3241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _32 { get { @@ -3251,7 +3251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _320 { get { @@ -3261,7 +3261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _321 { get { @@ -3271,7 +3271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _322 { get { @@ -3281,7 +3281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323 { get { @@ -3291,7 +3291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _323_1 { get { @@ -3301,7 +3301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _324 { get { @@ -3311,7 +3311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _325 { get { @@ -3321,7 +3321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _326 { get { @@ -3331,7 +3331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _327 { get { @@ -3341,7 +3341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _328 { get { @@ -3351,7 +3351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _329 { get { @@ -3361,7 +3361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _33 { get { @@ -3371,7 +3371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _330 { get { @@ -3381,7 +3381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _331 { get { @@ -3391,7 +3391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _332 { get { @@ -3401,7 +3401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _333 { get { @@ -3411,7 +3411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334 { get { @@ -3421,7 +3421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _334_1 { get { @@ -3431,7 +3431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _335 { get { @@ -3441,7 +3441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _336 { get { @@ -3451,7 +3451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _337 { get { @@ -3461,7 +3461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _338 { get { @@ -3471,7 +3471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _339 { get { @@ -3481,7 +3481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _34 { get { @@ -3491,7 +3491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _340 { get { @@ -3501,7 +3501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _341 { get { @@ -3511,7 +3511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _342 { get { @@ -3521,7 +3521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _343 { get { @@ -3531,7 +3531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _344 { get { @@ -3541,7 +3541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _345 { get { @@ -3551,7 +3551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _346 { get { @@ -3561,7 +3561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _347 { get { @@ -3571,7 +3571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _348 { get { @@ -3581,7 +3581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _349 { get { @@ -3591,7 +3591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _35 { get { @@ -3601,7 +3601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _350 { get { @@ -3611,7 +3611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351 { get { @@ -3621,7 +3621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_1 { get { @@ -3631,7 +3631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_2 { get { @@ -3641,7 +3641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _351_3 { get { @@ -3651,7 +3651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _352 { get { @@ -3661,7 +3661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _353 { get { @@ -3671,7 +3671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354 { get { @@ -3681,7 +3681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _354_1 { get { @@ -3691,7 +3691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _355 { get { @@ -3701,7 +3701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _356 { get { @@ -3711,7 +3711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _357 { get { @@ -3721,7 +3721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _358 { get { @@ -3731,7 +3731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359 { get { @@ -3741,7 +3741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _359_1 { get { @@ -3751,7 +3751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _36 { get { @@ -3761,7 +3761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _360 { get { @@ -3771,7 +3771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _361 { get { @@ -3781,7 +3781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362 { get { @@ -3791,7 +3791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _362_1 { get { @@ -3801,7 +3801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _363 { get { @@ -3811,7 +3811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _364 { get { @@ -3821,7 +3821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _365 { get { @@ -3831,7 +3831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _366 { get { @@ -3841,7 +3841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _367 { get { @@ -3851,7 +3851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _368 { get { @@ -3861,7 +3861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _369 { get { @@ -3871,7 +3871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37 { get { @@ -3881,7 +3881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _37_1 { get { @@ -3891,7 +3891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _370 { get { @@ -3901,7 +3901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _371 { get { @@ -3911,7 +3911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _372 { get { @@ -3921,7 +3921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373 { get { @@ -3931,7 +3931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _373_1 { get { @@ -3941,7 +3941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _374 { get { @@ -3951,7 +3951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _375 { get { @@ -3961,7 +3961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376 { get { @@ -3971,7 +3971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _376_1 { get { @@ -3981,7 +3981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _377 { get { @@ -3991,7 +3991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _378 { get { @@ -4001,7 +4001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _379 { get { @@ -4011,7 +4011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38 { get { @@ -4021,7 +4021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _38_1 { get { @@ -4031,7 +4031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380 { get { @@ -4041,7 +4041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _380_1 { get { @@ -4051,7 +4051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381 { get { @@ -4061,7 +4061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _381_1 { get { @@ -4071,7 +4071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382 { get { @@ -4081,7 +4081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _382_1 { get { @@ -4091,7 +4091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383 { get { @@ -4101,7 +4101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _383_1 { get { @@ -4111,7 +4111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384 { get { @@ -4121,7 +4121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _384_1 { get { @@ -4131,7 +4131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _385 { get { @@ -4141,7 +4141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386 { get { @@ -4151,7 +4151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_1 { get { @@ -4161,7 +4161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_2 { get { @@ -4171,7 +4171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _386_3 { get { @@ -4181,7 +4181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _387 { get { @@ -4191,7 +4191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _388 { get { @@ -4201,7 +4201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _389 { get { @@ -4211,7 +4211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _39 { get { @@ -4221,7 +4221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _390 { get { @@ -4231,7 +4231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _391 { get { @@ -4241,7 +4241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _392 { get { @@ -4251,7 +4251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _393 { get { @@ -4261,7 +4261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _394 { get { @@ -4271,7 +4271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _395 { get { @@ -4281,7 +4281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _396 { get { @@ -4291,7 +4291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _397 { get { @@ -4301,7 +4301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _398 { get { @@ -4311,7 +4311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _399 { get { @@ -4321,7 +4321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _4 { get { @@ -4331,7 +4331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _40 { get { @@ -4341,7 +4341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _400 { get { @@ -4351,7 +4351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _401 { get { @@ -4361,7 +4361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _402 { get { @@ -4371,7 +4371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _403 { get { @@ -4381,7 +4381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _404 { get { @@ -4391,7 +4391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _405 { get { @@ -4401,7 +4401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _406 { get { @@ -4411,7 +4411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _407 { get { @@ -4421,7 +4421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _408 { get { @@ -4431,7 +4431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _409 { get { @@ -4441,7 +4441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _41 { get { @@ -4451,7 +4451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _410 { get { @@ -4461,7 +4461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _411 { get { @@ -4471,7 +4471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412 { get { @@ -4481,7 +4481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_1 { get { @@ -4491,7 +4491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _412_2 { get { @@ -4501,7 +4501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413 { get { @@ -4511,7 +4511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_1 { get { @@ -4521,7 +4521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _413_2 { get { @@ -4531,7 +4531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _414 { get { @@ -4541,7 +4541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _415 { get { @@ -4551,7 +4551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _416 { get { @@ -4561,7 +4561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _417 { get { @@ -4571,7 +4571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _418 { get { @@ -4581,7 +4581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _419 { get { @@ -4591,7 +4591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _42 { get { @@ -4601,7 +4601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _420 { get { @@ -4611,7 +4611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421 { get { @@ -4621,7 +4621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _421_1 { get { @@ -4631,7 +4631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422 { get { @@ -4641,7 +4641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _422_1 { get { @@ -4651,7 +4651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423 { get { @@ -4661,7 +4661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _423_1 { get { @@ -4671,7 +4671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _424 { get { @@ -4681,7 +4681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _425 { get { @@ -4691,7 +4691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _426 { get { @@ -4701,7 +4701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _427 { get { @@ -4711,7 +4711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428 { get { @@ -4721,7 +4721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _428_1 { get { @@ -4731,7 +4731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _429 { get { @@ -4741,7 +4741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _43 { get { @@ -4751,7 +4751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _430 { get { @@ -4761,7 +4761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _431 { get { @@ -4771,7 +4771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _432 { get { @@ -4781,7 +4781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _433 { get { @@ -4791,7 +4791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _434 { get { @@ -4801,7 +4801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _435 { get { @@ -4811,7 +4811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _436 { get { @@ -4821,7 +4821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _437 { get { @@ -4831,7 +4831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _438 { get { @@ -4841,7 +4841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _439 { get { @@ -4851,7 +4851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _44 { get { @@ -4861,7 +4861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _440 { get { @@ -4871,7 +4871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _441 { get { @@ -4881,7 +4881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _442 { get { @@ -4891,7 +4891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _443 { get { @@ -4901,7 +4901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _444 { get { @@ -4911,7 +4911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445 { get { @@ -4921,7 +4921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _445_1 { get { @@ -4931,7 +4931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _446 { get { @@ -4941,7 +4941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _447 { get { @@ -4951,7 +4951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448 { get { @@ -4961,7 +4961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _448_1 { get { @@ -4971,7 +4971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _449 { get { @@ -4981,7 +4981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _45 { get { @@ -4991,7 +4991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _450 { get { @@ -5001,7 +5001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _451 { get { @@ -5011,7 +5011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _452 { get { @@ -5021,7 +5021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _453 { get { @@ -5031,7 +5031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _454 { get { @@ -5041,7 +5041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _455 { get { @@ -5051,7 +5051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _456 { get { @@ -5061,7 +5061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _457 { get { @@ -5071,7 +5071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _458 { get { @@ -5081,7 +5081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _459 { get { @@ -5091,7 +5091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _46 { get { @@ -5101,7 +5101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460 { get { @@ -5111,7 +5111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _460_1 { get { @@ -5121,7 +5121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _461 { get { @@ -5131,7 +5131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _462 { get { @@ -5141,7 +5141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _463 { get { @@ -5151,7 +5151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _464 { get { @@ -5161,7 +5161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _465 { get { @@ -5171,7 +5171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _466 { get { @@ -5181,7 +5181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _467 { get { @@ -5191,7 +5191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _468 { get { @@ -5201,7 +5201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _469 { get { @@ -5211,7 +5211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _47 { get { @@ -5221,7 +5221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _470 { get { @@ -5231,7 +5231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _471 { get { @@ -5241,7 +5241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _472 { get { @@ -5251,7 +5251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _473 { get { @@ -5261,7 +5261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _474 { get { @@ -5271,7 +5271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475 { get { @@ -5281,7 +5281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _475_1 { get { @@ -5291,7 +5291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _476 { get { @@ -5301,7 +5301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _477 { get { @@ -5311,7 +5311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _478 { get { @@ -5321,7 +5321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479 { get { @@ -5331,7 +5331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_1 { get { @@ -5341,7 +5341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_2 { get { @@ -5351,7 +5351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_3 { get { @@ -5361,7 +5361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_4 { get { @@ -5371,7 +5371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _479_5 { get { @@ -5381,7 +5381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _48 { get { @@ -5391,7 +5391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _480 { get { @@ -5401,7 +5401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _481 { get { @@ -5411,7 +5411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _482 { get { @@ -5421,7 +5421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _483 { get { @@ -5431,7 +5431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _484 { get { @@ -5441,7 +5441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _485 { get { @@ -5451,7 +5451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _486 { get { @@ -5461,7 +5461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487 { get { @@ -5471,7 +5471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _487_1 { get { @@ -5481,7 +5481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _488 { get { @@ -5491,7 +5491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _489 { get { @@ -5501,7 +5501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _49 { get { @@ -5511,7 +5511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _490 { get { @@ -5521,7 +5521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _491 { get { @@ -5531,7 +5531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492 { get { @@ -5541,7 +5541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _492_1 { get { @@ -5551,7 +5551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _493 { get { @@ -5561,7 +5561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _494 { get { @@ -5571,7 +5571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _495 { get { @@ -5581,7 +5581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _496 { get { @@ -5591,7 +5591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _497 { get { @@ -5601,7 +5601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _498 { get { @@ -5611,7 +5611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _499 { get { @@ -5621,7 +5621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _5 { get { @@ -5631,7 +5631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50 { get { @@ -5641,7 +5641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _50_1 { get { @@ -5651,7 +5651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _500 { get { @@ -5661,7 +5661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _501 { get { @@ -5671,7 +5671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _502 { get { @@ -5681,7 +5681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _503 { get { @@ -5691,7 +5691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _504 { get { @@ -5701,7 +5701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _505 { get { @@ -5711,7 +5711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _506 { get { @@ -5721,7 +5721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _507 { get { @@ -5731,7 +5731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _508 { get { @@ -5741,7 +5741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _509 { get { @@ -5751,7 +5751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51 { get { @@ -5761,7 +5761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _51_1 { get { @@ -5771,7 +5771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _510 { get { @@ -5781,7 +5781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _511 { get { @@ -5791,7 +5791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _512 { get { @@ -5801,7 +5801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _513 { get { @@ -5811,7 +5811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _514 { get { @@ -5821,7 +5821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _515 { get { @@ -5831,7 +5831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _516 { get { @@ -5841,7 +5841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _517 { get { @@ -5851,7 +5851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _518 { get { @@ -5861,7 +5861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _519 { get { @@ -5871,7 +5871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52 { get { @@ -5881,7 +5881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _52_1 { get { @@ -5891,7 +5891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _520 { get { @@ -5901,7 +5901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521 { get { @@ -5911,7 +5911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _521_1 { get { @@ -5921,7 +5921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _522 { get { @@ -5931,7 +5931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _523 { get { @@ -5941,7 +5941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _524 { get { @@ -5951,7 +5951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _525 { get { @@ -5961,7 +5961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _526 { get { @@ -5971,7 +5971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _527 { get { @@ -5981,7 +5981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _528 { get { @@ -5991,7 +5991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _529 { get { @@ -6001,7 +6001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53 { get { @@ -6011,7 +6011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _53_1 { get { @@ -6021,7 +6021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _530 { get { @@ -6031,7 +6031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531 { get { @@ -6041,7 +6041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _531_1 { get { @@ -6051,7 +6051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _532 { get { @@ -6061,7 +6061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _533 { get { @@ -6071,7 +6071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _534 { get { @@ -6081,7 +6081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _535 { get { @@ -6091,7 +6091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _536 { get { @@ -6101,7 +6101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _537 { get { @@ -6111,7 +6111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _538 { get { @@ -6121,7 +6121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _539 { get { @@ -6131,7 +6131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _54 { get { @@ -6141,7 +6141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _540 { get { @@ -6151,7 +6151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _541 { get { @@ -6161,7 +6161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _542 { get { @@ -6171,7 +6171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _543 { get { @@ -6181,7 +6181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _544 { get { @@ -6191,7 +6191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _545 { get { @@ -6201,7 +6201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _546 { get { @@ -6211,7 +6211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _547 { get { @@ -6221,7 +6221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _548 { get { @@ -6231,7 +6231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _549 { get { @@ -6241,7 +6241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _55 { get { @@ -6251,7 +6251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550 { get { @@ -6261,7 +6261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _550_1 { get { @@ -6271,7 +6271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _551 { get { @@ -6281,7 +6281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _552 { get { @@ -6291,7 +6291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _553 { get { @@ -6301,7 +6301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _554 { get { @@ -6311,7 +6311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555 { get { @@ -6321,7 +6321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _555_1 { get { @@ -6331,7 +6331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _556 { get { @@ -6341,7 +6341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _557 { get { @@ -6351,7 +6351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _558 { get { @@ -6361,7 +6361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _559 { get { @@ -6371,7 +6371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _56 { get { @@ -6381,7 +6381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _560 { get { @@ -6391,7 +6391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _561 { get { @@ -6401,7 +6401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _562 { get { @@ -6411,7 +6411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _563 { get { @@ -6421,7 +6421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _564 { get { @@ -6431,7 +6431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _565 { get { @@ -6441,7 +6441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _566 { get { @@ -6451,7 +6451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _567 { get { @@ -6461,7 +6461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _568 { get { @@ -6471,7 +6471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _569 { get { @@ -6481,7 +6481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _57 { get { @@ -6491,7 +6491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _570 { get { @@ -6501,7 +6501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _571 { get { @@ -6511,7 +6511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _572 { get { @@ -6521,7 +6521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _573 { get { @@ -6531,7 +6531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _574 { get { @@ -6541,7 +6541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _575 { get { @@ -6551,7 +6551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _576 { get { @@ -6561,7 +6561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _577 { get { @@ -6571,7 +6571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _578 { get { @@ -6581,7 +6581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _579 { get { @@ -6591,7 +6591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _58 { get { @@ -6601,7 +6601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _580 { get { @@ -6611,7 +6611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _581 { get { @@ -6621,7 +6621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _582 { get { @@ -6631,7 +6631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _583 { get { @@ -6641,7 +6641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _584 { get { @@ -6651,7 +6651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585 { get { @@ -6661,7 +6661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_1 { get { @@ -6671,7 +6671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_2 { get { @@ -6681,7 +6681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _585_3 { get { @@ -6691,7 +6691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586 { get { @@ -6701,7 +6701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_1 { get { @@ -6711,7 +6711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_2 { get { @@ -6721,7 +6721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _586_3 { get { @@ -6731,7 +6731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _587 { get { @@ -6741,7 +6741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _588 { get { @@ -6751,7 +6751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _589 { get { @@ -6761,7 +6761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _59 { get { @@ -6771,7 +6771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _590 { get { @@ -6781,7 +6781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _591 { get { @@ -6791,7 +6791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592 { get { @@ -6801,7 +6801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _592_1 { get { @@ -6811,7 +6811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593 { get { @@ -6821,7 +6821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _593_1 { get { @@ -6831,7 +6831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _594 { get { @@ -6841,7 +6841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _595 { get { @@ -6851,7 +6851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _596 { get { @@ -6861,7 +6861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _597 { get { @@ -6871,7 +6871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _598 { get { @@ -6881,7 +6881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _599 { get { @@ -6891,7 +6891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6 { get { @@ -6901,7 +6901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_1 { get { @@ -6911,7 +6911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6_2 { get { @@ -6921,7 +6921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _60 { get { @@ -6931,7 +6931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _600 { get { @@ -6941,7 +6941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _601 { get { @@ -6951,7 +6951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _602 { get { @@ -6961,7 +6961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _603 { get { @@ -6971,7 +6971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _604 { get { @@ -6981,7 +6981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _605 { get { @@ -6991,7 +6991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _606 { get { @@ -7001,7 +7001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _607 { get { @@ -7011,7 +7011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _608 { get { @@ -7021,7 +7021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _609 { get { @@ -7031,7 +7031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _61 { get { @@ -7041,7 +7041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _610 { get { @@ -7051,7 +7051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _611 { get { @@ -7061,7 +7061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _612 { get { @@ -7071,7 +7071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _613 { get { @@ -7081,7 +7081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _614 { get { @@ -7091,7 +7091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _615 { get { @@ -7101,7 +7101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _616 { get { @@ -7111,7 +7111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _617 { get { @@ -7121,7 +7121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _618 { get { @@ -7131,7 +7131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _619 { get { @@ -7141,7 +7141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _62 { get { @@ -7151,7 +7151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _620 { get { @@ -7161,7 +7161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _621 { get { @@ -7171,7 +7171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _622 { get { @@ -7181,7 +7181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _623 { get { @@ -7191,7 +7191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _624 { get { @@ -7201,7 +7201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _625 { get { @@ -7211,7 +7211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _626 { get { @@ -7221,7 +7221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _627 { get { @@ -7231,7 +7231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _628 { get { @@ -7241,7 +7241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _629 { get { @@ -7251,7 +7251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _63 { get { @@ -7261,7 +7261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _630 { get { @@ -7271,7 +7271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _631 { get { @@ -7281,7 +7281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _632 { get { @@ -7291,7 +7291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _633 { get { @@ -7301,7 +7301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _634 { get { @@ -7311,7 +7311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _635 { get { @@ -7321,7 +7321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _636 { get { @@ -7331,7 +7331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _637 { get { @@ -7341,7 +7341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _638 { get { @@ -7351,7 +7351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _639 { get { @@ -7361,7 +7361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _64 { get { @@ -7371,7 +7371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _640 { get { @@ -7381,7 +7381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641 { get { @@ -7391,7 +7391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _641_1 { get { @@ -7401,7 +7401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642 { get { @@ -7411,7 +7411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _642_1 { get { @@ -7421,7 +7421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _643 { get { @@ -7431,7 +7431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _644 { get { @@ -7441,7 +7441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645 { get { @@ -7451,7 +7451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _645_1 { get { @@ -7461,7 +7461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646 { get { @@ -7471,7 +7471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_1 { get { @@ -7481,7 +7481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _646_2 { get { @@ -7491,7 +7491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647 { get { @@ -7501,7 +7501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _647_1 { get { @@ -7511,7 +7511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648 { get { @@ -7521,7 +7521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _648_1 { get { @@ -7531,7 +7531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649 { get { @@ -7541,7 +7541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_1 { get { @@ -7551,7 +7551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_2 { get { @@ -7561,7 +7561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_3 { get { @@ -7571,7 +7571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _649_4 { get { @@ -7581,7 +7581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65 { get { @@ -7591,7 +7591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _65_1 { get { @@ -7601,7 +7601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _650 { get { @@ -7611,7 +7611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _651 { get { @@ -7621,7 +7621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _652 { get { @@ -7631,7 +7631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _653 { get { @@ -7641,7 +7641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _654 { get { @@ -7651,7 +7651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _655 { get { @@ -7661,7 +7661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _656 { get { @@ -7671,7 +7671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _657 { get { @@ -7681,7 +7681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658 { get { @@ -7691,7 +7691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_1 { get { @@ -7701,7 +7701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _658_2 { get { @@ -7711,7 +7711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _659 { get { @@ -7721,7 +7721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _66 { get { @@ -7731,7 +7731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _660 { get { @@ -7741,7 +7741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _661 { get { @@ -7751,7 +7751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _662 { get { @@ -7761,7 +7761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _663 { get { @@ -7771,7 +7771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _664 { get { @@ -7781,7 +7781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _665 { get { @@ -7791,7 +7791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666 { get { @@ -7801,7 +7801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_1 { get { @@ -7811,7 +7811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_10 { get { @@ -7821,7 +7821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_11 { get { @@ -7831,7 +7831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_12 { get { @@ -7841,7 +7841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_13 { get { @@ -7851,7 +7851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_14 { get { @@ -7861,7 +7861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_15 { get { @@ -7871,7 +7871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_16 { get { @@ -7881,7 +7881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_17 { get { @@ -7891,7 +7891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_18 { get { @@ -7901,7 +7901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_19 { get { @@ -7911,7 +7911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_2 { get { @@ -7921,7 +7921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_3 { get { @@ -7931,7 +7931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_4 { get { @@ -7941,7 +7941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_5 { get { @@ -7951,7 +7951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_6 { get { @@ -7961,7 +7961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_7 { get { @@ -7971,7 +7971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_8 { get { @@ -7981,7 +7981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _666_9 { get { @@ -7991,7 +7991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _667 { get { @@ -8001,7 +8001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668 { get { @@ -8011,7 +8011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _668_1 { get { @@ -8021,7 +8021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669 { get { @@ -8031,7 +8031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_1 { get { @@ -8041,7 +8041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_2 { get { @@ -8051,7 +8051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_3 { get { @@ -8061,7 +8061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _669_4 { get { @@ -8071,7 +8071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _67 { get { @@ -8081,7 +8081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670 { get { @@ -8091,7 +8091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_1 { get { @@ -8101,7 +8101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_2 { get { @@ -8111,7 +8111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_3 { get { @@ -8121,7 +8121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_4 { get { @@ -8131,7 +8131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _670_5 { get { @@ -8141,7 +8141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671 { get { @@ -8151,7 +8151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_1 { get { @@ -8161,7 +8161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_2 { get { @@ -8171,7 +8171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_3 { get { @@ -8181,7 +8181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _671_4 { get { @@ -8191,7 +8191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _672 { get { @@ -8201,7 +8201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _673 { get { @@ -8211,7 +8211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _674 { get { @@ -8221,7 +8221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _675 { get { @@ -8231,7 +8231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676 { get { @@ -8241,7 +8241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_1 { get { @@ -8251,7 +8251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_2 { get { @@ -8261,7 +8261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_3 { get { @@ -8271,7 +8271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_4 { get { @@ -8281,7 +8281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_5 { get { @@ -8291,7 +8291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_6 { get { @@ -8301,7 +8301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_7 { get { @@ -8311,7 +8311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_8 { get { @@ -8321,7 +8321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _676_9 { get { @@ -8331,7 +8331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _677 { get { @@ -8341,7 +8341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678 { get { @@ -8351,7 +8351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _678_1 { get { @@ -8361,7 +8361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _679 { get { @@ -8371,7 +8371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _68 { get { @@ -8381,7 +8381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _680 { get { @@ -8391,7 +8391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681 { get { @@ -8401,7 +8401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _681_1 { get { @@ -8411,7 +8411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _682 { get { @@ -8421,7 +8421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _683 { get { @@ -8431,7 +8431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _684 { get { @@ -8441,7 +8441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _685 { get { @@ -8451,7 +8451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _686 { get { @@ -8461,7 +8461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _687 { get { @@ -8471,7 +8471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _688 { get { @@ -8481,7 +8481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _689 { get { @@ -8491,7 +8491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _69 { get { @@ -8501,7 +8501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _690 { get { @@ -8511,7 +8511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _691 { get { @@ -8521,7 +8521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _692 { get { @@ -8531,7 +8531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _693 { get { @@ -8541,7 +8541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _694 { get { @@ -8551,7 +8551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _695 { get { @@ -8561,7 +8561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _696 { get { @@ -8571,7 +8571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _697 { get { @@ -8581,7 +8581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _698 { get { @@ -8591,7 +8591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _699 { get { @@ -8601,7 +8601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _6th { get { @@ -8611,7 +8611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _7 { get { @@ -8621,7 +8621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _70 { get { @@ -8631,7 +8631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _700 { get { @@ -8641,7 +8641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _701 { get { @@ -8651,7 +8651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _702 { get { @@ -8661,7 +8661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _703 { get { @@ -8671,7 +8671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _704 { get { @@ -8681,7 +8681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _705 { get { @@ -8691,7 +8691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _706 { get { @@ -8701,7 +8701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _707 { get { @@ -8711,7 +8711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _708 { get { @@ -8721,7 +8721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _709 { get { @@ -8731,7 +8731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _71 { get { @@ -8741,7 +8741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710 { get { @@ -8751,7 +8751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_1 { get { @@ -8761,7 +8761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_2 { get { @@ -8771,7 +8771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _710_3 { get { @@ -8781,7 +8781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711 { get { @@ -8791,7 +8791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_1 { get { @@ -8801,7 +8801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_2 { get { @@ -8811,7 +8811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _711_3 { get { @@ -8821,7 +8821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _712 { get { @@ -8831,7 +8831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _713 { get { @@ -8841,7 +8841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _714 { get { @@ -8851,7 +8851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _715 { get { @@ -8861,7 +8861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716 { get { @@ -8871,7 +8871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _716_1 { get { @@ -8881,7 +8881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _717 { get { @@ -8891,7 +8891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718 { get { @@ -8901,7 +8901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_1 { get { @@ -8911,7 +8911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_2 { get { @@ -8921,7 +8921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_3 { get { @@ -8931,7 +8931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _718_4 { get { @@ -8941,7 +8941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719 { get { @@ -8951,7 +8951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _719_1 { get { @@ -8961,7 +8961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _72 { get { @@ -8971,7 +8971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720 { get { @@ -8981,7 +8981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _720_1 { get { @@ -8991,7 +8991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _721 { get { @@ -9001,7 +9001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _722 { get { @@ -9011,7 +9011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _723 { get { @@ -9021,7 +9021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _724 { get { @@ -9031,7 +9031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _725 { get { @@ -9041,7 +9041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _726 { get { @@ -9051,7 +9051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _727 { get { @@ -9061,7 +9061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _728 { get { @@ -9071,7 +9071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _729 { get { @@ -9081,7 +9081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _73 { get { @@ -9091,7 +9091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _730 { get { @@ -9101,7 +9101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _731 { get { @@ -9111,7 +9111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _732 { get { @@ -9121,7 +9121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _733 { get { @@ -9131,7 +9131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _734 { get { @@ -9141,7 +9141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _735 { get { @@ -9151,7 +9151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _736 { get { @@ -9161,7 +9161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _737 { get { @@ -9171,7 +9171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _738 { get { @@ -9181,7 +9181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _739 { get { @@ -9191,7 +9191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74 { get { @@ -9201,7 +9201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _74_1 { get { @@ -9211,7 +9211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _740 { get { @@ -9221,7 +9221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741 { get { @@ -9231,7 +9231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_1 { get { @@ -9241,7 +9241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_2 { get { @@ -9251,7 +9251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _741_3 { get { @@ -9261,7 +9261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _742 { get { @@ -9271,7 +9271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _743 { get { @@ -9281,7 +9281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _744 { get { @@ -9291,7 +9291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745 { get { @@ -9301,7 +9301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _745_1 { get { @@ -9311,7 +9311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746 { get { @@ -9321,7 +9321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _746_1 { get { @@ -9331,7 +9331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _747 { get { @@ -9341,7 +9341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _748 { get { @@ -9351,7 +9351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _749 { get { @@ -9361,7 +9361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75 { get { @@ -9371,7 +9371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _75_1 { get { @@ -9381,7 +9381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _750 { get { @@ -9391,7 +9391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _751 { get { @@ -9401,7 +9401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _752 { get { @@ -9411,7 +9411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _753 { get { @@ -9421,7 +9421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _754 { get { @@ -9431,7 +9431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _755 { get { @@ -9441,7 +9441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _756 { get { @@ -9451,7 +9451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _757 { get { @@ -9461,7 +9461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _758 { get { @@ -9471,7 +9471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _759 { get { @@ -9481,7 +9481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76 { get { @@ -9491,7 +9491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _76_1 { get { @@ -9501,7 +9501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _760 { get { @@ -9511,7 +9511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _761 { get { @@ -9521,7 +9521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _762 { get { @@ -9531,7 +9531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _763 { get { @@ -9541,7 +9541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _764 { get { @@ -9551,7 +9551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _765 { get { @@ -9561,7 +9561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _766 { get { @@ -9571,7 +9571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _767 { get { @@ -9581,7 +9581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _768 { get { @@ -9591,7 +9591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _769 { get { @@ -9601,7 +9601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _77 { get { @@ -9611,7 +9611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _770 { get { @@ -9621,7 +9621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _771 { get { @@ -9631,7 +9631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _772 { get { @@ -9641,7 +9641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _773 { get { @@ -9651,7 +9651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774 { get { @@ -9661,7 +9661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_1 { get { @@ -9671,7 +9671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_10 { get { @@ -9681,7 +9681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_11 { get { @@ -9691,7 +9691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_12 { get { @@ -9701,7 +9701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_13 { get { @@ -9711,7 +9711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_2 { get { @@ -9721,7 +9721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_3 { get { @@ -9731,7 +9731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_4 { get { @@ -9741,7 +9741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_5 { get { @@ -9751,7 +9751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_6 { get { @@ -9761,7 +9761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_7 { get { @@ -9771,7 +9771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_8 { get { @@ -9781,7 +9781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _774_9 { get { @@ -9791,7 +9791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _775 { get { @@ -9801,7 +9801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _776 { get { @@ -9811,7 +9811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _777 { get { @@ -9821,7 +9821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _778 { get { @@ -9831,7 +9831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _779 { get { @@ -9841,7 +9841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _78 { get { @@ -9851,7 +9851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _780 { get { @@ -9861,7 +9861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _781 { get { @@ -9871,7 +9871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _782 { get { @@ -9881,7 +9881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _783 { get { @@ -9891,7 +9891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _784 { get { @@ -9901,7 +9901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _785 { get { @@ -9911,7 +9911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _786 { get { @@ -9921,7 +9921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _787 { get { @@ -9931,7 +9931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _788 { get { @@ -9941,7 +9941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _789 { get { @@ -9951,7 +9951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _79 { get { @@ -9961,7 +9961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _790 { get { @@ -9971,7 +9971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _791 { get { @@ -9981,7 +9981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _792 { get { @@ -9991,7 +9991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _793 { get { @@ -10001,7 +10001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _794 { get { @@ -10011,7 +10011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _795 { get { @@ -10021,7 +10021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _796 { get { @@ -10031,7 +10031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _797 { get { @@ -10041,7 +10041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _798 { get { @@ -10051,7 +10051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _799 { get { @@ -10061,7 +10061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _8 { get { @@ -10071,7 +10071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80 { get { @@ -10081,7 +10081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _80_1 { get { @@ -10091,7 +10091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _800 { get { @@ -10101,7 +10101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801 { get { @@ -10111,7 +10111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _801_1 { get { @@ -10121,7 +10121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _802 { get { @@ -10131,7 +10131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _81 { get { @@ -10141,7 +10141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _82 { get { @@ -10151,7 +10151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _83 { get { @@ -10161,7 +10161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _84 { get { @@ -10171,7 +10171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _85 { get { @@ -10181,7 +10181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _86 { get { @@ -10191,7 +10191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _87 { get { @@ -10201,7 +10201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88 { get { @@ -10211,7 +10211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _88_1 { get { @@ -10221,7 +10221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89 { get { @@ -10231,7 +10231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _89_1 { get { @@ -10241,7 +10241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9 { get { @@ -10251,7 +10251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _9_1 { get { @@ -10261,7 +10261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _90 { get { @@ -10271,7 +10271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _91 { get { @@ -10281,7 +10281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _92 { get { @@ -10291,7 +10291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _93 { get { @@ -10301,7 +10301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94 { get { @@ -10311,7 +10311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _94_1 { get { @@ -10321,7 +10321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _95 { get { @@ -10331,7 +10331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _96 { get { @@ -10341,7 +10341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _97 { get { @@ -10351,7 +10351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _98 { get { @@ -10361,7 +10361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _99 { get { @@ -10371,7 +10371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball1 { get { @@ -10381,7 +10381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball10 { get { @@ -10391,7 +10391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball11 { get { @@ -10401,7 +10401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball12 { get { @@ -10411,7 +10411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball13 { get { @@ -10421,7 +10421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball14 { get { @@ -10431,7 +10431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball15 { get { @@ -10441,7 +10441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball16 { get { @@ -10451,7 +10451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball17 { get { @@ -10461,7 +10461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball18 { get { @@ -10471,7 +10471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball19 { get { @@ -10481,7 +10481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball2 { get { @@ -10491,7 +10491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball20 { get { @@ -10501,7 +10501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball21 { get { @@ -10511,7 +10511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball22 { get { @@ -10521,7 +10521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball23 { get { @@ -10531,7 +10531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball24 { get { @@ -10541,7 +10541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball25 { get { @@ -10551,7 +10551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball26 { get { @@ -10561,7 +10561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball3 { get { @@ -10571,7 +10571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball4 { get { @@ -10581,7 +10581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball5 { get { @@ -10591,7 +10591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball6 { get { @@ -10601,7 +10601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball7 { get { @@ -10611,7 +10611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball8 { get { @@ -10621,7 +10621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap _ball9 { get { @@ -10631,7 +10631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap about { get { @@ -10641,7 +10641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap alora { get { @@ -10651,7 +10651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap anti_pokerus_icon { get { @@ -10661,7 +10661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_01 { get { @@ -10671,7 +10671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_02 { get { @@ -10681,7 +10681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_03 { get { @@ -10691,7 +10691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_04 { get { @@ -10701,7 +10701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_05 { get { @@ -10711,7 +10711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_06 { get { @@ -10721,7 +10721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_07 { get { @@ -10731,7 +10731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_08 { get { @@ -10741,7 +10741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_1 { get { @@ -10751,7 +10751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_2 { get { @@ -10761,7 +10761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_3 { get { @@ -10771,7 +10771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_4 { get { @@ -10781,7 +10781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_5 { get { @@ -10791,7 +10791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_6 { get { @@ -10801,7 +10801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_7 { get { @@ -10811,7 +10811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap badge_8 { get { @@ -10821,7 +10821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Free { get { @@ -10831,7 +10831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_PCItems { get { @@ -10841,7 +10841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap Bag_Z { get { @@ -10851,7 +10851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap bak { get { @@ -10861,7 +10861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_01 { get { @@ -10871,7 +10871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_02 { get { @@ -10881,7 +10881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_03 { get { @@ -10891,7 +10891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_04 { get { @@ -10901,7 +10901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_05 { get { @@ -10911,7 +10911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_mark_06 { get { @@ -10921,7 +10921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01bw { get { @@ -10931,7 +10931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01dp { get { @@ -10941,7 +10941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01e { get { @@ -10951,7 +10951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01rs { get { @@ -10961,7 +10961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp01xy { get { @@ -10971,7 +10971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02bw { get { @@ -10981,7 +10981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02dp { get { @@ -10991,7 +10991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02e { get { @@ -11001,7 +11001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02rs { get { @@ -11011,7 +11011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp02xy { get { @@ -11021,7 +11021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03bw { get { @@ -11031,7 +11031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03dp { get { @@ -11041,7 +11041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03e { get { @@ -11051,7 +11051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03rs { get { @@ -11061,7 +11061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp03xy { get { @@ -11071,7 +11071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04bw { get { @@ -11081,7 +11081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04dp { get { @@ -11091,7 +11091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04e { get { @@ -11101,7 +11101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04rs { get { @@ -11111,7 +11111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp04xy { get { @@ -11121,7 +11121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05bw { get { @@ -11131,7 +11131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05dp { get { @@ -11141,7 +11141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05e { get { @@ -11151,7 +11151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05rs { get { @@ -11161,7 +11161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp05xy { get { @@ -11171,7 +11171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06bw { get { @@ -11181,7 +11181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06dp { get { @@ -11191,7 +11191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06e { get { @@ -11201,7 +11201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06rs { get { @@ -11211,7 +11211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp06xy { get { @@ -11221,7 +11221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07bw { get { @@ -11231,7 +11231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07dp { get { @@ -11241,7 +11241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07e { get { @@ -11251,7 +11251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07rs { get { @@ -11261,7 +11261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp07xy { get { @@ -11271,7 +11271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08bw { get { @@ -11281,7 +11281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08dp { get { @@ -11291,7 +11291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08e { get { @@ -11301,7 +11301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08rs { get { @@ -11311,7 +11311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp08xy { get { @@ -11321,7 +11321,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09bw { get { @@ -11331,7 +11331,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09dp { get { @@ -11341,7 +11341,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09e { get { @@ -11351,7 +11351,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09rs { get { @@ -11361,7 +11361,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp09xy { get { @@ -11371,7 +11371,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10bw { get { @@ -11381,7 +11381,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10dp { get { @@ -11391,7 +11391,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10e { get { @@ -11401,7 +11401,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10rs { get { @@ -11411,7 +11411,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp10xy { get { @@ -11421,7 +11421,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11bw { get { @@ -11431,7 +11431,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11dp { get { @@ -11441,7 +11441,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11e { get { @@ -11451,7 +11451,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11rs { get { @@ -11461,7 +11461,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp11xy { get { @@ -11471,7 +11471,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12bw { get { @@ -11481,7 +11481,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12dp { get { @@ -11491,7 +11491,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12e { get { @@ -11501,7 +11501,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12rs { get { @@ -11511,7 +11511,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp12xy { get { @@ -11521,7 +11521,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13bw { get { @@ -11531,7 +11531,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13dp { get { @@ -11541,7 +11541,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13e { get { @@ -11551,7 +11551,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13frlg { get { @@ -11561,7 +11561,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13rs { get { @@ -11571,7 +11571,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp13xy { get { @@ -11581,7 +11581,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14bw { get { @@ -11591,7 +11591,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14dp { get { @@ -11601,7 +11601,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14e { get { @@ -11611,7 +11611,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14frlg { get { @@ -11621,7 +11621,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14rs { get { @@ -11631,7 +11631,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp14xy { get { @@ -11641,7 +11641,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15bw { get { @@ -11651,7 +11651,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15dp { get { @@ -11661,7 +11661,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15e { get { @@ -11671,7 +11671,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15frlg { get { @@ -11681,7 +11681,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15rs { get { @@ -11691,7 +11691,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp15xy { get { @@ -11701,7 +11701,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16bw { get { @@ -11711,7 +11711,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16dp { get { @@ -11721,7 +11721,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16e { get { @@ -11731,7 +11731,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16frlg { get { @@ -11741,7 +11741,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16rs { get { @@ -11751,7 +11751,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp16xy { get { @@ -11761,7 +11761,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17ao { get { @@ -11771,7 +11771,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17b2w2 { get { @@ -11781,7 +11781,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17bw { get { @@ -11791,7 +11791,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17dp { get { @@ -11801,7 +11801,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17hgss { get { @@ -11811,7 +11811,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17pt { get { @@ -11821,7 +11821,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp17xy { get { @@ -11831,7 +11831,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18ao { get { @@ -11841,7 +11841,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18b2w2 { get { @@ -11851,7 +11851,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18bw { get { @@ -11861,7 +11861,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18dp { get { @@ -11871,7 +11871,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18hgss { get { @@ -11881,7 +11881,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18pt { get { @@ -11891,7 +11891,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp18xy { get { @@ -11901,7 +11901,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19ao { get { @@ -11911,7 +11911,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19b2w2 { get { @@ -11921,7 +11921,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19bw { get { @@ -11931,7 +11931,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19dp { get { @@ -11941,7 +11941,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19hgss { get { @@ -11951,7 +11951,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19pt { get { @@ -11961,7 +11961,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp19xy { get { @@ -11971,7 +11971,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20ao { get { @@ -11981,7 +11981,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20b2w2 { get { @@ -11991,7 +11991,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20bw { get { @@ -12001,7 +12001,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20dp { get { @@ -12011,7 +12011,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20hgss { get { @@ -12021,7 +12021,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20pt { get { @@ -12031,7 +12031,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp20xy { get { @@ -12041,7 +12041,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21ao { get { @@ -12051,7 +12051,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21b2w2 { get { @@ -12061,7 +12061,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21bw { get { @@ -12071,7 +12071,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21dp { get { @@ -12081,7 +12081,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21hgss { get { @@ -12091,7 +12091,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21pt { get { @@ -12101,7 +12101,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp21xy { get { @@ -12111,7 +12111,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22ao { get { @@ -12121,7 +12121,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22b2w2 { get { @@ -12131,7 +12131,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22bw { get { @@ -12141,7 +12141,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22dp { get { @@ -12151,7 +12151,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22hgss { get { @@ -12161,7 +12161,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22pt { get { @@ -12171,7 +12171,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp22xy { get { @@ -12181,7 +12181,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23ao { get { @@ -12191,7 +12191,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23b2w2 { get { @@ -12201,7 +12201,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23bw { get { @@ -12211,7 +12211,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23dp { get { @@ -12221,7 +12221,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23hgss { get { @@ -12231,7 +12231,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23pt { get { @@ -12241,7 +12241,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp23xy { get { @@ -12251,7 +12251,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24ao { get { @@ -12261,7 +12261,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24b2w2 { get { @@ -12271,7 +12271,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24bw { get { @@ -12281,7 +12281,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24dp { get { @@ -12291,7 +12291,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24hgss { get { @@ -12301,7 +12301,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24pt { get { @@ -12311,7 +12311,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap box_wp24xy { get { @@ -12321,7 +12321,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a PKHeX - By Kaphotics + /// Looks up a localized string similar to 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. /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string changelog { get { @@ -12341,7 +12341,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 60 Ash + /// Looks up a localized string similar to 60 Ash ///21 Test1 ///22 Test2 ///24 Test3. @@ -12353,7 +12353,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 148 Starter 00:Rowlet,01:Litten,02:Popplio + /// Looks up a localized string similar to 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 { } /// - /// Busca una cadena traducida similar a Country ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///14,ベリーズ,Beli [rest of string was truncated]";. /// public static string countries { get { @@ -12383,7 +12383,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap data { get { @@ -12393,7 +12393,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap database { get { @@ -12403,7 +12403,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap dump { get { @@ -12413,7 +12413,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap egg { get { @@ -12423,7 +12423,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_ao { get { @@ -12433,7 +12433,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_bw { get { @@ -12443,7 +12443,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_c { get { @@ -12453,7 +12453,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_dppt { get { @@ -12463,7 +12463,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_gs { get { @@ -12473,7 +12473,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_hgss { get { @@ -12483,7 +12483,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_rs { get { @@ -12493,7 +12493,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_sm { get { @@ -12503,7 +12503,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] eggmove_xy { get { @@ -12513,7 +12513,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_a { get { @@ -12523,7 +12523,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_b { get { @@ -12533,7 +12533,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_b2 { get { @@ -12543,7 +12543,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_blue { get { @@ -12553,7 +12553,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_crystal { get { @@ -12563,7 +12563,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_crystal_h { get { @@ -12573,7 +12573,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_d { get { @@ -12583,7 +12583,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_e { get { @@ -12593,7 +12593,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_fr { get { @@ -12603,7 +12603,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_gold { get { @@ -12613,7 +12613,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_gold_h { get { @@ -12623,7 +12623,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_gsc_f { get { @@ -12633,7 +12633,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_hg { get { @@ -12643,7 +12643,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_lg { get { @@ -12653,7 +12653,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_mn { get { @@ -12663,7 +12663,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_mn_sos { get { @@ -12673,7 +12673,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_o { get { @@ -12683,7 +12683,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_p { get { @@ -12693,7 +12693,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_pt { get { @@ -12703,7 +12703,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_r { get { @@ -12713,7 +12713,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_rb_f { get { @@ -12723,7 +12723,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_red { get { @@ -12733,7 +12733,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_s { get { @@ -12743,7 +12743,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_silver { get { @@ -12753,7 +12753,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_silver_h { get { @@ -12763,7 +12763,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_sn { get { @@ -12773,7 +12773,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_sn_sos { get { @@ -12783,7 +12783,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_ss { get { @@ -12793,7 +12793,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_w { get { @@ -12803,7 +12803,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_w2 { get { @@ -12813,7 +12813,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_x { get { @@ -12823,7 +12823,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_y { get { @@ -12833,7 +12833,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_yellow { get { @@ -12843,7 +12843,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encounter_yellow_f { get { @@ -12853,7 +12853,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encunters_hb_hg { get { @@ -12863,7 +12863,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] encunters_hb_ss { get { @@ -12873,7 +12873,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_ao { get { @@ -12883,7 +12883,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_g3 { get { @@ -12893,7 +12893,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_g4 { get { @@ -12903,7 +12903,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_g5 { get { @@ -12913,7 +12913,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_gsc { get { @@ -12923,7 +12923,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_rby { get { @@ -12933,7 +12933,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] evos_sm { get { @@ -12943,7 +12943,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap exit { get { @@ -12953,7 +12953,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap export { get { @@ -12963,7 +12963,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_f_sm { get { @@ -12973,7 +12973,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_f_sm_illegal { get { @@ -12983,7 +12983,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_m_sm { get { @@ -12993,7 +12993,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] fashion_m_sm_illegal { get { @@ -13003,7 +13003,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 0648 (OR) Groudon Defeated + /// Looks up a localized string similar to 0648 (OR) Groudon Defeated ///2839 (OR) Groudon Captured ///0647 (AS) Kyogre Defeated ///2840 (AS) Kyogre Captured @@ -13021,7 +13021,7 @@ public class Resources { ///0183 (AS) Zekrom Defeated ///2831 (AS) Zekrom Captured ///0419 (OR) Latias Defeated - ///2834 (OR) Latias Captu [resto de la cadena truncado]";. + ///2834 (OR) Latias Captu [rest of string was truncated]";. /// public static string flags_oras { get { @@ -13030,7 +13030,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 3100 Is Alolan Champion + Magearna Event Active + /// Looks up a localized string similar to 3100 Is Alolan Champion + Magearna Event Active ///3487 Received Magearna Gift ///1216 Received Gift Cosmog ///0499 Received Gift Type:Null @@ -13043,7 +13043,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 2237 2237 + /// Looks up a localized string similar to 2237 2237 ///2238 2238 ///2239 2239 ///0963 Mewtwo Defeated @@ -13070,7 +13070,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap folder { get { @@ -13080,7 +13080,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap gift { get { @@ -13090,7 +13090,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap helditem { get { @@ -13100,7 +13100,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] hmtm_g3 { get { @@ -13110,7 +13110,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap horohoro { get { @@ -13120,7 +13120,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap icon { get { @@ -13130,7 +13130,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap import { get { @@ -13140,7 +13140,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_1 { get { @@ -13150,7 +13150,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_10 { get { @@ -13160,7 +13160,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_100 { get { @@ -13170,7 +13170,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_101 { get { @@ -13180,7 +13180,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_102 { get { @@ -13190,7 +13190,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_103 { get { @@ -13200,7 +13200,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_104 { get { @@ -13210,7 +13210,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_105 { get { @@ -13220,7 +13220,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_106 { get { @@ -13230,7 +13230,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_107 { get { @@ -13240,7 +13240,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_108 { get { @@ -13250,7 +13250,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_109 { get { @@ -13260,7 +13260,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_11 { get { @@ -13270,7 +13270,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_110 { get { @@ -13280,7 +13280,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_112 { get { @@ -13290,7 +13290,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_116 { get { @@ -13300,7 +13300,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_117 { get { @@ -13310,7 +13310,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_118 { get { @@ -13320,7 +13320,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_119 { get { @@ -13330,7 +13330,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_12 { get { @@ -13340,7 +13340,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_13 { get { @@ -13350,7 +13350,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_134 { get { @@ -13360,7 +13360,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_135 { get { @@ -13370,7 +13370,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_136 { get { @@ -13380,7 +13380,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_14 { get { @@ -13390,7 +13390,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_149 { get { @@ -13400,7 +13400,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_15 { get { @@ -13410,7 +13410,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_150 { get { @@ -13420,7 +13420,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_151 { get { @@ -13430,7 +13430,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_152 { get { @@ -13440,7 +13440,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_153 { get { @@ -13450,7 +13450,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_154 { get { @@ -13460,7 +13460,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_155 { get { @@ -13470,7 +13470,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_156 { get { @@ -13480,7 +13480,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_157 { get { @@ -13490,7 +13490,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_158 { get { @@ -13500,7 +13500,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_159 { get { @@ -13510,7 +13510,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_16 { get { @@ -13520,7 +13520,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_160 { get { @@ -13530,7 +13530,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_161 { get { @@ -13540,7 +13540,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_162 { get { @@ -13550,7 +13550,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_163 { get { @@ -13560,7 +13560,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_164 { get { @@ -13570,7 +13570,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_165 { get { @@ -13580,7 +13580,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_166 { get { @@ -13590,7 +13590,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_167 { get { @@ -13600,7 +13600,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_168 { get { @@ -13610,7 +13610,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_169 { get { @@ -13620,7 +13620,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_17 { get { @@ -13630,7 +13630,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_170 { get { @@ -13640,7 +13640,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_171 { get { @@ -13650,7 +13650,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_172 { get { @@ -13660,7 +13660,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_173 { get { @@ -13670,7 +13670,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_174 { get { @@ -13680,7 +13680,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_175 { get { @@ -13690,7 +13690,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_176 { get { @@ -13700,7 +13700,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_177 { get { @@ -13710,7 +13710,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_178 { get { @@ -13720,7 +13720,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_179 { get { @@ -13730,7 +13730,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_18 { get { @@ -13740,7 +13740,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_180 { get { @@ -13750,7 +13750,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_181 { get { @@ -13760,7 +13760,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_182 { get { @@ -13770,7 +13770,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_183 { get { @@ -13780,7 +13780,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_184 { get { @@ -13790,7 +13790,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_185 { get { @@ -13800,7 +13800,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_186 { get { @@ -13810,7 +13810,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_187 { get { @@ -13820,7 +13820,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_188 { get { @@ -13830,7 +13830,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_189 { get { @@ -13840,7 +13840,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_19 { get { @@ -13850,7 +13850,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_190 { get { @@ -13860,7 +13860,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_191 { get { @@ -13870,7 +13870,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_192 { get { @@ -13880,7 +13880,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_193 { get { @@ -13890,7 +13890,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_194 { get { @@ -13900,7 +13900,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_195 { get { @@ -13910,7 +13910,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_196 { get { @@ -13920,7 +13920,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_197 { get { @@ -13930,7 +13930,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_198 { get { @@ -13940,7 +13940,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_199 { get { @@ -13950,7 +13950,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_2 { get { @@ -13960,7 +13960,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_20 { get { @@ -13970,7 +13970,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_200 { get { @@ -13980,7 +13980,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_201 { get { @@ -13990,7 +13990,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_202 { get { @@ -14000,7 +14000,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_203 { get { @@ -14010,7 +14010,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_204 { get { @@ -14020,7 +14020,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_205 { get { @@ -14030,7 +14030,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_206 { get { @@ -14040,7 +14040,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_207 { get { @@ -14050,7 +14050,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_208 { get { @@ -14060,7 +14060,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_209 { get { @@ -14070,7 +14070,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_21 { get { @@ -14080,7 +14080,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_210 { get { @@ -14090,7 +14090,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_211 { get { @@ -14100,7 +14100,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_212 { get { @@ -14110,7 +14110,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_213 { get { @@ -14120,7 +14120,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_214 { get { @@ -14130,7 +14130,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_215 { get { @@ -14140,7 +14140,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_217 { get { @@ -14150,7 +14150,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_218 { get { @@ -14160,7 +14160,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_219 { get { @@ -14170,7 +14170,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_22 { get { @@ -14180,7 +14180,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_220 { get { @@ -14190,7 +14190,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_221 { get { @@ -14200,7 +14200,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_222 { get { @@ -14210,7 +14210,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_223 { get { @@ -14220,7 +14220,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_224 { get { @@ -14230,7 +14230,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_225 { get { @@ -14240,7 +14240,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_226 { get { @@ -14250,7 +14250,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_227 { get { @@ -14260,7 +14260,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_228 { get { @@ -14270,7 +14270,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_229 { get { @@ -14280,7 +14280,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_23 { get { @@ -14290,7 +14290,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_230 { get { @@ -14300,7 +14300,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_231 { get { @@ -14310,7 +14310,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_232 { get { @@ -14320,7 +14320,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_233 { get { @@ -14330,7 +14330,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_234 { get { @@ -14340,7 +14340,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_235 { get { @@ -14350,7 +14350,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_236 { get { @@ -14360,7 +14360,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_237 { get { @@ -14370,7 +14370,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_238 { get { @@ -14380,7 +14380,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_239 { get { @@ -14390,7 +14390,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_24 { get { @@ -14400,7 +14400,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_240 { get { @@ -14410,7 +14410,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_241 { get { @@ -14420,7 +14420,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_242 { get { @@ -14430,7 +14430,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_243 { get { @@ -14440,7 +14440,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_244 { get { @@ -14450,7 +14450,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_245 { get { @@ -14460,7 +14460,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_246 { get { @@ -14470,7 +14470,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_247 { get { @@ -14480,7 +14480,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_248 { get { @@ -14490,7 +14490,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_249 { get { @@ -14500,7 +14500,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_25 { get { @@ -14510,7 +14510,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_250 { get { @@ -14520,7 +14520,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_251 { get { @@ -14530,7 +14530,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_252 { get { @@ -14540,7 +14540,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_253 { get { @@ -14550,7 +14550,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_254 { get { @@ -14560,7 +14560,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_255 { get { @@ -14570,7 +14570,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_256 { get { @@ -14580,7 +14580,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_257 { get { @@ -14590,7 +14590,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_258 { get { @@ -14600,7 +14600,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_259 { get { @@ -14610,7 +14610,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_26 { get { @@ -14620,7 +14620,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_260 { get { @@ -14630,7 +14630,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_261 { get { @@ -14640,7 +14640,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_262 { get { @@ -14650,7 +14650,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_263 { get { @@ -14660,7 +14660,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_264 { get { @@ -14670,7 +14670,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_265 { get { @@ -14680,7 +14680,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_266 { get { @@ -14690,7 +14690,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_267 { get { @@ -14700,7 +14700,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_268 { get { @@ -14710,7 +14710,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_269 { get { @@ -14720,7 +14720,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_27 { get { @@ -14730,7 +14730,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_270 { get { @@ -14740,7 +14740,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_271 { get { @@ -14750,7 +14750,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_272 { get { @@ -14760,7 +14760,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_273 { get { @@ -14770,7 +14770,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_274 { get { @@ -14780,7 +14780,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_275 { get { @@ -14790,7 +14790,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_276 { get { @@ -14800,7 +14800,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_277 { get { @@ -14810,7 +14810,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_278 { get { @@ -14820,7 +14820,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_279 { get { @@ -14830,7 +14830,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_28 { get { @@ -14840,7 +14840,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_280 { get { @@ -14850,7 +14850,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_281 { get { @@ -14860,7 +14860,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_282 { get { @@ -14870,7 +14870,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_283 { get { @@ -14880,7 +14880,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_284 { get { @@ -14890,7 +14890,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_285 { get { @@ -14900,7 +14900,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_286 { get { @@ -14910,7 +14910,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_287 { get { @@ -14920,7 +14920,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_288 { get { @@ -14930,7 +14930,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_289 { get { @@ -14940,7 +14940,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_29 { get { @@ -14950,7 +14950,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_290 { get { @@ -14960,7 +14960,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_291 { get { @@ -14970,7 +14970,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_292 { get { @@ -14980,7 +14980,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_293 { get { @@ -14990,7 +14990,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_294 { get { @@ -15000,7 +15000,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_295 { get { @@ -15010,7 +15010,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_296 { get { @@ -15020,7 +15020,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_297 { get { @@ -15030,7 +15030,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_298 { get { @@ -15040,7 +15040,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_299 { get { @@ -15050,7 +15050,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_3 { get { @@ -15060,7 +15060,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_30 { get { @@ -15070,7 +15070,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_300 { get { @@ -15080,7 +15080,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_301 { get { @@ -15090,7 +15090,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_302 { get { @@ -15100,7 +15100,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_303 { get { @@ -15110,7 +15110,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_304 { get { @@ -15120,7 +15120,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_305 { get { @@ -15130,7 +15130,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_306 { get { @@ -15140,7 +15140,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_307 { get { @@ -15150,7 +15150,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_308 { get { @@ -15160,7 +15160,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_309 { get { @@ -15170,7 +15170,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_31 { get { @@ -15180,7 +15180,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_310 { get { @@ -15190,7 +15190,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_311 { get { @@ -15200,7 +15200,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_312 { get { @@ -15210,7 +15210,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_313 { get { @@ -15220,7 +15220,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_314 { get { @@ -15230,7 +15230,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_315 { get { @@ -15240,7 +15240,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_316 { get { @@ -15250,7 +15250,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_317 { get { @@ -15260,7 +15260,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_318 { get { @@ -15270,7 +15270,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_319 { get { @@ -15280,7 +15280,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_32 { get { @@ -15290,7 +15290,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_320 { get { @@ -15300,7 +15300,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_321 { get { @@ -15310,7 +15310,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_322 { get { @@ -15320,7 +15320,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_323 { get { @@ -15330,7 +15330,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_324 { get { @@ -15340,7 +15340,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_325 { get { @@ -15350,7 +15350,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_326 { get { @@ -15360,7 +15360,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_327 { get { @@ -15370,7 +15370,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_33 { get { @@ -15380,7 +15380,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_34 { get { @@ -15390,7 +15390,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_35 { get { @@ -15400,7 +15400,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_36 { get { @@ -15410,7 +15410,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_37 { get { @@ -15420,7 +15420,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_38 { get { @@ -15430,7 +15430,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_39 { get { @@ -15440,7 +15440,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_4 { get { @@ -15450,7 +15450,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_40 { get { @@ -15460,7 +15460,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_41 { get { @@ -15470,7 +15470,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_42 { get { @@ -15480,7 +15480,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_43 { get { @@ -15490,7 +15490,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_44 { get { @@ -15500,7 +15500,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_45 { get { @@ -15510,7 +15510,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_46 { get { @@ -15520,7 +15520,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_47 { get { @@ -15530,7 +15530,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_48 { get { @@ -15540,7 +15540,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_49 { get { @@ -15550,7 +15550,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_5 { get { @@ -15560,7 +15560,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_50 { get { @@ -15570,7 +15570,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_504 { get { @@ -15580,7 +15580,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_51 { get { @@ -15590,7 +15590,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_52 { get { @@ -15600,7 +15600,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_53 { get { @@ -15610,7 +15610,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_534 { get { @@ -15620,7 +15620,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_535 { get { @@ -15630,7 +15630,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_537 { get { @@ -15640,7 +15640,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_538 { get { @@ -15650,7 +15650,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_539 { get { @@ -15660,7 +15660,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_54 { get { @@ -15670,7 +15670,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_540 { get { @@ -15680,7 +15680,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_541 { get { @@ -15690,7 +15690,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_542 { get { @@ -15700,7 +15700,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_543 { get { @@ -15710,7 +15710,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_544 { get { @@ -15720,7 +15720,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_545 { get { @@ -15730,7 +15730,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_546 { get { @@ -15740,7 +15740,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_547 { get { @@ -15750,7 +15750,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_548 { get { @@ -15760,7 +15760,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_549 { get { @@ -15770,7 +15770,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_55 { get { @@ -15780,7 +15780,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_550 { get { @@ -15790,7 +15790,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_551 { get { @@ -15800,7 +15800,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_552 { get { @@ -15810,7 +15810,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_553 { get { @@ -15820,7 +15820,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_554 { get { @@ -15830,7 +15830,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_555 { get { @@ -15840,7 +15840,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_556 { get { @@ -15850,7 +15850,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_557 { get { @@ -15860,7 +15860,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_558 { get { @@ -15870,7 +15870,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_559 { get { @@ -15880,7 +15880,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_56 { get { @@ -15890,7 +15890,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_560 { get { @@ -15900,7 +15900,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_561 { get { @@ -15910,7 +15910,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_562 { get { @@ -15920,7 +15920,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_563 { get { @@ -15930,7 +15930,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_564 { get { @@ -15940,7 +15940,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_57 { get { @@ -15950,7 +15950,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_571 { get { @@ -15960,7 +15960,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_572 { get { @@ -15970,7 +15970,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_573 { get { @@ -15980,7 +15980,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_577 { get { @@ -15990,7 +15990,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_58 { get { @@ -16000,7 +16000,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_580 { get { @@ -16010,7 +16010,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_581 { get { @@ -16020,7 +16020,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_582 { get { @@ -16030,7 +16030,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_583 { get { @@ -16040,7 +16040,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_584 { get { @@ -16050,7 +16050,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_585 { get { @@ -16060,7 +16060,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_586 { get { @@ -16070,7 +16070,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_587 { get { @@ -16080,7 +16080,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_588 { get { @@ -16090,7 +16090,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_589 { get { @@ -16100,7 +16100,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_59 { get { @@ -16110,7 +16110,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_590 { get { @@ -16120,7 +16120,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_591 { get { @@ -16130,7 +16130,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_6 { get { @@ -16140,7 +16140,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_60 { get { @@ -16150,7 +16150,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_61 { get { @@ -16160,7 +16160,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_62 { get { @@ -16170,7 +16170,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_63 { get { @@ -16180,7 +16180,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_639 { get { @@ -16190,7 +16190,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_64 { get { @@ -16200,7 +16200,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_640 { get { @@ -16210,7 +16210,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_644 { get { @@ -16220,7 +16220,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_645 { get { @@ -16230,7 +16230,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_646 { get { @@ -16240,7 +16240,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_647 { get { @@ -16250,7 +16250,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_648 { get { @@ -16260,7 +16260,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_649 { get { @@ -16270,7 +16270,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_65 { get { @@ -16280,7 +16280,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_650 { get { @@ -16290,7 +16290,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_652 { get { @@ -16300,7 +16300,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_653 { get { @@ -16310,7 +16310,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_654 { get { @@ -16320,7 +16320,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_655 { get { @@ -16330,7 +16330,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_656 { get { @@ -16340,7 +16340,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_657 { get { @@ -16350,7 +16350,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_658 { get { @@ -16360,7 +16360,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_659 { get { @@ -16370,7 +16370,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_66 { get { @@ -16380,7 +16380,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_660 { get { @@ -16390,7 +16390,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_661 { get { @@ -16400,7 +16400,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_662 { get { @@ -16410,7 +16410,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_663 { get { @@ -16420,7 +16420,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_664 { get { @@ -16430,7 +16430,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_665 { get { @@ -16440,7 +16440,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_666 { get { @@ -16450,7 +16450,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_667 { get { @@ -16460,7 +16460,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_668 { get { @@ -16470,7 +16470,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_669 { get { @@ -16480,7 +16480,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_67 { get { @@ -16490,7 +16490,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_670 { get { @@ -16500,7 +16500,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_671 { get { @@ -16510,7 +16510,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_672 { get { @@ -16520,7 +16520,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_673 { get { @@ -16530,7 +16530,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_674 { get { @@ -16540,7 +16540,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_675 { get { @@ -16550,7 +16550,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_676 { get { @@ -16560,7 +16560,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_677 { get { @@ -16570,7 +16570,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_678 { get { @@ -16580,7 +16580,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_679 { get { @@ -16590,7 +16590,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_68 { get { @@ -16600,7 +16600,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_680 { get { @@ -16610,7 +16610,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_681 { get { @@ -16620,7 +16620,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_682 { get { @@ -16630,7 +16630,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_683 { get { @@ -16640,7 +16640,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_684 { get { @@ -16650,7 +16650,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_685 { get { @@ -16660,7 +16660,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_686 { get { @@ -16670,7 +16670,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_687 { get { @@ -16680,7 +16680,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_688 { get { @@ -16690,7 +16690,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_69 { get { @@ -16700,7 +16700,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_699 { get { @@ -16710,7 +16710,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_7 { get { @@ -16720,7 +16720,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_70 { get { @@ -16730,7 +16730,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_704 { get { @@ -16740,7 +16740,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_708 { get { @@ -16750,7 +16750,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_709 { get { @@ -16760,7 +16760,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_71 { get { @@ -16770,7 +16770,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_710 { get { @@ -16780,7 +16780,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_711 { get { @@ -16790,7 +16790,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_715 { get { @@ -16800,7 +16800,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_72 { get { @@ -16810,7 +16810,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_73 { get { @@ -16820,7 +16820,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_74 { get { @@ -16830,7 +16830,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_75 { get { @@ -16840,7 +16840,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_752 { get { @@ -16850,7 +16850,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_753 { get { @@ -16860,7 +16860,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_754 { get { @@ -16870,7 +16870,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_755 { get { @@ -16880,7 +16880,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_756 { get { @@ -16890,7 +16890,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_757 { get { @@ -16900,7 +16900,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_758 { get { @@ -16910,7 +16910,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_759 { get { @@ -16920,7 +16920,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_76 { get { @@ -16930,7 +16930,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_760 { get { @@ -16940,7 +16940,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_761 { get { @@ -16950,7 +16950,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_762 { get { @@ -16960,7 +16960,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_763 { get { @@ -16970,7 +16970,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_764 { get { @@ -16980,7 +16980,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_767 { get { @@ -16990,7 +16990,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_768 { get { @@ -17000,7 +17000,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_769 { get { @@ -17010,7 +17010,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_77 { get { @@ -17020,7 +17020,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_770 { get { @@ -17030,7 +17030,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_776 { get { @@ -17040,7 +17040,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_777 { get { @@ -17050,7 +17050,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_778 { get { @@ -17060,7 +17060,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_779 { get { @@ -17070,7 +17070,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_78 { get { @@ -17080,7 +17080,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_780 { get { @@ -17090,7 +17090,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_781 { get { @@ -17100,7 +17100,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_782 { get { @@ -17110,7 +17110,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_783 { get { @@ -17120,7 +17120,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_784 { get { @@ -17130,7 +17130,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_785 { get { @@ -17140,7 +17140,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_786 { get { @@ -17150,7 +17150,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_787 { get { @@ -17160,7 +17160,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_788 { get { @@ -17170,7 +17170,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_789 { get { @@ -17180,7 +17180,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_79 { get { @@ -17190,7 +17190,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_790 { get { @@ -17200,7 +17200,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_791 { get { @@ -17210,7 +17210,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_792 { get { @@ -17220,7 +17220,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_793 { get { @@ -17230,7 +17230,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_794 { get { @@ -17240,7 +17240,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_795 { get { @@ -17250,7 +17250,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_796 { get { @@ -17260,7 +17260,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_798 { get { @@ -17270,7 +17270,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_799 { get { @@ -17280,7 +17280,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_8 { get { @@ -17290,7 +17290,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_80 { get { @@ -17300,7 +17300,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_800 { get { @@ -17310,7 +17310,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_801 { get { @@ -17320,7 +17320,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_802 { get { @@ -17330,7 +17330,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_803 { get { @@ -17340,7 +17340,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_804 { get { @@ -17350,7 +17350,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_805 { get { @@ -17360,7 +17360,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_806 { get { @@ -17370,7 +17370,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_81 { get { @@ -17380,7 +17380,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_82 { get { @@ -17390,7 +17390,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_83 { get { @@ -17400,7 +17400,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_836 { get { @@ -17410,7 +17410,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_84 { get { @@ -17420,7 +17420,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_846 { get { @@ -17430,7 +17430,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_849 { get { @@ -17440,7 +17440,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_85 { get { @@ -17450,7 +17450,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_851 { get { @@ -17460,7 +17460,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_852 { get { @@ -17470,7 +17470,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_853 { get { @@ -17480,7 +17480,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_854 { get { @@ -17490,7 +17490,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_855 { get { @@ -17500,7 +17500,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_856 { get { @@ -17510,7 +17510,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_86 { get { @@ -17520,7 +17520,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_87 { get { @@ -17530,7 +17530,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_879 { get { @@ -17540,7 +17540,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_88 { get { @@ -17550,7 +17550,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_880 { get { @@ -17560,7 +17560,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_881 { get { @@ -17570,7 +17570,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_882 { get { @@ -17580,7 +17580,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_883 { get { @@ -17590,7 +17590,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_884 { get { @@ -17600,7 +17600,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_89 { get { @@ -17610,7 +17610,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_9 { get { @@ -17620,7 +17620,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_90 { get { @@ -17630,7 +17630,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_904 { get { @@ -17640,7 +17640,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_905 { get { @@ -17650,7 +17650,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_906 { get { @@ -17660,7 +17660,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_907 { get { @@ -17670,7 +17670,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_908 { get { @@ -17680,7 +17680,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_909 { get { @@ -17690,7 +17690,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_91 { get { @@ -17700,7 +17700,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_910 { get { @@ -17710,7 +17710,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_911 { get { @@ -17720,7 +17720,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_912 { get { @@ -17730,7 +17730,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_913 { get { @@ -17740,7 +17740,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_914 { get { @@ -17750,7 +17750,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_915 { get { @@ -17760,7 +17760,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_916 { get { @@ -17770,7 +17770,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_917 { get { @@ -17780,7 +17780,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_918 { get { @@ -17790,7 +17790,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_919 { get { @@ -17800,7 +17800,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_92 { get { @@ -17810,7 +17810,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_920 { get { @@ -17820,7 +17820,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_93 { get { @@ -17830,7 +17830,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_94 { get { @@ -17840,7 +17840,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_95 { get { @@ -17850,7 +17850,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_96 { get { @@ -17860,7 +17860,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_97 { get { @@ -17870,7 +17870,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_98 { get { @@ -17880,7 +17880,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_99 { get { @@ -17890,7 +17890,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap item_tm { get { @@ -17900,7 +17900,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -17914,7 +17914,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_de { get { @@ -17923,7 +17923,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -17937,7 +17937,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_en { get { @@ -17946,7 +17946,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -17960,7 +17960,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THIS [resto de la cadena truncado]";. + ///- DO NOT CHANGE THIS [rest of string was truncated]";. /// public static string lang_es { get { @@ -17969,7 +17969,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -17983,7 +17983,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_fr { get { @@ -17992,7 +17992,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -18006,7 +18006,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_it { get { @@ -18015,7 +18015,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -18029,7 +18029,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_ja { get { @@ -18038,7 +18038,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -18052,7 +18052,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_ko { get { @@ -18061,7 +18061,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -18075,7 +18075,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_pt { get { @@ -18084,7 +18084,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ! PKHeX Interface Customization File + /// Looks up a localized string similar to ! 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 @@ -18098,7 +18098,7 @@ public class Resources { ///! Make sure that each edit has a ' = ' between Control name and new Text! ///! ///! ----------------------------------------------------- - ///- DO NOT CHANGE THI [resto de la cadena truncado]";. + ///- DO NOT CHANGE THI [rest of string was truncated]";. /// public static string lang_zh { get { @@ -18107,7 +18107,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap language { get { @@ -18117,7 +18117,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ID,Language + /// Looks up a localized string similar to ID,Language ///1,JPN (日本語) ///2,ENG (English) ///3,FRE (Français) @@ -18135,7 +18135,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap load { get { @@ -18145,7 +18145,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap locked { get { @@ -18155,7 +18155,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_ao { get { @@ -18165,7 +18165,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_b2w2 { get { @@ -18175,7 +18175,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_bw { get { @@ -18185,7 +18185,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_c { get { @@ -18195,7 +18195,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_dp { get { @@ -18205,7 +18205,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_e { get { @@ -18215,7 +18215,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_fr { get { @@ -18225,7 +18225,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_gs { get { @@ -18235,7 +18235,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_hgss { get { @@ -18245,7 +18245,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_lg { get { @@ -18255,7 +18255,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_pt { get { @@ -18265,7 +18265,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_rb { get { @@ -18275,7 +18275,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_rs { get { @@ -18285,7 +18285,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_sm { get { @@ -18295,7 +18295,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_xy { get { @@ -18305,7 +18305,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] lvlmove_y { get { @@ -18315,7 +18315,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap main { get { @@ -18325,7 +18325,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap nocheck { get { @@ -18335,7 +18335,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap open { get { @@ -18345,7 +18345,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap other { get { @@ -18355,7 +18355,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap party { get { @@ -18365,7 +18365,17 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. + /// + public static byte[] pcd { + get { + object obj = ResourceManager.GetObject("pcd", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_ao { get { @@ -18375,7 +18385,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_b2w2 { get { @@ -18385,7 +18395,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_bw { get { @@ -18395,7 +18405,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_c { get { @@ -18405,7 +18415,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_dp { get { @@ -18415,7 +18425,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_e { get { @@ -18425,7 +18435,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_fr { get { @@ -18435,7 +18445,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_gs { get { @@ -18445,7 +18455,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_hgss { get { @@ -18455,7 +18465,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_lg { get { @@ -18465,7 +18475,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_pt { get { @@ -18475,7 +18485,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_rb { get { @@ -18485,7 +18495,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_rs { get { @@ -18495,7 +18505,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_sm { get { @@ -18505,7 +18515,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_xy { get { @@ -18515,7 +18525,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] personal_y { get { @@ -18525,7 +18535,17 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. + /// + public static byte[] pgf { + get { + object obj = ResourceManager.GetObject("pgf", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] pgldings_normalregular { get { @@ -18535,7 +18555,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 20170318. + /// Looks up a localized string similar to 20170318. /// public static string ProgramVersion { get { @@ -18544,7 +18564,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon { get { @@ -18554,7 +18574,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap rare_icon_alt { get { @@ -18564,7 +18584,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ID,3DS Region + /// Looks up a localized string similar to ID,3DS Region ///0,Japan (日本) ///1,Americas (NA/SA) ///2,Europe (EU/AU) @@ -18579,7 +18599,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap report { get { @@ -18589,7 +18609,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonability { get { @@ -18599,7 +18619,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitydouble { get { @@ -18609,7 +18629,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitygreat { get { @@ -18619,7 +18639,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitymulti { get { @@ -18629,7 +18649,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilitypair { get { @@ -18639,7 +18659,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonabilityworld { get { @@ -18649,7 +18669,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonalert { get { @@ -18659,7 +18679,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonartist { get { @@ -18669,7 +18689,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerexpert { get { @@ -18679,7 +18699,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattleroyale { get { @@ -18689,7 +18709,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattlerskillful { get { @@ -18699,7 +18719,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreegreat { get { @@ -18709,7 +18729,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbattletreemaster { get { @@ -18719,7 +18739,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbestfriends { get { @@ -18729,7 +18749,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonbirthday { get { @@ -18739,7 +18759,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncareless { get { @@ -18749,7 +18769,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionalola { get { @@ -18759,7 +18779,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionbattle { get { @@ -18769,7 +18789,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong3hoenn { get { @@ -18779,7 +18799,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampiong6hoenn { get { @@ -18789,7 +18809,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionkalos { get { @@ -18799,7 +18819,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionnational { get { @@ -18809,7 +18829,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionregional { get { @@ -18819,7 +18839,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionsinnoh { get { @@ -18829,7 +18849,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonchampionworld { get { @@ -18839,7 +18859,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonclassic { get { @@ -18849,7 +18869,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonconteststar { get { @@ -18859,7 +18879,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle { get { @@ -18869,7 +18889,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorybattle2 { get { @@ -18879,7 +18899,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest { get { @@ -18889,7 +18909,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountmemorycontest2 { get { @@ -18899,7 +18919,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboncountry { get { @@ -18909,7 +18929,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbondowncast { get { @@ -18919,7 +18939,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonearth { get { @@ -18929,7 +18949,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribboneffort { get { @@ -18939,7 +18959,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonevent { get { @@ -18949,7 +18969,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonfootprint { get { @@ -18959,7 +18979,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beauty { get { @@ -18969,7 +18989,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautyhyper { get { @@ -18979,7 +18999,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautymaster { get { @@ -18989,7 +19009,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3beautysuper { get { @@ -18999,7 +19019,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cool { get { @@ -19009,7 +19029,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolhyper { get { @@ -19019,7 +19039,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolmaster { get { @@ -19029,7 +19049,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3coolsuper { get { @@ -19039,7 +19059,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cute { get { @@ -19049,7 +19069,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutehyper { get { @@ -19059,7 +19079,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutemaster { get { @@ -19069,7 +19089,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3cutesuper { get { @@ -19079,7 +19099,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smart { get { @@ -19089,7 +19109,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smarthyper { get { @@ -19099,7 +19119,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartmaster { get { @@ -19109,7 +19129,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3smartsuper { get { @@ -19119,7 +19139,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3tough { get { @@ -19129,7 +19149,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughhyper { get { @@ -19139,7 +19159,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughmaster { get { @@ -19149,7 +19169,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong3toughsuper { get { @@ -19159,7 +19179,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beauty { get { @@ -19169,7 +19189,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautygreat { get { @@ -19179,7 +19199,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautymaster { get { @@ -19189,7 +19209,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4beautyultra { get { @@ -19199,7 +19219,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cool { get { @@ -19209,7 +19229,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolgreat { get { @@ -19219,7 +19239,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolmaster { get { @@ -19229,7 +19249,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4coolultra { get { @@ -19239,7 +19259,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cute { get { @@ -19249,7 +19269,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutegreat { get { @@ -19259,7 +19279,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cutemaster { get { @@ -19269,7 +19289,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4cuteultra { get { @@ -19279,7 +19299,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smart { get { @@ -19289,7 +19309,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartgreat { get { @@ -19299,7 +19319,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartmaster { get { @@ -19309,7 +19329,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4smartultra { get { @@ -19319,7 +19339,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4tough { get { @@ -19329,7 +19349,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughgreat { get { @@ -19339,7 +19359,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughmaster { get { @@ -19349,7 +19369,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbong4toughultra { get { @@ -19359,7 +19379,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeous { get { @@ -19369,7 +19389,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbongorgeousroyal { get { @@ -19379,7 +19399,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonlegend { get { @@ -19389,7 +19409,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmasterbeauty { get { @@ -19399,7 +19419,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercleverness { get { @@ -19409,7 +19429,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercoolness { get { @@ -19419,7 +19439,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastercuteness { get { @@ -19429,7 +19449,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonmastertoughness { get { @@ -19439,7 +19459,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonnational { get { @@ -19449,7 +19469,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonpremier { get { @@ -19459,7 +19479,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrecord { get { @@ -19469,7 +19489,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonrelax { get { @@ -19479,7 +19499,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonroyal { get { @@ -19489,7 +19509,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonshock { get { @@ -19499,7 +19519,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsmile { get { @@ -19509,7 +19529,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsnooze { get { @@ -19519,7 +19539,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonsouvenir { get { @@ -19529,7 +19549,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonspecial { get { @@ -19539,7 +19559,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbontraining { get { @@ -19549,7 +19569,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonvictory { get { @@ -19559,7 +19579,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwinning { get { @@ -19569,7 +19589,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonwishing { get { @@ -19579,7 +19599,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap ribbonworld { get { @@ -19589,7 +19609,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap savePKM { get { @@ -19599,7 +19619,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap saveSAV { get { @@ -19609,7 +19629,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap settings { get { @@ -19619,7 +19639,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a If you are having issues viewing certain symbols/text: Options -> Unicode + /// Looks up a localized string similar to If you are having issues viewing certain symbols/text: Options -> Unicode /// ///// Main Window /// @@ -19639,7 +19659,7 @@ public class Resources { ///Control + Click on... ///- Species: Import Showdown/Smogon set from Clipboard. ///- Nickname/OT box: Bring up the ingame-special characters. - ///- Individual [resto de la cadena truncado]";. + ///- Individual [rest of string was truncated]";. /// public static string shortcuts { get { @@ -19648,7 +19668,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap showdown { get { @@ -19658,7 +19678,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel { get { @@ -19668,7 +19688,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDel1 { get { @@ -19678,7 +19698,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotDrag { get { @@ -19688,7 +19708,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet { get { @@ -19698,7 +19718,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotSet1 { get { @@ -19708,7 +19728,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans { get { @@ -19718,7 +19738,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotTrans1 { get { @@ -19728,7 +19748,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView { get { @@ -19738,7 +19758,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap slotView1 { get { @@ -19748,7 +19768,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,東京都,Tokyo,Tokyo,Tokio,Tokyo,Tokio,东京都,도쿄 도, ///003,北海道,Hokkaido,Hokkaido,Hokkaido,Hokkaido,Hokaido,北海道,홋카이도, @@ -19757,7 +19777,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,福岛县,후쿠 [resto de la cadena truncado]";. + ///009,福島県,Fukushima,Fukushima,Fukushima,Fukushima,Fukushima,福岛县,후쿠 [rest of string was truncated]";. /// public static string sr_001 { get { @@ -19766,7 +19786,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンギラ,Anguilla,Anguilla,Anguilla,Anguilla,Anguila,安圭拉,앵귈라,. /// @@ -19777,14 +19797,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,セント・ピーター,Saint Peter,Saint-Pierre,Saint Peter,Saint [rest of string was truncated]";. /// public static string sr_009 { get { @@ -19793,14 +19813,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,コルドバ州,Córdoba,Córdoba [rest of string was truncated]";. /// public static string sr_010 { get { @@ -19809,7 +19829,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アルバ,Aruba,Aruba,Aruba,Aruba,Aruba,阿鲁巴,아루바,. /// @@ -19820,7 +19840,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バハマ,Bahamas,Bahamas,Bahamas,Bahamas,Bahamas,巴哈马,바하마,. /// @@ -19831,7 +19851,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バルバドス,Barbados,Barbade,Barbados,Barbados,Barbados,巴巴多斯,바베이도스,. /// @@ -19842,7 +19862,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,カヨー州,Cayo,Cayo,Cayo,Cayo,Cayo,卡约区,카요 주, ///003,ベリーズ州,Belize,Belize,Belize,Belize,Belice,伯利兹城,벨리즈 주, @@ -19858,7 +19878,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,丘基萨卡省,추키사카 주, @@ -19867,7 +19887,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 [resto de la cadena truncado]";. + ///009,サンタ・クルス県,Santa Cruz [rest of string was truncated]";. /// public static string sr_015 { get { @@ -19876,7 +19896,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,阿克里州,아크리 주, @@ -19884,7 +19904,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á,塞阿拉州, [resto de la cadena truncado]";. + ///008,セアラ州,Ceará,Ceará,Ceará,Ceará,Ceará,塞阿拉州, [rest of string was truncated]";. /// public static string sr_016 { get { @@ -19893,7 +19913,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,英属维尔京群岛,영국령 버진아일랜드,. /// @@ -19904,14 +19924,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///00 [rest of string was truncated]";. /// public static string sr_018 { get { @@ -19920,7 +19940,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ケイマン諸島,Cayman Islands,Îles Caïmans,Kaimaninseln,Isole Cayman,Islas Caimán,开曼群岛,케이맨 제도,. /// @@ -19931,11 +19951,11 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///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]";. /// public static string sr_020 { get { @@ -19944,14 +19964,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,アトラン [resto de la cadena truncado]";. + ///007,アトラン [rest of string was truncated]";. /// public static string sr_021 { get { @@ -19960,7 +19980,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,阿拉胡埃拉省,알라후엘라 주, @@ -19968,7 +19988,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 [resto de la cadena truncado]";. + ///008,プンタレナス州,Puntarenas,Puntarenas,Puntarenas,Pu [rest of string was truncated]";. /// public static string sr_022 { get { @@ -19977,7 +19997,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ドミニカ国,Dominica,Dominique,Dominica,Dominica,Dominica,多米尼克,도미니카 연방,. /// @@ -19988,7 +20008,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,阿苏阿省,아수아, @@ -19996,7 +20016,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 [resto de la cadena truncado]";. + ///008,エスパイジャト,Espaillat,Espaillat,Espa [rest of string was truncated]";. /// public static string sr_024 { get { @@ -20005,7 +20025,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,加拉帕戈斯省,갈라파고스, @@ -20014,7 +20034,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, [resto de la cadena truncado]";. + ///009, [rest of string was truncated]";. /// public static string sr_025 { get { @@ -20023,14 +20043,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,ラ・リベルター県,La Libertad,La Liber [rest of string was truncated]";. /// public static string sr_026 { get { @@ -20039,7 +20059,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,フランス領ギアナ,French Guiana,Guyane,Französisch-Guyana,Guyana Francese,Guayana Francesa,法属圭亚那,프랑스령 기아나,. /// @@ -20050,7 +20070,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グレナダ,Grenada,Grenade,Grenada,Grenada,Granada,格林纳达,그레나다,. /// @@ -20061,7 +20081,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,グアドループ,Guadeloupe,Guadeloupe,Guadeloupe,Guadalupa,Guadalupe,瓜德罗普,과들루프,. /// @@ -20072,14 +20092,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007 [rest of string was truncated]";. /// public static string sr_030 { get { @@ -20088,12 +20108,12 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///005,東ベルビセ・コレンティネ州,East Berbice-Corentyne,Berbice Oriental-Courantyne,East Berbice-Corentyne,Berbice Orientale-Cor [rest of string was truncated]";. /// public static string sr_031 { get { @@ -20102,7 +20122,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,西北省,북서부, @@ -20111,7 +20131,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 [resto de la cadena truncado]";. + ///009,南県,Sud,Sud,Sud [rest of string was truncated]";. /// public static string sr_032 { get { @@ -20120,7 +20140,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,阿特兰蒂达省,아틀란티다, @@ -20128,7 +20148,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,コルテス [resto de la cadena truncado]";. + ///008,コルテス [rest of string was truncated]";. /// public static string sr_033 { get { @@ -20137,14 +20157,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,セント・アンドリュー,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andrew,Saint Andr [rest of string was truncated]";. /// public static string sr_034 { get { @@ -20153,7 +20173,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルティニーク,Martinique,Martinique,Martinique,Martinica,Martinica,马提尼克,마르티니크,. /// @@ -20164,12 +20184,12 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///005,バハ・カリフォルニア・スル州,Baja California Sur,Basse-Californie du Sud,Süd-Niederkalifornien,Bassa California d [rest of string was truncated]";. /// public static string sr_036 { get { @@ -20178,7 +20198,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モントセラト,Montserrat,Montserrat,Montserrat,Montserrat,Montserrat,蒙特塞拉特,몬트세랫,. /// @@ -20189,7 +20209,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,オランダ領アンティル,Netherlands Antilles,Antilles néerlandaises,Niederländische Antillen,Antille Olandesi,Antillas Neerlandesas,荷属安的列斯,네덜란드령 앤틸리스,. /// @@ -20200,7 +20220,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マナグア,Managua,Managua,Managua,Managua,Managua,马那瓜省,마나과, ///003,ボアコ,Boaco,Boaco,Boaco,Boaco,Boaco,博阿科省,보아코, @@ -20209,7 +20229,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 [resto de la cadena truncado]";. + ///009,ヒノテガ,Jinotega,J [rest of string was truncated]";. /// public static string sr_039 { get { @@ -20218,7 +20238,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,博卡斯-德尔托罗省,보카스델토로, @@ -20227,7 +20247,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 [resto de la cadena truncado]";. + ///009,ロス・サントス,Los [rest of string was truncated]";. /// public static string sr_040 { get { @@ -20236,7 +20256,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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á,上巴拉那省,알토파라나 주, @@ -20244,7 +20264,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 [resto de la cadena truncado]";. + ///008,コルディリェラ県,Cord [rest of string was truncated]";. /// public static string sr_041 { get { @@ -20253,7 +20273,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,亚马孙省,아마소나스, @@ -20261,7 +20281,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 [resto de la cadena truncado]";. + ///008,カハマルカ,Cajamarca,Cajamarca,Cajamarca,Cajamarca,Cajama [rest of string was truncated]";. /// public static string sr_042 { get { @@ -20270,11 +20290,11 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///004,セント・アン・サンディ・ポイント,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Point,Saint Anne Sandy Po [rest of string was truncated]";. /// public static string sr_043 { get { @@ -20283,7 +20303,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,セントルシア,St. Lucia,Sainte-Lucie,St. Lucia,Santa Lucia,Santa Lucía,圣卢西亚,세인트루시아,. /// @@ -20294,7 +20314,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,圣文森特和格林纳丁斯,세인트빈센트 그레나딘,. /// @@ -20305,7 +20325,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,パラマリボ,Paramaribo,Paramaribo,Paramaribo,Paramaribo,Paramaribo,帕拉马里博市,파라마리보, ///003,ブロコポンド,Brokopondo,Brokopondo,Brokopondo,Brokopondo,Brokopondo,布罗科蓬多区,브로코폰도, @@ -20313,7 +20333,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 [resto de la cadena truncado]";. + ///008,パラ,Para,P [rest of string was truncated]";. /// public static string sr_046 { get { @@ -20322,7 +20342,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,阿里马市,아리마, @@ -20330,7 +20350,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 [resto de la cadena truncado]";. + ///008,セント・デビッド州,Saint David,Saint [rest of string was truncated]";. /// public static string sr_047 { get { @@ -20339,7 +20359,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,特克斯和凯科斯群岛,터크스 케이커스 제도,. /// @@ -20350,14 +20370,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,カリフォルニア州,California,Californie,Kaliforn [rest of string was truncated]";. /// public static string sr_049 { get { @@ -20366,7 +20386,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,モンテビデオ,Montevideo,Montevideo,Montevideo,Montevideo,Montevideo,蒙得维的亚省,몬테비데오, ///003,アルティガス,Artigas,Artigas,Artigas,Artigas,Artigas,阿蒂加斯省,아르티가스, @@ -20374,7 +20394,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 [resto de la cadena truncado]";. + ///008,フロレス,Flores,Flore [rest of string was truncated]";. /// public static string sr_050 { get { @@ -20383,7 +20403,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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.,美属维尔京群岛,미국령 버진아일랜드,. /// @@ -20394,7 +20414,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,亚马孙边疆区,아마소나스, @@ -20402,7 +20422,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 [resto de la cadena truncado]";. + ///008,ボリーバル,Bolívar,Bolív [rest of string was truncated]";. /// public static string sr_052 { get { @@ -20411,7 +20431,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ティラナ州,Tirana,Tirana,Tirana,Tirana,Tirana,地拉那州,티라나 주, ///003,ベラト州,Berat,Berat,Berat,Berat,Berat,培拉特州,베라트 주, @@ -20420,7 +20440,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, [resto de la cadena truncado]";. + ///009,コルチャ州,Korçë,Korçë,Korça, [rest of string was truncated]";. /// public static string sr_064 { get { @@ -20429,11 +20449,11 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///004,ノーザンテリトリー,Northern Territory,Territoire du Nord,Nördliches Territorium,Territorio del Nord,Territ [rest of string was truncated]";. /// public static string sr_065 { get { @@ -20442,14 +20462,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,ザルツブルク州,Salzburg,Salzbourg,S [rest of string was truncated]";. /// public static string sr_066 { get { @@ -20458,7 +20478,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,佛兰德大区,플랑드르 지역, @@ -20471,11 +20491,11 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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, [resto de la cadena truncado]";. + ///004,ブルチュコ,Brčko District,Brčko (district),Brčko-Distrikt,Distretto di Brčko,Distrito de Brčko, [rest of string was truncated]";. /// public static string sr_068 { get { @@ -20484,7 +20504,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ボツワナ,Botswana,Botswana,Botsuana,Botswana,Botsuana,博茨瓦纳,보츠와나,. /// @@ -20495,7 +20515,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,索非亚州,소피아 주, @@ -20503,7 +20523,7 @@ public class Resources { ///005,プレベン州,Pleven,Pleven,Plewen,Pleven,Pleven,普列文州,플레벤 주, ///006,ビディン州,Vidin,Vidin,Widin,Vidin,Vidin,维丁州,비딘 주, ///007,バルナ州,Varna,Varna,Warna,Varna,Varna,瓦尔纳州,바르나 주, - ///008,ブルガス州, [resto de la cadena truncado]";. + ///008,ブルガス州, [rest of string was truncated]";. /// public static string sr_070 { get { @@ -20512,12 +20532,12 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///009,ドゥブロヴニク=ネレトヴァ郡,Dubrovnik-Neretva County,Dubrovn [rest of string was truncated]";. /// public static string sr_071 { get { @@ -20526,7 +20546,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,キプロス,Cyprus,Chypre,Zypern,Cipro,Chipre,塞浦路斯,키프로스,. /// @@ -20537,13 +20557,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///006,カールスバート地方,Karlovy Vary Regio [rest of string was truncated]";. /// public static string sr_073 { get { @@ -20552,13 +20572,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///022,シェラン地域,Region Zea [rest of string was truncated]";. /// public static string sr_074 { get { @@ -20567,7 +20587,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エストニア,Estonia,Estonie,Estland,Estonia,Estonia,爱沙尼亚,에스토니아,. /// @@ -20578,13 +20598,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///012,北カレリア県,Pohjois-Karjala / Norra Karelen,Carélie du Nord,Nordkarelien,C [rest of string was truncated]";. /// public static string sr_076 { get { @@ -20593,14 +20613,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,ブルゴーニュ,Burgundy,Bourgogne,Burgund,Borg [rest of string was truncated]";. /// public static string sr_077 { get { @@ -20609,7 +20629,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルリン,Berlin,Berlin,Berlin,Berlino,Berlín,柏林市,베를린, ///003,ヘッセン州,Hesse,Hesse,Hessen,Assia,Hesse,黑森州,헤센 주, @@ -20617,7 +20637,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,ハンブ [resto de la cadena truncado]";. + ///008,ハンブ [rest of string was truncated]";. /// public static string sr_078 { get { @@ -20626,13 +20646,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///006,東マケドニア・トラキア,East Macedonia and Thrace,Macédoine-Orientale-et-Thrace,Ostmakedonien und Thrakien,Macedonia Orientale [rest of string was truncated]";. /// public static string sr_079 { get { @@ -20641,13 +20661,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,包尔绍德-奥包乌伊-曾普伦州, [resto de la cadena truncado]";. + ///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]";. /// public static string sr_080 { get { @@ -20656,7 +20676,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アイスランド,Iceland,Islande,Island,Islanda,Islandia,冰岛,아이슬란드,. /// @@ -20667,7 +20687,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,卡洛郡,칼로우 주, @@ -20676,7 +20696,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 [resto de la cadena truncado]";. + ///016,ケリー州,County Kerry,K [rest of string was truncated]";. /// public static string sr_082 { get { @@ -20685,14 +20705,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,トレンティノ・アルト・アディジェ州,Trentino-Alto Adige,Trentin-Haut-Adige,Trentino-Südtirol,Tr [rest of string was truncated]";. /// public static string sr_083 { get { @@ -20701,7 +20721,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ラトビア,Latvia,Lettonie,Lettland,Lettonia,Letonia,拉脱维亚,라트비아,. /// @@ -20712,7 +20732,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,マセル県,Maseru,Maseru,Maseru,Maseru,Maseru,马塞卢区,마세루 주, ///003,べレア県,Berea,Berea,Berea,Berea,Berea,伯里亚区,베레아 주, @@ -20720,7 +20740,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 [resto de la cadena truncado]";. + ///008,モコトロング県,Mokhotlong,Mok [rest of string was truncated]";. /// public static string sr_085 { get { @@ -20729,7 +20749,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,リヒテンシュタイン,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,Liechtenstein,列支敦士登,리히텐슈타인,. /// @@ -20740,14 +20760,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,パネベジス州,Panevėžys,Panevėžys,Panevėžys,Panevėžys,C [rest of string was truncated]";. /// public static string sr_087 { get { @@ -20756,7 +20776,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ルクセンブルク,Luxembourg,Luxembourg,Luxemburg,Lussemburgo,Luxemburgo,卢森堡,룩셈부르크,. /// @@ -20767,7 +20787,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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),马其顿,마케도니아 공화국,. /// @@ -20778,7 +20798,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マルタ,Malta,Malte,Malta,Malta,Malta,马耳他,몰타,. /// @@ -20789,7 +20809,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モンテネグロ,Montenegro,Monténégro,Montenegro,Montenegro,Montenegro,黑山,몬테네그로,. /// @@ -20800,7 +20820,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モザンビーク,Mozambique,Mozambique,Mosambik,Mozambico,Mozambique,莫桑比克,모잠비크,. /// @@ -20811,7 +20831,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ナミビア,Namibia,Namibie,Namibia,Namibia,Namibia,纳米比亚,나미비아,. /// @@ -20822,14 +20842,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,フローニンゲン州,Groningen,Groningue,Groningen [rest of string was truncated]";. /// public static string sr_094 { get { @@ -20838,14 +20858,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///007,ホークスベイ,Hawke's Bay,Hawke's Bay,Hawke's Bay,Ha [rest of string was truncated]";. /// public static string sr_095 { get { @@ -20854,7 +20874,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///007,オスロ,Oslo,Oslo,Oslo,Oslo,Oslo,奥斯陆,오슬로, ///008,アーケシュフース県,Akershus,Akershus,Akershus,Akershus,Akershus,阿克什胡斯郡,아케르스후스 주, @@ -20862,7 +20882,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 [resto de la cadena truncado]";. + ///013,ホルダラン県,Hordaland,Hordaland,Ho [rest of string was truncated]";. /// public static string sr_096 { get { @@ -20871,14 +20891,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,鲁布斯卡省,루부쉬 [resto de la cadena truncado]";. + ///007,ルブシュ,Lubusz,Lubusz,Lebus,Lebus,Lubus,鲁布斯卡省,루부쉬 [rest of string was truncated]";. /// public static string sr_097 { get { @@ -20887,7 +20907,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,马德拉自治区,마데이라 주, @@ -20895,7 +20915,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 [resto de la cadena truncado]";. + ///012,ブラガンサ県,Bragança,Bragança,Bragança,Bragança,Distri [rest of string was truncated]";. /// public static string sr_098 { get { @@ -20904,7 +20924,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ブカレスト州,Bucharest,Bucarest,Bukarest,Bucarest,Bucarest,布加勒斯特市,부쿠레슈티 주, ///003,アルバ州,Alba,Alba,Alba,Alba,Alba,阿尔巴县,알바 주, @@ -20913,7 +20933,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 [resto de la cadena truncado]";. + ///00 [rest of string was truncated]";. /// public static string sr_099 { get { @@ -20922,13 +20942,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///013,アムール州,Amur,Amour,Oblast Amur,Regione [rest of string was truncated]";. /// public static string sr_100 { get { @@ -20937,7 +20957,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,塞尔维亚及科索沃,세르비아 코소보,. /// @@ -20948,7 +20968,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,班斯卡-比斯特里察州,반스카비스트리차, @@ -20956,7 +20976,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 [resto de la cadena truncado]";. + ///008,トルナバ,Trnava,Trnava,Trna [rest of string was truncated]";. /// public static string sr_102 { get { @@ -20965,7 +20985,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スロベニア,Slovenia,Slovénie,Slowenien,Slovenia,Eslovenia,斯洛文尼亚,슬로베니아,. /// @@ -20976,13 +20996,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,夸祖鲁-纳塔尔省, [resto de la cadena truncado]";. + ///006,クワズールー・ナタール州,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,KwaZulu-Natal,夸祖鲁-纳塔尔省, [rest of string was truncated]";. /// public static string sr_104 { get { @@ -20991,14 +21011,14 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,Î [resto de la cadena truncado]";. + ///007,カナリア諸島,Canary Islands,Î [rest of string was truncated]";. /// public static string sr_105 { get { @@ -21007,7 +21027,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ホホ,Hhohho,Hhohho,Hhohho,Hhohho,Hhohho,霍霍区,호호, ///003,ルボンボ,Lubombo,Lubombo,Lubombo,Lubombo,Lubombo,卢邦博区,로밤바, @@ -21021,13 +21041,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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 [resto de la cadena truncado]";. + ///006,セーデルマンランド州,Södermanland County,Södermanland,Söder [rest of string was truncated]";. /// public static string sr_107 { get { @@ -21036,7 +21056,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,ベルン州,Bern,Berne,Bern,Berna,Berna,伯尔尼州,베른 주, ///004,アールガウ州,Aargau,Argovie,Aargau,Argovia,Argovia,阿尔高州,아르가우 주, @@ -21044,7 +21064,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 [resto de la cadena truncado]";. + ///009,グラウビュンデン州,Graubünden,Grisons,Graubünden,Grigioni,Gris [rest of string was truncated]";. /// public static string sr_108 { get { @@ -21053,7 +21073,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,アンカラ県,Ankara,Ankara,Ankara,Ankara,Ankara,安卡拉省,앙카라 주, ///003,イスタンブル県,İstanbul,İstanbul,İstanbul,Istanbul,Estambul,伊斯坦布尔省,이스탄불 주, @@ -21062,7 +21082,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 [resto de la cadena truncado]";. + ///009,アンタリヤ県,Antalya,Antalya,Anta [rest of string was truncated]";. /// public static string sr_109 { get { @@ -21071,7 +21091,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///002,イングランド,England,Angleterre,England,Inghilterra,Inglaterra,英格兰,잉글랜드, ///004,スコットランド,Scotland,Écosse,Schottland,Scozia,Escocia,苏格兰,스코틀랜드, @@ -21085,7 +21105,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ザンビア,Zambia,Zambie,Sambia,Zambia,Zambia,赞比亚,잠비아,. /// @@ -21096,7 +21116,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジンバブエ,Zimbabwe,Zimbabwe,Simbabwe,Zimbabwe,Zimbabue,津巴布韦,짐바브웨,. /// @@ -21107,7 +21127,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アゼルバイジャン,Azerbaijan,Azerbaïdjan,Aserbaidschan,Azerbaigian,Azerbaiyán,阿塞拜疆,아제르바이잔,. /// @@ -21118,7 +21138,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モーリタニア,Mauritania,Mauritanie,Mauretanien,Mauritania,Mauritania,毛里塔尼亚,모리타니,. /// @@ -21129,7 +21149,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,マリ,Mali,Mali,Mali,Mali,Malí,马里,말리,. /// @@ -21140,7 +21160,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ニジェール,Niger,Niger,Niger,Niger,Níger,尼日尔,니제르,. /// @@ -21151,7 +21171,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,チャド,Chad,Tchad,Tschad,Ciad,Chad,乍得,차드,. /// @@ -21162,7 +21182,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,スーダン,Sudan,Soudan,Sudan,Sudan,Sudán,苏丹,수단,. /// @@ -21173,7 +21193,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,エリトリア,Eritrea,Érythrée,Eritrea,Eritrea,Eritrea,厄立特里亚,에리트레아,. /// @@ -21184,7 +21204,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブチ,Djibouti,Djibouti,Dschibuti,Gibuti,Yibuti,吉布提,지부티,. /// @@ -21195,7 +21215,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ソマリア,Somalia,Somalie,Somalia,Somalia,Somalia,索马里,소말리아,. /// @@ -21206,7 +21226,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,アンドラ,Andorra,Andorre,Andorra,Andorra,Andorra,安道尔,안도라,. /// @@ -21217,7 +21237,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジブラルタル,Gibraltar,Gibraltar,Gibraltar,Gibilterra,Gibraltar,直布罗陀,지브롤터,. /// @@ -21228,7 +21248,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ガーンジー島,Guernsey,Guernesey,Guernsey,Guernsey,Guernsey,根西,건지 섬,. /// @@ -21239,7 +21259,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,马恩岛,맨 섬,. /// @@ -21250,7 +21270,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ジャージー島,Jersey,Jersey,Jersey,Jersey,Jersey,泽西,저지 섬,. /// @@ -21261,7 +21281,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,モナコ,Monaco,Monaco,Monaco,Monaco (Principato di),Mónaco,摩纳哥,모나코,. /// @@ -21272,7 +21292,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,-,가오슝, @@ -21281,7 +21301,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 [resto de la cadena truncado]";. + ///009,新北市,New Taipe [rest of string was truncated]";. /// public static string sr_128 { get { @@ -21290,7 +21310,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,釜山广域市,부산광역시, @@ -21298,7 +21318,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- [resto de la cadena truncado]";. + ///008,ウルサン広域市,Ulsan- [rest of string was truncated]";. /// public static string sr_136 { get { @@ -21307,7 +21327,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,ホンコン,Hong Kong,Hong Kong,Hongkong,Hong Kong,Hong Kong,中国 香港,홍콩,. /// @@ -21318,7 +21338,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,シンガポール,Singapore,Singapour,Singapur,Singapore,Singapur,新加坡,싱가포르,. /// @@ -21329,7 +21349,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,柔佛州,조호르 주, @@ -21337,7 +21357,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 [resto de la cadena truncado]";. + ///008,パハン州,Paha [rest of string was truncated]";. /// public static string sr_156 { get { @@ -21346,7 +21366,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,重庆市,충칭, @@ -21355,7 +21375,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,广东省, [resto de la cadena truncado]";. + ///009,広東省,Guangdong,Guangdong,Guangdong,Guangdong,Cantón,广东省, [rest of string was truncated]";. /// public static string sr_160 { get { @@ -21364,7 +21384,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,阿治曼,아지만, @@ -21372,7 +21392,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 [resto de la cadena truncado]";. + ///008,ウム・アル・カイワイン,Umm al Qaywayn,Umm al-Qaiw [rest of string was truncated]";. /// public static string sr_168 { get { @@ -21381,13 +21401,13 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,昌迪加尔中 [resto de la cadena truncado]";. + ///006,チャンディーガル州,Chandīgarh,Chandigarh,Chandigarh,Chandigarh,Chandigarh,昌迪加尔中 [rest of string was truncated]";. /// public static string sr_169 { get { @@ -21396,7 +21416,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to 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,巴哈地区,알바하 주, @@ -21405,7 +21425,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,メッカ [resto de la cadena truncado]";. + ///009,メッカ [rest of string was truncated]";. /// public static string sr_174 { get { @@ -21414,7 +21434,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,サンマリノ,San Marino,Saint-Marin,San Marino,San Marino,San Marino,圣马力诺,산마리노,. /// @@ -21425,7 +21445,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バチカン,Vatican City,Vatican,Vatikanstadt,Vaticano (Città del),Vaticano,梵蒂冈,바티칸,. /// @@ -21436,7 +21456,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO + /// Looks up a localized string similar to Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO ///000,—,—,—,—,—,—,—,— ///001,バーミューダ,Bermuda,Bermudes,Bermuda,Bermude,Bermudas,百慕大,버뮤다,. /// @@ -21447,7 +21467,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap swapBox { get { @@ -21457,7 +21477,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap team { get { @@ -21467,7 +21487,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Duftnote ///Niesel ///Temposchub @@ -21510,7 +21530,7 @@ public class Resources { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [resto de la cadena truncado]";. + ///Lärmschutz [rest of string was truncated]";. /// public static string text_abilities_de { get { @@ -21519,7 +21539,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Duftnote ///Niesel ///Temposchub @@ -21562,7 +21582,7 @@ public class Resources { ///Magmapanzer ///Aquahülle ///Magnetfalle - ///Lärmschutz [resto de la cadena truncado]";. + ///Lärmschutz [rest of string was truncated]";. /// public static string text_Abilities_de1 { get { @@ -21571,7 +21591,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a — + /// Looks up a localized string similar to — ///Stench ///Drizzle ///Speed Boost @@ -21615,7 +21635,7 @@ public class Resources { ///Water Veil ///Magnet Pull ///Soundproof - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_abilities_en { get { @@ -21624,7 +21644,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a — + /// Looks up a localized string similar to — ///Stench ///Drizzle ///Speed Boost @@ -21668,7 +21688,7 @@ public class Resources { ///Water Veil ///Magnet Pull ///Soundproof - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_Abilities_en1 { get { @@ -21677,7 +21697,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Hedor ///Llovizna ///Impulso @@ -21719,7 +21739,7 @@ public class Resources { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [resto de la cadena truncado]";. + ///Imá [rest of string was truncated]";. /// public static string text_abilities_es { get { @@ -21728,7 +21748,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Hedor ///Llovizna ///Impulso @@ -21770,7 +21790,7 @@ public class Resources { ///Foco Interno ///Escudo Magma ///Velo Agua - ///Imá [resto de la cadena truncado]";. + ///Imá [rest of string was truncated]";. /// public static string text_Abilities_es1 { get { @@ -21779,7 +21799,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Puanteur ///Crachin ///Turbo @@ -21824,7 +21844,7 @@ public class Resources { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [resto de la cadena truncado]";. + ///Sable Vol [rest of string was truncated]";. /// public static string text_abilities_fr { get { @@ -21833,7 +21853,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Puanteur ///Crachin ///Turbo @@ -21878,7 +21898,7 @@ public class Resources { ///Magnépiège ///Anti-Bruit ///Cuvette - ///Sable Vol [resto de la cadena truncado]";. + ///Sable Vol [rest of string was truncated]";. /// public static string text_Abilities_fr1 { get { @@ -21887,7 +21907,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Tanfo ///Piovischio ///Acceleratore @@ -21931,7 +21951,7 @@ public class Resources { ///Idrovelo ///Magnetismo ///Antisuono - ///C [resto de la cadena truncado]";. + ///C [rest of string was truncated]";. /// public static string text_abilities_it { get { @@ -21940,7 +21960,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Tanfo ///Piovischio ///Acceleratore @@ -21984,7 +22004,7 @@ public class Resources { ///Idrovelo ///Magnetismo ///Antisuono - ///C [resto de la cadena truncado]";. + ///C [rest of string was truncated]";. /// public static string text_Abilities_it1 { get { @@ -21993,7 +22013,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///あくしゅう ///あめふらし ///かそく @@ -22068,7 +22088,7 @@ public class Resources { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [resto de la cadena truncado]";. + ///シェルアーマー [rest of string was truncated]";. /// public static string text_abilities_ja { get { @@ -22077,7 +22097,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///あくしゅう ///あめふらし ///かそく @@ -22152,7 +22172,7 @@ public class Resources { ///やるき ///しろいけむり ///ヨガパワー - ///シェルアーマー [resto de la cadena truncado]";. + ///シェルアーマー [rest of string was truncated]";. /// public static string text_Abilities_ja1 { get { @@ -22161,7 +22181,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///악취 ///잔비 ///가속 @@ -22258,7 +22278,7 @@ public class Resources { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [resto de la cadena truncado]";. + ///스나이퍼 [rest of string was truncated]";. /// public static string text_abilities_ko { get { @@ -22267,7 +22287,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///악취 ///잔비 ///가속 @@ -22364,7 +22384,7 @@ public class Resources { ///선파워 ///속보 ///노말스킨 - ///스나이퍼 [resto de la cadena truncado]";. + ///스나이퍼 [rest of string was truncated]";. /// public static string text_Abilities_ko1 { get { @@ -22373,7 +22393,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///恶臭 ///降雨 ///加速 @@ -22481,7 +22501,7 @@ public class Resources { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [resto de la cadena truncado]";. + ///预知梦 /// [rest of string was truncated]";. /// public static string text_abilities_zh { get { @@ -22490,7 +22510,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ― + /// Looks up a localized string similar to ― ///恶臭 ///降雨 ///加速 @@ -22598,7 +22618,7 @@ public class Resources { ///超幸运 ///引爆 ///危险预知 - ///预知梦 /// [resto de la cadena truncado]";. + ///预知梦 /// [rest of string was truncated]";. /// public static string text_Abilities_zh1 { get { @@ -22607,7 +22627,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Mysteriöser Ort ///Entfernter Ort ///\xf000ą\x0001\x0001 von \xf000Ā\x0001\x0000 @@ -22648,7 +22668,7 @@ public class Resources { ///Wendelberg ///Drachenstiege ///Siegesstraße - ///Tessera [resto de la cadena truncado]";. + ///Tessera [rest of string was truncated]";. /// public static string text_bw2_00000_de { get { @@ -22657,7 +22677,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Mystery Zone ///Faraway place ///\xf000Ā\x0001\x0000’s \xf000ą\x0001\x0001 @@ -22696,7 +22716,7 @@ public class Resources { ///PWT ///Chargestone Cave ///Twist Mountain - ///Dragonspiral [resto de la cadena truncado]";. + ///Dragonspiral [rest of string was truncated]";. /// public static string text_bw2_00000_en { get { @@ -22705,7 +22725,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Lugar misterioso ///Lugar lejano ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22744,7 +22764,7 @@ public class Resources { ///PWT ///Cueva Electrorroca ///Monte Tuerca - ///Torre [resto de la cadena truncado]";. + ///Torre [rest of string was truncated]";. /// public static string text_bw2_00000_es { get { @@ -22753,7 +22773,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Endroit Mystérieux ///Endroit Lointain ///\xf000ą\x0001\x0001 de \xf000Ā\x0001\x0000 @@ -22794,7 +22814,7 @@ public class Resources { ///Mont Foré ///Tour Dragospire ///Route Victoire - ///En [resto de la cadena truncado]";. + ///En [rest of string was truncated]";. /// public static string text_bw2_00000_fr { get { @@ -22803,7 +22823,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Zona Misteriosa ///Luogo Remoto ///\xf000ą\x0001\x0001 di \xf000Ā\x0001\x0000 @@ -22838,7 +22858,7 @@ public class Resources { ///Cantiere dei Sogni ///Bosco Girandola ///Deserto della Quiete - ///Castello [resto de la cadena truncado]";. + ///Castello [rest of string was truncated]";. /// public static string text_bw2_00000_it { get { @@ -22847,7 +22867,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///なぞのばしょ ///とおいばしょ ///\xf000Ā\x0001\x0000の\xf000ą\x0001\x0001 @@ -22900,7 +22920,7 @@ public class Resources { ///ブラックシティ ///ホワイトフォレスト ///ユナイテッドタワー - ///ちかすいみゃく [resto de la cadena truncado]";. + ///ちかすいみゃく [rest of string was truncated]";. /// public static string text_bw2_00000_ja { get { @@ -22909,7 +22929,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///수수께끼의 장소 ///먼 곳 ///\xf000Ā\x0001\x0000의 \xf000ą\x0001\x0001 @@ -22977,7 +22997,7 @@ public class Resources { ///물풍경도개교 ///실린더 브리지 ///빌리지 브리지 - ///원더 [resto de la cadena truncado]";. + ///원더 [rest of string was truncated]";. /// public static string text_bw2_00000_ko { get { @@ -22986,7 +23006,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///神秘的地方 ///遥远的地方 ///\xf000Ā\x0001\x0000的\xf000ą\x0001\x0001 @@ -23064,7 +23084,7 @@ public class Resources { ///潜入连接 ///雷文市 ///帆巴市 - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_bw2_00000_zh { get { @@ -23073,7 +23093,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Linktausch ///Linktausch ///Kanto @@ -23096,7 +23116,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Link Trade ///Link Trade ///Kanto @@ -23119,7 +23139,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Intercambio ///Intercambio ///Kanto @@ -23142,7 +23162,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Échange Link ///Échange Link ///Kanto @@ -23165,7 +23185,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///Scambio in link ///Scambio in link ///Kanto @@ -23188,7 +23208,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///つうしんこうかん ///つうしんこうかん ///カントーちほう @@ -23211,7 +23231,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///통신교환 ///통신교환 ///관동지방 @@ -23234,7 +23254,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- ///连接交换 ///连接交换 ///关都地区 @@ -23257,7 +23277,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Idyll + /// Looks up a localized string similar to Idyll ///Entfernter Ort ///Pokémon Movie ///Pokémon Film 10 @@ -23296,7 +23316,7 @@ public class Resources { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///Worlds 2014 [resto de la cadena truncado]";. + ///Worlds 2014 [rest of string was truncated]";. /// public static string text_bw2_40000_de { get { @@ -23305,7 +23325,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lovely place + /// Looks up a localized string similar to Lovely place ///Faraway place ///Pokémon Movie ///Pokémon Movie 10 @@ -23343,7 +23363,7 @@ public class Resources { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds [resto de la cadena truncado]";. + ///Worlds [rest of string was truncated]";. /// public static string text_bw2_40000_en { get { @@ -23352,7 +23372,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Lugar lejano ///Película Pokémon ///Película PKMN 10 @@ -23382,7 +23402,7 @@ public class Resources { ///Camp. Mundial 2014 ///Camp. Mundial 2015 ///Camp. Mundial 2016 - ///Camp [resto de la cadena truncado]";. + ///Camp [rest of string was truncated]";. /// public static string text_bw2_40000_es { get { @@ -23391,7 +23411,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 10 @@ -23429,7 +23449,7 @@ public class Resources { ///Worlds 2010 ///Worlds 2011 ///Worlds 2012 - ///Worlds 2 [resto de la cadena truncado]";. + ///Worlds 2 [rest of string was truncated]";. /// public static string text_bw2_40000_fr { get { @@ -23438,7 +23458,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Luogo grazioso + /// Looks up a localized string similar to Luogo grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 10 @@ -23477,7 +23497,7 @@ public class Resources { ///Worlds 2011 ///Worlds 2012 ///Worlds 2013 - ///World [resto de la cadena truncado]";. + ///World [rest of string was truncated]";. /// public static string text_bw2_40000_it { get { @@ -23486,7 +23506,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが10 @@ -23538,7 +23558,7 @@ public class Resources { ///VGE2012 ///VGE2013 ///VGE2014 - ///VGE2 [resto de la cadena truncado]";. + ///VGE2 [rest of string was truncated]";. /// public static string text_bw2_40000_ja { get { @@ -23547,7 +23567,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화10 @@ -23603,7 +23623,7 @@ public class Resources { ///VGE2016 ///VGE2017 ///VGE2018 - ///VGE2 [resto de la cadena truncado]";. + ///VGE2 [rest of string was truncated]";. /// public static string text_bw2_40000_ko { get { @@ -23612,7 +23632,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 美妙的地方 + /// Looks up a localized string similar to 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影10 @@ -23669,7 +23689,7 @@ public class Resources { ///VGE2017 ///VGE2018 ///VGE2019 - ///VG [resto de la cadena truncado]";. + ///VG [rest of string was truncated]";. /// public static string text_bw2_40000_zh { get { @@ -23678,7 +23698,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Entfernte Person + /// Looks up a localized string similar to Entfernte Person ///Betreuerpärchen ///Züchter. /// @@ -23689,7 +23709,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Stranger + /// Looks up a localized string similar to Stranger ///Day-Care Couple ///PKMN Breeder. /// @@ -23700,7 +23720,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Persona lejana + /// Looks up a localized string similar to Persona lejana ///Pareja guardería ///Criapokémon. /// @@ -23711,7 +23731,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Personne lointaine + /// Looks up a localized string similar to Personne lointaine ///Couple de la Pension ///Éleveuse. /// @@ -23722,7 +23742,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Persona lontana + /// Looks up a localized string similar to Persona lontana ///Coppia Pensione ///AllevaPKMN. /// @@ -23733,7 +23753,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a とおくにいるひと + /// Looks up a localized string similar to とおくにいるひと ///そだてやふうふ ///トレジャーハンター. /// @@ -23744,7 +23764,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 멀리 있는 사람 + /// Looks up a localized string similar to 멀리 있는 사람 ///키우미집부부 ///브리더. /// @@ -23755,7 +23775,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 远处的人 + /// Looks up a localized string similar to 远处的人 ///饲育屋夫妇 ///寻宝猎人. /// @@ -23766,7 +23786,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Liebt es zu essen. + /// Looks up a localized string similar to Liebt es zu essen. ///Nickt oft ein. ///Schläft gern. ///Macht oft Unordnung. @@ -23790,7 +23810,7 @@ public class Resources { ///Hinterhältig. ///Äußerst gerissen. ///Ist oft in Gedanken. - ///Sehr pedantis [resto de la cadena truncado]";. + ///Sehr pedantis [rest of string was truncated]";. /// public static string text_character_de { get { @@ -23799,7 +23819,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Loves to eat. + /// Looks up a localized string similar to Loves to eat. ///Takes plenty of siestas. ///Nods off a lot. ///Scatters things often. @@ -23825,7 +23845,7 @@ public class Resources { ///Often lost in thought. ///Very finicky. ///Strong willed. - ///Somewhat vai [resto de la cadena truncado]";. + ///Somewhat vai [rest of string was truncated]";. /// public static string text_character_en { get { @@ -23834,7 +23854,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Le encanta comer. + /// Looks up a localized string similar to Le encanta comer. ///A menudo se duerme. ///Duerme mucho. ///Suele desordenar cosas. @@ -23855,7 +23875,7 @@ public class Resources { ///Es un poco payaso. ///Huye rápido. ///Es extremadamente curioso. - ///Le gusta hacer [resto de la cadena truncado]";. + ///Le gusta hacer [rest of string was truncated]";. /// public static string text_character_es { get { @@ -23864,7 +23884,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Adore manger. + /// Looks up a localized string similar to Adore manger. ///S’assoupit souvent. ///Dort beaucoup. ///Éparpille des choses. @@ -23891,7 +23911,7 @@ public class Resources { ///Très particulier. ///Très volontaire. ///Un peu vaniteux. - ///Esprit [resto de la cadena truncado]";. + ///Esprit [rest of string was truncated]";. /// public static string text_character_fr { get { @@ -23900,7 +23920,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Adora mangiare. + /// Looks up a localized string similar to Adora mangiare. ///Si addormenta spesso. ///Dorme a lungo. ///Lascia cose in giro. @@ -23923,7 +23943,7 @@ public class Resources { ///È un grande ficcanaso. ///È alquanto vivace. ///È estremamente sagace. - ///Si perde nel suo mo [resto de la cadena truncado]";. + ///Si perde nel suo mo [rest of string was truncated]";. /// public static string text_character_it { get { @@ -23932,7 +23952,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a たべるのが だいすき. + /// Looks up a localized string similar to たべるのが だいすき. ///ひるねを よくする. ///いねむりが おおい. ///ものを よく ちらかす. @@ -23970,7 +23990,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 먹는 것을 제일 좋아함. + /// Looks up a localized string similar to 먹는 것을 제일 좋아함. ///낮잠을 잘 잠. ///말뚝잠이 많음. ///물건을 잘 어지름. @@ -24008,7 +24028,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 非常喜欢吃东西。 + /// Looks up a localized string similar to 非常喜欢吃东西。 ///经常睡午觉。 ///常常打瞌睡。 ///经常乱扔东西。 @@ -24046,7 +24066,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Outskirt Stand (C) Cipher Lab (XD) ///Outskirt Stand (C) ///Phenac City (C) @@ -24065,7 +24085,7 @@ public class Resources { ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) ///Pyrite Town (C) Mt. Battle (XD) - ///P [resto de la cadena truncado]";. + ///P [rest of string was truncated]";. /// public static string text_cxd_00000_en { get { @@ -24074,7 +24094,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Kein + /// Looks up a localized string similar to Kein ///Zertrümmerer (HGSS) ///Hohes Graß /// @@ -24108,7 +24128,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24141,7 +24161,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Golpe roca (HGSS) ///Hierba Alta /// @@ -24174,7 +24194,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24207,7 +24227,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24240,7 +24260,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24273,7 +24293,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Rock Smash (HGSS) ///Tall Grass /// @@ -24306,7 +24326,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 无 + /// Looks up a localized string similar to 无 ///碎岩 (HGSS) ///高草丛 /// @@ -24339,7 +24359,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -24590,7 +24610,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_de { get { @@ -24599,7 +24619,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -24852,7 +24872,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_en { get { @@ -24861,7 +24881,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Picoreja + /// Looks up a localized string similar to Picoreja /// /// /// @@ -25113,7 +25133,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_forms_es { get { @@ -25122,7 +25142,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Picoreja + /// Looks up a localized string similar to Picoreja /// /// /// @@ -25374,7 +25394,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_Forms_es1 { get { @@ -25383,7 +25403,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -25633,7 +25653,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_fr { get { @@ -25642,7 +25662,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -25892,7 +25912,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_Forms_fr1 { get { @@ -25901,7 +25921,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26152,7 +26172,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_it { get { @@ -26161,7 +26181,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26412,7 +26432,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_Forms_it1 { get { @@ -26421,7 +26441,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26672,7 +26692,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_forms_ja { get { @@ -26681,7 +26701,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Spiky + /// Looks up a localized string similar to Spiky /// /// /// @@ -26931,7 +26951,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_ko { get { @@ -26940,7 +26960,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 刺刺耳皮丘 + /// Looks up a localized string similar to 刺刺耳皮丘 /// /// /// @@ -27191,7 +27211,7 @@ public class Resources { /// /// /// - /// /// [resto de la cadena truncado]";. + /// /// [rest of string was truncated]";. /// public static string text_forms_zh { get { @@ -27200,7 +27220,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Saphir ///Rubin ///Smaragd @@ -27247,7 +27267,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Sapphire ///Ruby ///Emerald @@ -27294,7 +27314,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Zafiro ///Rubí ///Esmeralda @@ -27341,7 +27361,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Saphir ///Rubis ///Émeraude @@ -27388,7 +27408,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Zaffiro ///Rubino ///Smeraldo @@ -27435,7 +27455,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///サファイア ///ルビー ///エメラルド @@ -27482,7 +27502,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///사파이어 ///루비 ///에메랄드 @@ -27529,7 +27549,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///蓝宝石 ///红宝石 ///绿宝石 @@ -27576,7 +27596,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a irgendwo + /// Looks up a localized string similar to irgendwo ///in der ersten Stadt ///in [VAR GENDBR(00FF,0506,0000)]dessenderen Zuhause ///im Zuhause eines Freundes @@ -27597,7 +27617,7 @@ public class Resources { ///in einer Stadt an einem Abhang ///in einer prachtvollen Stadt ///in einer Pokémon-Arena - ///in [resto de la cadena truncado]";. + ///in [rest of string was truncated]";. /// public static string text_genloc_de { get { @@ -27606,7 +27626,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a somewhere + /// Looks up a localized string similar to somewhere ///the first town ///home ///a friend’s house @@ -27640,7 +27660,7 @@ public class Resources { ///a restaurant ///a high-class restaurant ///a seaside city - ///the inside of a tall bu [resto de la cadena truncado]";. + ///the inside of a tall bu [rest of string was truncated]";. /// public static string text_genloc_en { get { @@ -27649,7 +27669,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a algún lugar + /// Looks up a localized string similar to algún lugar ///el pueblo de partida ///casa ///casa de un amigo @@ -27678,7 +27698,7 @@ public class Resources { ///un museo ///un estudio de grabación ///una estación - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_genloc_es { get { @@ -27687,7 +27707,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a quelque part + /// Looks up a localized string similar to quelque part ///dans la ville de départ ///dans sa maison ///chez un ami @@ -27710,7 +27730,7 @@ public class Resources { ///dans une Arène Pokémon ///dans une école ///dans une ville immense - ///dans un imm [resto de la cadena truncado]";. + ///dans un imm [rest of string was truncated]";. /// public static string text_genloc_fr { get { @@ -27719,7 +27739,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a da qualche parte + /// Looks up a localized string similar to da qualche parte ///nella città iniziale ///a casa ///a casa di amici @@ -27744,7 +27764,7 @@ public class Resources { ///in una grande città ///in un edificio ///in un caffè elegante - ///in un c [resto de la cadena truncado]";. + ///in un c [rest of string was truncated]";. /// public static string text_genloc_it { get { @@ -27753,7 +27773,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a どこか + /// Looks up a localized string similar to どこか ///さいしょのまち ///うち ///ともだちのいえ @@ -27816,7 +27836,7 @@ public class Resources { ///すいどう ///サファリ ///ひみつきち - ///コンテストライブかい [resto de la cadena truncado]";. + ///コンテストライブかい [rest of string was truncated]";. /// public static string text_genloc_ja { get { @@ -27825,7 +27845,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 어딘가 + /// Looks up a localized string similar to 어딘가 ///최초의 마을 ///집 ///친구의 집 @@ -27904,7 +27924,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 某处 + /// Looks up a localized string similar to 某处 ///第一个城镇 ///家 ///朋友的家 @@ -27983,7 +28003,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///New Bark Town ///Route 29 ///Cherrygrove City @@ -28028,7 +28048,7 @@ public class Resources { ///Dragon's Den ///Route 45 ///Dark Cave - ///Rout [resto de la cadena truncado]";. + ///Rout [rest of string was truncated]";. /// public static string text_gsc_00000_en { get { @@ -28037,7 +28057,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (Ninguno) + /// Looks up a localized string similar to (Ninguno) ///Pueblo Primavera ///Ruta 29 ///Ciudad Cerezo @@ -28082,7 +28102,7 @@ public class Resources { ///Guarida Dragón ///Ruta 45 ///Cueva Oscura - ///Rut [resto de la cadena truncado]";. + ///Rut [rest of string was truncated]";. /// public static string text_gsc_00000_es { get { @@ -28091,7 +28111,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///若叶镇 ///29号道路 ///吉花市 @@ -28212,7 +28232,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_gsc_00000_zh { get { @@ -28221,7 +28241,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Mysteriöser Ort + /// Looks up a localized string similar to Mysteriöser Ort ///Zweiblattdorf ///Sandgemme ///Flori @@ -28267,7 +28287,7 @@ public class Resources { ///Route 228 ///Route 229 ///Route 230 - ///Erze [resto de la cadena truncado]";. + ///Erze [rest of string was truncated]";. /// public static string text_hgss_00000_de { get { @@ -28276,7 +28296,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Mystery Zone + /// Looks up a localized string similar to Mystery Zone ///Twinleaf Town ///Sandgem Town ///Floaroma Town @@ -28316,7 +28336,7 @@ public class Resources { ///Route 222 ///Route 223 ///Route 224 - ///Route 2 [resto de la cadena truncado]";. + ///Route 2 [rest of string was truncated]";. /// public static string text_hgss_00000_en { get { @@ -28325,7 +28345,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lugar misterioso + /// Looks up a localized string similar to Lugar misterioso ///Pueblo Hojaverde ///Pueblo Arena ///Pueblo Aromaflor @@ -28366,7 +28386,7 @@ public class Resources { ///Ruta 223 ///Ruta 224 ///Ruta 225 - ///Rut [resto de la cadena truncado]";. + ///Rut [rest of string was truncated]";. /// public static string text_hgss_00000_es { get { @@ -28375,7 +28395,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Endroit mystér. + /// Looks up a localized string similar to Endroit mystér. ///Bonaugure ///Littorella ///Floraville @@ -28420,7 +28440,7 @@ public class Resources { ///Route 227 ///Route 228 ///Route 229 - ///Chenal [resto de la cadena truncado]";. + ///Chenal [rest of string was truncated]";. /// public static string text_hgss_00000_fr { get { @@ -28429,7 +28449,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Zona Misteriosa + /// Looks up a localized string similar to Zona Misteriosa ///Duefoglie ///Sabbiafine ///Giardinfiorito @@ -28468,7 +28488,7 @@ public class Resources { ///Percorso 221 ///Percorso 222 ///Percorso 223 - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_hgss_00000_it { get { @@ -28477,7 +28497,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---- + /// Looks up a localized string similar to ---- ///フタバタウン ///マサゴタウン ///ソノオタウン @@ -28531,7 +28551,7 @@ public class Resources { ///やりのはしら ///だいしつげん ///ズイのいせき - ///チャンピ [resto de la cadena truncado]";. + ///チャンピ [rest of string was truncated]";. /// public static string text_hgss_00000_ja { get { @@ -28540,7 +28560,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 수수께끼의 장소 + /// Looks up a localized string similar to 수수께끼의 장소 ///떡잎마을 ///잔모래마을 ///꽃향기마을 @@ -28610,7 +28630,7 @@ public class Resources { ///마니아터널 ///자랑의 뒷마당 ///갖철섬 - ///숲의 양옥집 /// [resto de la cadena truncado]";. + ///숲의 양옥집 /// [rest of string was truncated]";. /// public static string text_hgss_00000_ko { get { @@ -28619,7 +28639,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---- + /// Looks up a localized string similar to ---- ///双叶镇 ///真砂镇 ///苑之镇 @@ -28696,7 +28716,7 @@ public class Resources { ///睿智湖畔 ///隐泉之路 ///心齐湖 - ///立志湖 /// [resto de la cadena truncado]";. + ///立志湖 /// [rest of string was truncated]";. /// public static string text_hgss_00000_zh { get { @@ -28705,7 +28725,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Betreuerpärchen + /// Looks up a localized string similar to Betreuerpärchen ///Linktausch ///Linktausch ///Kanto @@ -28728,7 +28748,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Day-Care Couple + /// Looks up a localized string similar to Day-Care Couple ///Link trade ///Link trade ///Kanto @@ -28751,7 +28771,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Pareja guardería + /// Looks up a localized string similar to Pareja guardería ///Intercambio ///Intercambio ///Kanto @@ -28774,7 +28794,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Couple Pension + /// Looks up a localized string similar to Couple Pension ///Echange Link ///Echange Link ///Kanto @@ -28797,7 +28817,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Coppia Pensione + /// Looks up a localized string similar to Coppia Pensione ///Scambio in link ///Scambio in link ///Kanto @@ -28820,7 +28840,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a そだてやふうふ + /// Looks up a localized string similar to そだてやふうふ ///つうしんこうかん ///つうしんこうかん ///カント-ちほう @@ -28843,7 +28863,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 키우미집부부 + /// Looks up a localized string similar to 키우미집부부 ///통신교환 ///통신교환 ///관동지방 @@ -28866,7 +28886,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 饲育屋夫妇 + /// Looks up a localized string similar to 饲育屋夫妇 ///连接交换 ///连接交换 ///关都地区 @@ -28889,7 +28909,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Idyll + /// Looks up a localized string similar to Idyll ///Pokémon Ranger ///Entfernter Ort ///Pokémon Movie @@ -28920,7 +28940,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon Festa [resto de la cadena truncado]";. + ///Pokémon Festa [rest of string was truncated]";. /// public static string text_hgss_03000_de { get { @@ -28929,7 +28949,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lovely place + /// Looks up a localized string similar to Lovely place ///Pokémon Ranger ///Faraway place ///Pokémon Movie @@ -28959,7 +28979,7 @@ public class Resources { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Festa 0 [resto de la cadena truncado]";. + ///Pokémon Festa 0 [rest of string was truncated]";. /// public static string text_hgss_03000_en { get { @@ -28968,7 +28988,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Pokémon Ranger ///Lugar lejano ///Película Pokémon @@ -28998,7 +29018,7 @@ public class Resources { ///Space World 16 ///Pokémon Festa ///Pokémon Festa 06 - ///Pokémon Fe [resto de la cadena truncado]";. + ///Pokémon Fe [rest of string was truncated]";. /// public static string text_hgss_03000_es { get { @@ -29007,7 +29027,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Pokémon Ranger ///Endroit lointain ///Film Pokémon @@ -29038,7 +29058,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Po [resto de la cadena truncado]";. + ///Po [rest of string was truncated]";. /// public static string text_hgss_03000_fr { get { @@ -29047,7 +29067,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Luogo grazioso + /// Looks up a localized string similar to Luogo grazioso ///Pokémon Ranger ///Luogo Remoto ///Film Pokémon @@ -29078,7 +29098,7 @@ public class Resources { ///Pokémon Festa ///Pokémon Festa 06 ///Pokémon Festa 07 - ///Pokémon [resto de la cadena truncado]";. + ///Pokémon [rest of string was truncated]";. /// public static string text_hgss_03000_it { get { @@ -29087,7 +29107,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///ポケモンレンジャ- ///とおいばしょ ///ポケモンえいが @@ -29134,7 +29154,7 @@ public class Resources { ///ポケパ-ク09 ///ポケパ-ク10 ///ポケパ-ク11 - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_hgss_03000_ja { get { @@ -29143,7 +29163,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///다른 지방 ///먼 곳 ///포켓몬영화 @@ -29201,7 +29221,7 @@ public class Resources { ///PC후쿠오카 ///PC나고야 ///PC삿포로 - ///PC요코하 [resto de la cadena truncado]";. + ///PC요코하 [rest of string was truncated]";. /// public static string text_hgss_03000_ko { get { @@ -29210,7 +29230,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 美丽的地方 + /// Looks up a localized string similar to 美丽的地方 ///宝可梦保育家 ///遥远的地方 ///宝可梦电影 @@ -29273,7 +29293,7 @@ public class Resources { ///宝可梦活动 ///宝可梦活动06 ///宝可梦活动07 - ///宝可梦活动08 [resto de la cadena truncado]";. + ///宝可梦活动08 [rest of string was truncated]";. /// public static string text_hgss_03000_zh { get { @@ -29282,7 +29302,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Kein Item + /// Looks up a localized string similar to Kein Item ///Meisterball ///Hyperball ///Superball @@ -29327,7 +29347,7 @@ public class Resources { ///Lavakeks ///Beerensaft ///Zauberasche - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_items_de { get { @@ -29336,7 +29356,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Kein Item + /// Looks up a localized string similar to Kein Item ///Meisterball ///Hyperball ///Superball @@ -29381,7 +29401,7 @@ public class Resources { ///Lavakeks ///Beerensaft ///Zauberasche - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_Items_de1 { get { @@ -29390,7 +29410,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a None + /// Looks up a localized string similar to None ///Master Ball ///Ultra Ball ///Great Ball @@ -29433,7 +29453,7 @@ public class Resources { ///Elixir ///Max Elixir ///Lava Cookie - ///Berry Juice [resto de la cadena truncado]";. + ///Berry Juice [rest of string was truncated]";. /// public static string text_items_en { get { @@ -29442,7 +29462,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ninguno + /// Looks up a localized string similar to Ninguno ///Master Ball ///Ultra Ball ///Super Ball @@ -29483,7 +29503,7 @@ public class Resources { ///Éter ///Éter Máximo ///Elixir - ///Elixir Máximo /// [resto de la cadena truncado]";. + ///Elixir Máximo /// [rest of string was truncated]";. /// public static string text_items_es { get { @@ -29492,7 +29512,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Aucun objet + /// Looks up a localized string similar to Aucun objet ///Master Ball ///Hyper Ball ///Super Ball @@ -29535,7 +29555,7 @@ public class Resources { ///Élixir ///Max Élixir ///Lava Cookie - ///Jus de Baie [resto de la cadena truncado]";. + ///Jus de Baie [rest of string was truncated]";. /// public static string text_items_fr { get { @@ -29544,7 +29564,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Niente + /// Looks up a localized string similar to Niente ///Master Ball ///Ultra Ball ///Mega Ball @@ -29587,7 +29607,7 @@ public class Resources { ///Elisir ///Elisir Max ///Lavottino - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_items_it { get { @@ -29596,7 +29616,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a なし + /// Looks up a localized string similar to なし ///マスターボール ///ハイパーボール ///スーパーボール @@ -29655,7 +29675,7 @@ public class Resources { ///クリティカット ///プラスパワー ///ディフェンダー - ///スピーダー /// [resto de la cadena truncado]";. + ///スピーダー /// [rest of string was truncated]";. /// public static string text_items_ja { get { @@ -29664,7 +29684,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 없음 + /// Looks up a localized string similar to 없음 ///마스터볼 ///하이퍼볼 ///수퍼볼 @@ -29743,7 +29763,7 @@ public class Resources { ///실버스프레이 ///골드스프레이 ///동굴탈출로프 - ///벌레회피스프레이 /// [resto de la cadena truncado]";. + ///벌레회피스프레이 /// [rest of string was truncated]";. /// public static string text_items_ko { get { @@ -29752,7 +29772,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 无 + /// Looks up a localized string similar to 无 ///大师球 ///高级球 ///超级球 @@ -29840,7 +29860,7 @@ public class Resources { ///叶之石 ///小蘑菇 ///大蘑菇 - ///珍珠 [resto de la cadena truncado]";. + ///珍珠 [rest of string was truncated]";. /// public static string text_items_zh { get { @@ -29849,7 +29869,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -29897,7 +29917,7 @@ public class Resources { ///Bike Voucher ///X Accuracy ///Leaf Stone - ///Card Ke [resto de la cadena truncado]";. + ///Card Ke [rest of string was truncated]";. /// public static string text_ItemsG1_en { get { @@ -29906,7 +29926,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ningún + /// Looks up a localized string similar to Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -29950,7 +29970,7 @@ public class Resources { ///Fósil domo ///Fósil hélix ///Llave secreta - ///? [resto de la cadena truncado]";. + ///? [rest of string was truncated]";. /// public static string text_ItemsG1_es { get { @@ -29959,7 +29979,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (无) + /// Looks up a localized string similar to (无) ///大师球 ///高级球 ///超级球 @@ -30132,7 +30152,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_ItemsG1_zh { get { @@ -30141,7 +30161,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Master Ball ///Ultra Ball ///BrightPowder @@ -30186,7 +30206,7 @@ public class Resources { ///Super Repel ///Max Repel ///Dire Hit - ///Ter [resto de la cadena truncado]";. + ///Ter [rest of string was truncated]";. /// public static string text_ItemsG2_en { get { @@ -30195,7 +30215,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ningún + /// Looks up a localized string similar to Ningún ///Master Ball ///Ultra Ball ///Polvo brillo @@ -30236,7 +30256,7 @@ public class Resources { ///Cura Total ///Revivir ///Revivir Máximo - ///Prote [resto de la cadena truncado]";. + ///Prote [rest of string was truncated]";. /// public static string text_ItemsG2_es { get { @@ -30245,7 +30265,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (无) + /// Looks up a localized string similar to (无) ///大师球 ///高级球 ///光粉 @@ -30329,7 +30349,7 @@ public class Resources { ///毒针 ///王者之证 ///苦涩的果实 - ///薄荷的果 [resto de la cadena truncado]";. + ///薄荷的果 [rest of string was truncated]";. /// public static string text_ItemsG2_zh { get { @@ -30338,7 +30358,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (None) + /// Looks up a localized string similar to (None) ///Master Ball ///Ultra Ball ///Great Ball @@ -30385,7 +30405,7 @@ public class Resources { ///Berry Juice ///Sacred Ash ///Shoal Salt - ///Shoal S [resto de la cadena truncado]";. + ///Shoal S [rest of string was truncated]";. /// public static string text_ItemsG3_en { get { @@ -30394,7 +30414,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ningún + /// Looks up a localized string similar to Ningún ///Master Ball ///Ultra Ball ///Super Ball @@ -30438,7 +30458,7 @@ public class Resources { ///Flauta Roja ///Flauta Negra ///Flauta Blanca - ///Zumo d [resto de la cadena truncado]";. + ///Zumo d [rest of string was truncated]";. /// public static string text_ItemsG3_es { get { @@ -30447,7 +30467,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a (无) + /// Looks up a localized string similar to (无) ///大师球 ///高级球 ///超级球 @@ -30557,7 +30577,7 @@ public class Resources { ///大珍珠 ///星星沙子 ///星星碎片 - ///金 [resto de la cadena truncado]";. + ///金 [rest of string was truncated]";. /// public static string text_ItemsG3_zh { get { @@ -30566,7 +30586,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Jail Key + /// Looks up a localized string similar to Jail Key ///Elevator Key ///Small Tablet ///F-Disk @@ -30613,7 +30633,7 @@ public class Resources { ///Excite Scent ///Vivid Scent ///Powerup Part - ///Ein [resto de la cadena truncado]";. + ///Ein [rest of string was truncated]";. /// public static string text_ItemsG3Colosseum_en { get { @@ -30622,7 +30642,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Safe Key + /// Looks up a localized string similar to Safe Key ///Elevator Key ///Bonsly Card ///Machine Part @@ -30665,7 +30685,7 @@ public class Resources { ///Battle CD 07 ///Battle CD 08 ///Battle CD 09 - ///Battle CD 1 [resto de la cadena truncado]";. + ///Battle CD 1 [rest of string was truncated]";. /// public static string text_ItemsG3XD_en { get { @@ -30674,7 +30694,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///Es erinnert sich daran, ///Es erinnert sich daran, @@ -30694,7 +30714,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 [resto de la cadena truncado]";. + ///wie wohl es si [rest of string was truncated]";. /// public static string text_memories_de { get { @@ -30703,7 +30723,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///The Pokémon remembers ///The Pokémon remembers @@ -30729,7 +30749,7 @@ public class Resources { ///it felt sorry ///it got emotional ///it felt nostalgic - ///it had some diffi [resto de la cadena truncado]";. + ///it had some diffi [rest of string was truncated]";. /// public static string text_memories_en { get { @@ -30738,7 +30758,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///El Pokémon recuerda muy vagamente ///El Pokémon recuerda vagamente @@ -30757,7 +30777,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 [resto de la cadena truncado]";. + ///lo nervioso que se pu [rest of string was truncated]";. /// public static string text_memories_es { get { @@ -30766,7 +30786,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///se souvient vaguement que ///se souvient vaguement que @@ -30789,7 +30809,7 @@ public class Resources { ///c’était apaisant ///ça chatouillait ///ça ne lui a laissé aucun regret - ///ça lui a laissé un [resto de la cadena truncado]";. + ///ça lui a laissé un [rest of string was truncated]";. /// public static string text_memories_fr { get { @@ -30798,7 +30818,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///Il Pokémon ricorda ancora ///Il Pokémon ricorda ancora @@ -30821,7 +30841,7 @@ public class Resources { ///quella bella sensazione ///che non riusciva a star fermo ///il suo entusiasmo - ///il suo dispiacere [resto de la cadena truncado]";. + ///il suo dispiacere [rest of string was truncated]";. /// public static string text_memories_it { get { @@ -30830,7 +30850,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///おもいで らしいわ ///おもいで らしいわ @@ -30870,7 +30890,7 @@ public class Resources { ///だれか ///いい おもいでが あるようだけど ちょっと おもいおこせないみたい…… ///{0}は {1}に {2}で であい  モンスターボールを なげられて いっしょに たびする ことになり  {3}ことが {4} - ///{0}は {2}で  タマゴの からをやぶって [resto de la cadena truncado]";. + ///{0}は {2}で  タマゴの からをやぶって [rest of string was truncated]";. /// public static string text_memories_ja { get { @@ -30879,7 +30899,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///추억인 것 같아 ///추억인 것 같아 @@ -30920,7 +30940,7 @@ public class Resources { ///좋은 추억이 있는 것 같은데 기억이 잘 떠오르지 않는 것 같아... ///{0} {1} {2}에서 만나 몬스터볼에 들어가게 되고 함께 여행하게 되어 {3} 게 {4} ///{0} {2}에서 알의 껍데기를 깨고 나왔을 때 처음 {1} 만나서 {3} 게 {4} - ///{0} {1} {2}에 [resto de la cadena truncado]";. + ///{0} {1} {2}에 [rest of string was truncated]";. /// public static string text_memories_ko { get { @@ -30929,7 +30949,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to /// ///宝可梦记得 ///宝可梦记得 @@ -30974,7 +30994,7 @@ public class Resources { ///{0}在{2}通过通讯交换遇见了{1},他们随后成了朋友。 ///{0}和{1}一起去了宝可梦中心/友好商店,购买了{2}。 ///{0}和{1}一起去了{2}的宝可梦中心并且恢复了它疲惫的身体。 - ///{0}和{1}一起垂钓,之 [resto de la cadena truncado]";. + ///{0}和{1}一起垂钓,之 [rest of string was truncated]";. /// public static string text_memories_zh { get { @@ -30983,7 +31003,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ----- + /// Looks up a localized string similar to ----- ///Pfund ///Karateschlag ///Duplexhieb @@ -31029,7 +31049,7 @@ public class Resources { ///Silberblick ///Biss ///Heuler - ///Brül [resto de la cadena truncado]";. + ///Brül [rest of string was truncated]";. /// public static string text_moves_de { get { @@ -31038,7 +31058,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ——— + /// Looks up a localized string similar to ——— ///Pound ///Karate Chop ///Double Slap @@ -31088,7 +31108,7 @@ public class Resources { ///Sing ///Supersonic ///Sonic Boom - ///Dis [resto de la cadena truncado]";. + ///Dis [rest of string was truncated]";. /// public static string text_moves_en { get { @@ -31097,7 +31117,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - ///Destructor ///Golpe Kárate ///Doble Bofetón @@ -31142,7 +31162,7 @@ public class Resources { ///Pin Misil ///Malicioso ///Mordisco - ///Gr [resto de la cadena truncado]";. + ///Gr [rest of string was truncated]";. /// public static string text_moves_es { get { @@ -31151,7 +31171,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///Écras’Face ///Poing-Karaté ///Torgnoles @@ -31196,7 +31216,7 @@ public class Resources { ///Dard-Nuée ///Groz’Yeux ///Morsure - ///Rugissement /// [resto de la cadena truncado]";. + ///Rugissement /// [rest of string was truncated]";. /// public static string text_moves_fr { get { @@ -31205,7 +31225,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ----- + /// Looks up a localized string similar to ----- ///Botta ///Colpokarate ///Doppiasberla @@ -31251,7 +31271,7 @@ public class Resources { ///Fulmisguardo ///Morso ///Ruggito - ///B [resto de la cadena truncado]";. + ///B [rest of string was truncated]";. /// public static string text_moves_it { get { @@ -31260,7 +31280,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///はたく ///からてチョップ ///おうふくビンタ @@ -31329,7 +31349,7 @@ public class Resources { ///じごくぐるま ///けたぐり ///カウンター - ///ちきゅうなげ /// [resto de la cadena truncado]";. + ///ちきゅうなげ /// [rest of string was truncated]";. /// public static string text_moves_ja { get { @@ -31338,7 +31358,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///막치기 ///태권당수 ///연속뺨치기 @@ -31425,7 +31445,7 @@ public class Resources { ///전기쇼크 ///10만볼트 ///전기자석파 - ///번개 /// [resto de la cadena truncado]";. + ///번개 /// [rest of string was truncated]";. /// public static string text_moves_ko { get { @@ -31434,7 +31454,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ――――― + /// Looks up a localized string similar to ――――― ///拍击 ///空手劈 ///连环巴掌 @@ -31540,7 +31560,7 @@ public class Resources { ///刺耳声 ///影子分身 ///自我再生 - ///变硬 /// [resto de la cadena truncado]";. + ///变硬 /// [rest of string was truncated]";. /// public static string text_moves_zh { get { @@ -31549,7 +31569,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Robust + /// Looks up a localized string similar to Robust ///Solo ///Mutig ///Hart @@ -31582,7 +31602,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Hardy + /// Looks up a localized string similar to Hardy ///Lonely ///Brave ///Adamant @@ -31615,7 +31635,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Fuerte + /// Looks up a localized string similar to Fuerte ///Huraña ///Audaz ///Firme @@ -31648,7 +31668,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Hardi + /// Looks up a localized string similar to Hardi ///Solo ///Brave ///Rigide @@ -31681,7 +31701,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ardita + /// Looks up a localized string similar to Ardita ///Schiva ///Audace ///Decisa @@ -31714,7 +31734,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a がんばりや + /// Looks up a localized string similar to がんばりや ///さみしがり ///ゆうかん ///いじっぱり @@ -31747,7 +31767,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 노력 + /// Looks up a localized string similar to 노력 ///외로움 ///용감 ///고집 @@ -31780,7 +31800,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 勤奋 + /// Looks up a localized string similar to 勤奋 ///怕寂寞 ///勇敢 ///固执 @@ -31813,7 +31833,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Pokériegelbox + /// Looks up a localized string similar to Pokériegelbox ///Beerenmixer ///Pokériegel geben ///Geben @@ -31832,7 +31852,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 [resto de la cadena truncado]";. + ///Willst du [VAR PK [rest of string was truncated]";. /// public static string text_pokeblock_de { get { @@ -31841,7 +31861,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Pokéblock Case + /// Looks up a localized string similar to Pokéblock Case ///Berry Blender ///Give a Pokéblock ///Give @@ -31861,7 +31881,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 [resto de la cadena truncado]";. + ///An Egg can’t ea [rest of string was truncated]";. /// public static string text_pokeblock_en { get { @@ -31870,7 +31890,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Tubo Pokécubos + /// Looks up a localized string similar to Tubo Pokécubos ///Licuabayas ///Dar un Pokécubo ///Dar @@ -31890,7 +31910,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 [resto de la cadena truncado]";. + ///¡Los Huev [rest of string was truncated]";. /// public static string text_pokeblock_es { get { @@ -31899,7 +31919,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Boîte Pokéblocs + /// Looks up a localized string similar to Boîte Pokéblocs ///Mixeur à Baies ///Donner un Pokébloc ///Donner @@ -31919,7 +31939,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 [resto de la cadena truncado]";. + ///Un Œuf [rest of string was truncated]";. /// public static string text_pokeblock_fr { get { @@ -31928,7 +31948,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Portapokémelle + /// Looks up a localized string similar to Portapokémelle ///Mixer bacche ///Dai una Pokémella ///Dai @@ -31948,7 +31968,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 [resto de la cadena truncado]";. + ///Un Uovo non può mangiare Pokémelle [rest of string was truncated]";. /// public static string text_pokeblock_it { get { @@ -31957,7 +31977,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ポロックケース + /// Looks up a localized string similar to ポロックケース ///きのみブレンダー ///ポロックを あげる ///あげる @@ -31988,7 +32008,7 @@ public class Resources { ///ブレンドスタート ///きのみを もどす ///ポケモンにあげる - ///やめる [resto de la cadena truncado]";. + ///やめる [rest of string was truncated]";. /// public static string text_pokeblock_ja { get { @@ -31997,7 +32017,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 포켓몬스넥케이스 + /// Looks up a localized string similar to 포켓몬스넥케이스 ///나무열매블렌더 ///포켓몬스넥을 준다 ///준다 @@ -32027,7 +32047,7 @@ public class Resources { ///노랑으로 추려냈습니다 ///블렌드 스타트 ///되돌려 둔다 - ///포켓몬에게 준 [resto de la cadena truncado]";. + ///포켓몬에게 준 [rest of string was truncated]";. /// public static string text_pokeblock_ko { get { @@ -32036,7 +32056,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 宝可方块盒 + /// Looks up a localized string similar to 宝可方块盒 ///树果混合器 ///给与一个宝可方块 ///给与 @@ -32087,7 +32107,7 @@ public class Resources { ///[~ 48] ///[~ 49] ///[~ 50] - ///[VAR 01A3(0000)] /// [resto de la cadena truncado]";. + ///[VAR 01A3(0000)] /// [rest of string was truncated]";. /// public static string text_pokeblock_zh { get { @@ -32096,7 +32116,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Zucker-Pofflé + /// Looks up a localized string similar to Zucker-Pofflé ///Minz-Pofflé ///Zitrus-Pofflé ///Bitter-Pofflé @@ -32121,7 +32141,7 @@ public class Resources { ///Frühlingsdeko-Pofflé ///Sommerdeko-Pofflé ///Herbstdeko-Pofflé - ///Winterdeko [resto de la cadena truncado]";. + ///Winterdeko [rest of string was truncated]";. /// public static string text_puff_de { get { @@ -32130,7 +32150,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Sweet Poké Puff + /// Looks up a localized string similar to Sweet Poké Puff ///Mint Poké Puff ///Citrus Poké Puff ///Mocha Poké Puff @@ -32152,7 +32172,7 @@ public class Resources { ///Deluxe Spice Poké Puff ///Supreme Wish Poké Puff ///Supreme Honor Poké Puff - ///Supreme Spring Pok [resto de la cadena truncado]";. + ///Supreme Spring Pok [rest of string was truncated]";. /// public static string text_puff_en { get { @@ -32161,7 +32181,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Pokélito Dulce + /// Looks up a localized string similar to Pokélito Dulce ///Pokélito Menta ///Pokélito Ácido ///Pokélito Amargo @@ -32184,7 +32204,7 @@ public class Resources { ///Pokélito de Cumpleaños ///Pokélito de Celebración ///Pokélito Primaveral - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_puff_es { get { @@ -32193,7 +32213,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Pofiterole Sucrée + /// Looks up a localized string similar to Pofiterole Sucrée ///Pofiterole Mentholée ///Pofiterole Aigre ///Pofiterole Amère @@ -32213,7 +32233,7 @@ public class Resources { ///Pofiterole Deluxe Aigre ///Pofiterole Deluxe Amère ///Pofiterole Deluxe Épicée - ///Pofiterole Anniversaire [resto de la cadena truncado]";. + ///Pofiterole Anniversaire [rest of string was truncated]";. /// public static string text_puff_fr { get { @@ -32222,7 +32242,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Pokébignè dolce + /// Looks up a localized string similar to Pokébignè dolce ///Pokébignè fresco ///Pokébignè agro ///Pokébignè amaro @@ -32244,7 +32264,7 @@ public class Resources { ///Pokéb. speziato deluxe ///Pokébignè di compleanno ///Pokébignè celebrativo - ///Pokébignè p [resto de la cadena truncado]";. + ///Pokébignè p [rest of string was truncated]";. /// public static string text_puff_it { get { @@ -32253,7 +32273,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a スイートポフレ + /// Looks up a localized string similar to スイートポフレ ///フレッシュポフレ ///サワーポフレ ///ビターポフレ @@ -32287,7 +32307,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 스위트포플레 + /// Looks up a localized string similar to 스위트포플레 ///프레시포플레 ///사워포플레 ///비터포플레 @@ -32321,7 +32341,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 甘甜泡芙 + /// Looks up a localized string similar to 甘甜泡芙 ///清新泡芙 ///酸涩泡芙 ///苦甜泡芙 @@ -32355,7 +32375,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Littleroot Town + /// Looks up a localized string similar to Littleroot Town ///Oldale Town ///Dewford Town ///Lavaridge Town @@ -32398,7 +32418,7 @@ public class Resources { ///Route 125 ///Route 126 ///Route 127 - ///Route 1 [resto de la cadena truncado]";. + ///Route 1 [rest of string was truncated]";. /// public static string text_rsefrlg_00000_en { get { @@ -32407,7 +32427,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Villa Raíz + /// Looks up a localized string similar to Villa Raíz ///Pueblo Escaso ///Pueblo Azuliza ///Pueblo Lavacalda @@ -32453,7 +32473,7 @@ public class Resources { ///Ruta 128 ///Ruta 129 ///Ruta 130 - ///Ruta [resto de la cadena truncado]";. + ///Ruta [rest of string was truncated]";. /// public static string text_rsefrlg_00000_es { get { @@ -32462,7 +32482,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 未白镇 + /// Looks up a localized string similar to 未白镇 ///古辰镇 ///武斗镇 ///釜炎镇 @@ -32539,7 +32559,7 @@ public class Resources { ///热焰小径 ///热焰小径 (2) ///凹凸山道 - ///凹 [resto de la cadena truncado]";. + ///凹 [rest of string was truncated]";. /// public static string text_rsefrlg_00000_zh { get { @@ -32548,7 +32568,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Mysteriöser Ort /// @@ -32596,7 +32616,7 @@ public class Resources { /// ///Vegetationshöhle ///Prüfungsbereich - ///Vegetati [resto de la cadena truncado]";. + ///Vegetati [rest of string was truncated]";. /// public static string text_sm_00000_de { get { @@ -32605,7 +32625,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a —————— + /// Looks up a localized string similar to —————— /// ///Mystery Zone /// @@ -32657,7 +32677,7 @@ public class Resources { ///Totem’s Den ///Route 4 /// - ///Rou [resto de la cadena truncado]";. + ///Rou [rest of string was truncated]";. /// public static string text_sm_00000_en { get { @@ -32666,7 +32686,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - /// ///Lugar misterioso /// @@ -32714,7 +32734,7 @@ public class Resources { /// ///Cueva Sotobosque ///Sala de la Prueba - ///Cueva [resto de la cadena truncado]";. + ///Cueva [rest of string was truncated]";. /// public static string text_sm_00000_es { get { @@ -32723,7 +32743,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Endroit mystérieux /// @@ -32771,7 +32791,7 @@ public class Resources { /// ///Grotte Verdoyante ///Zone de l’Épreuve - ///Grotte Verdoyant [resto de la cadena truncado]";. + ///Grotte Verdoyant [rest of string was truncated]";. /// public static string text_sm_00000_fr { get { @@ -32780,7 +32800,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Zona misteriosa /// @@ -32827,7 +32847,7 @@ public class Resources { ///Orto delle Bacche /// ///Grotta Sottobosco - ///Luogo dell [resto de la cadena truncado]";. + ///Luogo dell [rest of string was truncated]";. /// public static string text_sm_00000_it { get { @@ -32836,7 +32856,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///なぞのばしょ /// @@ -32918,7 +32938,7 @@ public class Resources { /// ///[~ 80] /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_sm_00000_ja { get { @@ -32927,7 +32947,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///수수께끼의 장소 /// @@ -33021,7 +33041,7 @@ public class Resources { /// ///생명의 유적 /// - ///아칼라외 [resto de la cadena truncado]";. + ///아칼라외 [rest of string was truncated]";. /// public static string text_sm_00000_ko { get { @@ -33030,7 +33050,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///神秘的地方 /// @@ -33134,7 +33154,7 @@ public class Resources { /// ///豪诺豪诺度假地 /// - ///皇家巨蛋 [resto de la cadena truncado]";. + ///皇家巨蛋 [rest of string was truncated]";. /// public static string text_sm_00000_zh { get { @@ -33143,7 +33163,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Link-Tausch + /// Looks up a localized string similar to Link-Tausch ///Link-Tausch ///Kanto-Region ///Johto-Region @@ -33167,7 +33187,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a a Link Trade + /// Looks up a localized string similar to a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -33191,7 +33211,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Intercambio en conexión + /// Looks up a localized string similar to Intercambio en conexión ///Intercambio en conexión ///Kanto ///Johto @@ -33215,7 +33235,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Échanges Link + /// Looks up a localized string similar to Échanges Link ///Échanges Link ///Kanto ///Johto @@ -33239,7 +33259,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Scambio in link + /// Looks up a localized string similar to Scambio in link ///Scambio in link ///Kanto ///Johto @@ -33263,7 +33283,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a つうしんこうかん + /// Looks up a localized string similar to つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -33287,7 +33307,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 통신교환 + /// Looks up a localized string similar to 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -33311,7 +33331,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 连接交换 + /// Looks up a localized string similar to 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -33335,7 +33355,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Netter Ort + /// Looks up a localized string similar to Netter Ort ///Ferner Ort ///Pokémon-Film ///Pokémon-Film 2016 @@ -33361,7 +33381,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS 2018 [resto de la cadena truncado]";. + ///WCS 2018 [rest of string was truncated]";. /// public static string text_sm_40000_de { get { @@ -33370,7 +33390,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a a lovely place + /// Looks up a localized string similar to a lovely place ///a faraway place ///a Pokémon movie ///2016 Pokémon Movie @@ -33394,7 +33414,7 @@ public class Resources { ///Pokémon Ctr. SKYTREE TOWN ///a Pokémon Store ///a WCS - ///WCS 20 [resto de la cadena truncado]";. + ///WCS 20 [rest of string was truncated]";. /// public static string text_sm_40000_en { get { @@ -33403,7 +33423,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2016 @@ -33425,7 +33445,7 @@ public class Resources { ///Pokémon Center Hiroshima ///Pokémon Center Kyoto ///Pokémon Ctr. SKYTREE TOWN - ///Pokémon Store [resto de la cadena truncado]";. + ///Pokémon Store [rest of string was truncated]";. /// public static string text_sm_40000_es { get { @@ -33434,7 +33454,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2016 @@ -33460,7 +33480,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WC [resto de la cadena truncado]";. + ///WC [rest of string was truncated]";. /// public static string text_sm_40000_fr { get { @@ -33469,7 +33489,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Luogo grazioso + /// Looks up a localized string similar to Luogo grazioso ///Luogo remoto ///Film Pokémon ///Film Pokémon 2016 @@ -33495,7 +33515,7 @@ public class Resources { ///WCS ///WCS 2016 ///WCS 2017 - ///WCS [resto de la cadena truncado]";. + ///WCS [rest of string was truncated]";. /// public static string text_sm_40000_it { get { @@ -33504,7 +33524,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが16 @@ -33558,7 +33578,7 @@ public class Resources { ///PGL ///ポケモンイベント16 ///ポケモンイベント17 - ///ポケモ [resto de la cadena truncado]";. + ///ポケモ [rest of string was truncated]";. /// public static string text_sm_40000_ja { get { @@ -33567,7 +33587,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화16 @@ -33623,7 +33643,7 @@ public class Resources { ///포켓몬이벤트17 ///포켓몬이벤트18 ///포켓몬이벤트19 - ///포켓몬이벤 [resto de la cadena truncado]";. + ///포켓몬이벤 [rest of string was truncated]";. /// public static string text_sm_40000_ko { get { @@ -33632,7 +33652,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 美丽的地方 + /// Looks up a localized string similar to 美丽的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影16 @@ -33694,7 +33714,7 @@ public class Resources { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可梦庆典19 [resto de la cadena truncado]";. + ///宝可梦庆典19 [rest of string was truncated]";. /// public static string text_sm_40000_zh { get { @@ -33703,7 +33723,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ferne Person + /// Looks up a localized string similar to Ferne Person ///Hortleiterinnen ///Schatzsucher ///Dame der Heißen Quellen. @@ -33715,7 +33735,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a a stranger + /// Looks up a localized string similar to a stranger ///Nursery helpers ///a treasure hunter ///an old hot-springs visitor. @@ -33727,7 +33747,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Persona lejana + /// Looks up a localized string similar to Persona lejana ///Cuidados Pokémon ///Buscatesoros ///Anciana del Balneario. @@ -33739,7 +33759,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Personne lointaine + /// Looks up a localized string similar to Personne lointaine ///Responsable de la Garderie ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -33751,7 +33771,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Persona lontana + /// Looks up a localized string similar to Persona lontana ///Ostello Pokémon ///Cercatesori ///Vecchina delle terme. @@ -33763,7 +33783,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a とおくにいるひと + /// Looks up a localized string similar to とおくにいるひと ///あずかりやさん ///トレジャーハンター ///おんせんばあさん. @@ -33775,7 +33795,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 멀리 있는 사람 + /// Looks up a localized string similar to 멀리 있는 사람 ///맡기미집 ///트레져헌터 ///온천할머니. @@ -33787,7 +33807,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 远处的人 + /// Looks up a localized string similar to 远处的人 ///寄放屋 ///寻宝猎人 ///温泉婆婆. @@ -33799,7 +33819,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ei + /// Looks up a localized string similar to Ei ///Bisasam ///Bisaknosp ///Bisaflor @@ -33858,7 +33878,7 @@ public class Resources { ///Menki ///Rasaff ///Fukano - ///Arka [resto de la cadena truncado]";. + ///Arka [rest of string was truncated]";. /// public static string text_species_de { get { @@ -33867,7 +33887,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Egg + /// Looks up a localized string similar to Egg ///Bulbasaur ///Ivysaur ///Venusaur @@ -33921,7 +33941,7 @@ public class Resources { ///Dugtrio ///Meowth ///Persian - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_species_en { get { @@ -33930,7 +33950,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Huevo + /// Looks up a localized string similar to Huevo ///Bulbasaur ///Ivysaur ///Venusaur @@ -33983,7 +34003,7 @@ public class Resources { ///Diglett ///Dugtrio ///Meowth - ///Persian [resto de la cadena truncado]";. + ///Persian [rest of string was truncated]";. /// public static string text_species_es { get { @@ -33992,7 +34012,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Œuf + /// Looks up a localized string similar to Œuf ///Bulbizarre ///Herbizarre ///Florizarre @@ -34042,7 +34062,7 @@ public class Resources { ///Parasect ///Mimitoss ///Aéromite - ///Taupiqu [resto de la cadena truncado]";. + ///Taupiqu [rest of string was truncated]";. /// public static string text_species_fr { get { @@ -34051,7 +34071,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Uovo + /// Looks up a localized string similar to Uovo ///Bulbasaur ///Ivysaur ///Venusaur @@ -34104,7 +34124,7 @@ public class Resources { ///Diglett ///Dugtrio ///Meowth - ///Persian /// [resto de la cadena truncado]";. + ///Persian /// [rest of string was truncated]";. /// public static string text_species_it { get { @@ -34113,7 +34133,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a タマゴ + /// Looks up a localized string similar to タマゴ ///フシギダネ ///フシギソウ ///フシギバナ @@ -34192,7 +34212,7 @@ public class Resources { ///ゴローニャ ///ポニータ ///ギャロップ - ///ヤ [resto de la cadena truncado]";. + ///ヤ [rest of string was truncated]";. /// public static string text_species_ja { get { @@ -34201,7 +34221,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 알 + /// Looks up a localized string similar to 알 ///이상해씨 ///이상해풀 ///이상해꽃 @@ -34303,7 +34323,7 @@ public class Resources { ///킹크랩 ///찌리리공 ///붐볼 - ///아라리 /// [resto de la cadena truncado]";. + ///아라리 /// [rest of string was truncated]";. /// public static string text_species_ko { get { @@ -34312,7 +34332,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a  + /// Looks up a localized string similar to  /// /// /// @@ -34416,7 +34436,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_species_zh { get { @@ -34425,7 +34445,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 蛋 + /// Looks up a localized string similar to 蛋 ///妙蛙种子 ///妙蛙草 ///妙蛙花 @@ -34529,7 +34549,7 @@ public class Resources { ///顽皮雷弹 ///蛋蛋 ///椰蛋树 - ///卡拉卡拉 [resto de la cadena truncado]";. + ///卡拉卡拉 [rest of string was truncated]";. /// public static string text_species_zh_alt { get { @@ -34538,7 +34558,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a  + /// Looks up a localized string similar to  /// /// /// @@ -34642,7 +34662,7 @@ public class Resources { /// /// /// - /// [resto de la cadena truncado]";. + /// [rest of string was truncated]";. /// public static string text_species_zh2 { get { @@ -34651,7 +34671,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 蛋 + /// Looks up a localized string similar to 蛋 ///妙蛙種子 ///妙蛙草 ///妙蛙花 @@ -34755,7 +34775,7 @@ public class Resources { ///頑皮雷彈 ///蛋蛋 ///椰蛋樹 - ///卡拉卡拉 [resto de la cadena truncado]";. + ///卡拉卡拉 [rest of string was truncated]";. /// public static string text_species_zh2_alt { get { @@ -34764,7 +34784,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Probetraining mit Purmel! + /// Looks up a localized string similar to Probetraining mit Purmel! ///Zeig’s Puponcho mit einem Fokusschuss! ///Spezial-Angriffs-Training mit Magnetilo! ///KP-Training mit Wailmer! @@ -34778,7 +34798,7 @@ public class Resources { ///Tentoxa und die Bit-Ballons! ///Gib Aerodactyl mit Temposchüssen zu denken! ///Zerstöre Georoks Schutzschild! - ///Wehr [resto de la cadena truncado]";. + ///Wehr [rest of string was truncated]";. /// public static string text_supertraining_de { get { @@ -34787,7 +34807,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Practice against Scatterbug! + /// Looks up a localized string similar to Practice against Scatterbug! ///Get Spewpa with an Energy Shot! ///Hone Sp. Atk with Magnemite! ///Raise Your HP with Wailmer! @@ -34803,7 +34823,7 @@ public class Resources { ///Break Down Graveler’s Barrier! ///Shake Off That Uncanny Magnezone! ///Shoot Back! Get the Giant Wailord! - ///C [resto de la cadena truncado]";. + ///C [rest of string was truncated]";. /// public static string text_supertraining_en { get { @@ -34812,7 +34832,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ¡Practica contra Scatterbug! + /// Looks up a localized string similar to ¡Practica contra Scatterbug! ///¡Tiro con ímpetu contra Spewpa! ///¡Mejora tu Ataque Especial contra Magnemite! ///¡Mejora tus PS contra Wailmer! @@ -34825,7 +34845,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! /// [resto de la cadena truncado]";. + ///¡Destruye la barrera de Graveler! /// [rest of string was truncated]";. /// public static string text_supertraining_es { get { @@ -34834,7 +34854,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Entraînez-vous contre Lépidonille! + /// Looks up a localized string similar to Entraînez-vous contre Lépidonille! ///Tir Volonté sur Pérégrain! ///À l’assaut de Magnéti! ///À l’assaut de Wailmer! @@ -34851,7 +34871,7 @@ public class Resources { ///Débarrassez-vous de Magnézone! ///Répliquez aux tirs de Wailord! ///Évitez les tirs de Tranchodon! - ///T [resto de la cadena truncado]";. + ///T [rest of string was truncated]";. /// public static string text_supertraining_fr { get { @@ -34860,7 +34880,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Allenamento di prova contro Scatterbug! + /// Looks up a localized string similar to Allenamento di prova contro Scatterbug! ///Sconfiggi Spewpa con un tiro vigoroso! ///Aumenta l’Attacco Speciale con Magnemite! ///Aumenta i PS con Wailmer! @@ -34874,7 +34894,7 @@ public class Resources { ///Tentacruel e i palloncini Bit! ///Tempesta di tiri Aerodactyl! ///Abbatti la barriera di Graveler! - ///Sbarazzati di [resto de la cadena truncado]";. + ///Sbarazzati di [rest of string was truncated]";. /// public static string text_supertraining_it { get { @@ -34883,7 +34903,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a おためしトレーニング! コフキムシ + /// Looks up a localized string similar to おためしトレーニング! コフキムシ ///コフーライ! きめろ ガッツシュート ///とくこうトレーニング VSコイル ///HPトレーニング VSホエルコ @@ -34911,7 +34931,7 @@ public class Resources { ///はんげきの こうはんせん! ///そっこうの ぜんはんせん! ///じゅうおう むじん ロングシュート! - ///ぎゃくしゅう [resto de la cadena truncado]";. + ///ぎゃくしゅう [rest of string was truncated]";. /// public static string text_supertraining_ja { get { @@ -34920,7 +34940,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 맛보기트레이닝! 분이벌레 + /// Looks up a localized string similar to 맛보기트레이닝! 분이벌레 ///분떠도리에게 거츠 슛을 날려라! ///특수공격트레이닝 VS 코일 ///HP트레이닝 VS 고래왕자 @@ -34957,7 +34977,7 @@ public class Resources { ///무쇠팔 강철팔의 협공! ///염동력! 스푼 난무 ///인생역전! 출세 잉어킹 - ///경 [resto de la cadena truncado]";. + ///경 [rest of string was truncated]";. /// public static string text_supertraining_ko { get { @@ -34966,7 +34986,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 试验训练!粉蛹 + /// Looks up a localized string similar to 试验训练!粉蛹 ///粉蝶蛹!精力射门 ///特攻训练 VS小磁怪 ///HP训练 VS吼吼鲸 @@ -35012,7 +35032,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Makuhipsta + /// Looks up a localized string similar to Makuhipsta ///Conec ///Coraso ///Maik @@ -35026,7 +35046,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Makit + /// Looks up a localized string similar to Makit ///Skitit ///Coroso ///Darrell @@ -35040,7 +35060,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Makit + /// Looks up a localized string similar to Makit ///Skitit ///Coroso ///Evelio @@ -35054,7 +35074,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Edmond + /// Looks up a localized string similar to Edmond ///Minetou ///Rosie ///Allan @@ -35068,7 +35088,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Maku + /// Looks up a localized string similar to Maku ///Pucci ///Corsolina ///Marchetto @@ -35082,7 +35102,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ポテマル + /// Looks up a localized string similar to ポテマル ///ベルベル ///モモちゃん ///モーリン @@ -35096,7 +35116,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 감자군 + /// Looks up a localized string similar to 감자군 ///베르베르 ///분홍이 ///모린 @@ -35110,7 +35130,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Karpiranha + /// Looks up a localized string similar to Karpiranha ///Ravioli ///Rentata ///Stadida @@ -35136,7 +35156,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Carpe Diem + /// Looks up a localized string similar to Carpe Diem ///Stevie ///Quacklin’ ///Thumper @@ -35162,7 +35182,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Karpirinha + /// Looks up a localized string similar to Karpirinha ///Fortunyet ///Sr.Puerró ///Titanix @@ -35188,7 +35208,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ouïe-Ouïe + /// Looks up a localized string similar to Ouïe-Ouïe ///Décorum ///Insp. Magret ///Megascolide @@ -35214,7 +35234,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Karkarp + /// Looks up a localized string similar to Karkarp ///Ottolnarg ///Rosto ///Rock @@ -35240,7 +35260,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a こいこい + /// Looks up a localized string similar to こいこい ///アマヤル ///マー ///カッチ @@ -35266,7 +35286,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 맞고 + /// Looks up a localized string similar to 맞고 ///달고나 ///마 ///카치 @@ -35292,7 +35312,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///KP-Sack S ///KP-Sack M ///KP-Sack L @@ -35327,7 +35347,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HP Bag S ///HP Bag M ///HP Bag L @@ -35362,7 +35382,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Saco PS S ///Saco PS M ///Saco PS L @@ -35397,7 +35417,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Sac PV ///Sac PV + ///Sac PV ++ @@ -35432,7 +35452,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///Sacco PS S ///Sacco PS M ///Sacco PS L @@ -35467,7 +35487,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HPバッグS ///HPバッグM ///HPバッグL @@ -35502,7 +35522,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HP백S ///HP백M ///HP백L @@ -35537,7 +35557,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a + /// Looks up a localized string similar to ///HP沙袋S ///HP沙袋M ///HP沙袋L @@ -35572,7 +35592,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Kampf ///Flug ///Gift @@ -35598,7 +35618,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Fighting ///Flying ///Poison @@ -35624,7 +35644,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Lucha ///Volador ///Veneno @@ -35650,7 +35670,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Normal + /// Looks up a localized string similar to Normal ///Combat ///Vol ///Poison @@ -35676,7 +35696,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Normale + /// Looks up a localized string similar to Normale ///Lotta ///Volante ///Veleno @@ -35702,7 +35722,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ノーマル + /// Looks up a localized string similar to ノーマル ///かくとう ///ひこう ///どく @@ -35728,7 +35748,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 노말 + /// Looks up a localized string similar to 노말 ///격투 ///비행 ///독 @@ -35754,7 +35774,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 一般 + /// Looks up a localized string similar to 一般 ///格斗 ///飞行 ///毒 @@ -35780,7 +35800,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Wald + /// Looks up a localized string similar to Wald ///Stadt ///Wüste ///Steppe @@ -35812,7 +35832,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a FOREST + /// Looks up a localized string similar to FOREST ///CITY ///DESERT ///SAVANNA @@ -35844,7 +35864,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Bosque + /// Looks up a localized string similar to Bosque ///Ciudad ///Desierto ///Sabana @@ -35876,7 +35896,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Forêt + /// Looks up a localized string similar to Forêt ///Ville ///Désert ///Savane @@ -35908,7 +35928,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Foresta + /// Looks up a localized string similar to Foresta ///Città ///Deserto ///Savana @@ -35940,7 +35960,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a もり + /// Looks up a localized string similar to もり ///シティ ///さばく ///サバンナ @@ -35972,7 +35992,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 숲 + /// Looks up a localized string similar to 숲 ///시티 ///사막 ///사바나 @@ -36004,7 +36024,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 森林 + /// Looks up a localized string similar to 森林 ///城市 ///沙漠 ///热带草原 @@ -36036,7 +36056,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Mysteriöser Ort /// @@ -36088,7 +36108,7 @@ public class Resources { /// ///Route 10 ///Menhir-Weg - ///Cromlexia /// [resto de la cadena truncado]";. + ///Cromlexia /// [rest of string was truncated]";. /// public static string text_xy_00000_de { get { @@ -36097,7 +36117,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a —————— + /// Looks up a localized string similar to —————— /// ///Mystery Zone /// @@ -36149,7 +36169,7 @@ public class Resources { /// ///Route 10 ///Menhir Trail - ///Geo [resto de la cadena truncado]";. + ///Geo [rest of string was truncated]";. /// public static string text_xy_00000_en { get { @@ -36158,7 +36178,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a - + /// Looks up a localized string similar to - /// ///Lugar misterioso /// @@ -36206,7 +36226,7 @@ public class Resources { /// ///Ruta 9 ///Paso de Rhyhorn - ///Bastión Batalla [resto de la cadena truncado]";. + ///Bastión Batalla [rest of string was truncated]";. /// public static string text_xy_00000_es { get { @@ -36215,7 +36235,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Endroit Mystérieux /// @@ -36263,7 +36283,7 @@ public class Resources { /// ///Route 9 ///Piste Piquante - ///Château de [resto de la cadena truncado]";. + ///Château de [rest of string was truncated]";. /// public static string text_xy_00000_fr { get { @@ -36272,7 +36292,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///Zona Misteriosa /// @@ -36320,7 +36340,7 @@ public class Resources { /// ///Percorso 9 ///Sentiero Punzoni - ///Castell [resto de la cadena truncado]";. + ///Castell [rest of string was truncated]";. /// public static string text_xy_00000_it { get { @@ -36329,7 +36349,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///なぞのばしょ /// @@ -36403,7 +36423,7 @@ public class Resources { /// ///ボールこうじょう /// - ///15ばん [resto de la cadena truncado]";. + ///15ばん [rest of string was truncated]";. /// public static string text_xy_00000_ja { get { @@ -36412,7 +36432,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///수수께끼의 장소 /// @@ -36501,7 +36521,7 @@ public class Resources { ///향전시티 /// ///18번도로 - ///에뜨르와 발레 [resto de la cadena truncado]";. + ///에뜨르와 발레 [rest of string was truncated]";. /// public static string text_xy_00000_ko { get { @@ -36510,7 +36530,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a ---------- + /// Looks up a localized string similar to ---------- /// ///神秘的地方 /// @@ -36611,7 +36631,7 @@ public class Resources { ///神奇宝贝村庄 /// ///21号道路 - ///最后通道 [resto de la cadena truncado]";. + ///最后通道 [rest of string was truncated]";. /// public static string text_xy_00000_zh { get { @@ -36620,7 +36640,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Linktausch + /// Looks up a localized string similar to Linktausch ///Linktausch ///Kanto-Region ///Johto-Region @@ -36639,7 +36659,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a a Link Trade + /// Looks up a localized string similar to a Link Trade ///a Link Trade ///the Kanto region ///the Johto region @@ -36658,7 +36678,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Intercambio + /// Looks up a localized string similar to Intercambio ///Intercambio en conexión ///Kanto ///Johto @@ -36677,7 +36697,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Échanges Link + /// Looks up a localized string similar to Échanges Link ///Échanges Link ///Kanto ///Johto @@ -36696,7 +36716,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Scambio in link + /// Looks up a localized string similar to Scambio in link ///Scambio in link ///Kanto ///Johto @@ -36715,7 +36735,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a つうしんこうかん + /// Looks up a localized string similar to つうしんこうかん ///つうしんこうかん ///カントーちほう ///ジョウトちほう @@ -36734,7 +36754,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 통신교환 + /// Looks up a localized string similar to 통신교환 ///통신교환 ///관동지방 ///성도지방 @@ -36753,7 +36773,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 连接交换 + /// Looks up a localized string similar to 连接交换 ///连接交换 ///关都地区 ///城都地区 @@ -36772,7 +36792,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Netter Ort + /// Looks up a localized string similar to Netter Ort ///Entfernter Ort ///Pokémon-Film ///Pokémon-Film 2013 @@ -36811,7 +36831,7 @@ public class Resources { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2017 /// [resto de la cadena truncado]";. + ///VGE 2017 /// [rest of string was truncated]";. /// public static string text_xy_40000_de { get { @@ -36820,7 +36840,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a a lovely place + /// Looks up a localized string similar to a lovely place ///a faraway place ///a Pokémon movie ///Pokémon Movie 13 @@ -36859,7 +36879,7 @@ public class Resources { ///VGE 2014 ///VGE 2015 ///VGE 2016 - ///VGE 2 [resto de la cadena truncado]";. + ///VGE 2 [rest of string was truncated]";. /// public static string text_xy_40000_en { get { @@ -36868,7 +36888,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Lugar encantador + /// Looks up a localized string similar to Lugar encantador ///Lugar lejano ///Película Pokémon ///Película Pokémon 2013 @@ -36891,7 +36911,7 @@ public class Resources { ///Campeonato Mundial ///Campeonato Mundial 2013 ///Campeonato Mundial 2014 - ///Campeo [resto de la cadena truncado]";. + ///Campeo [rest of string was truncated]";. /// public static string text_xy_40000_es { get { @@ -36900,7 +36920,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Endroit superbe + /// Looks up a localized string similar to Endroit superbe ///Endroit lointain ///Film Pokémon ///Film Pokémon 2013 @@ -36930,7 +36950,7 @@ public class Resources { ///Worlds ///Worlds 2013 ///Worlds 2014 - ///Worlds 2 [resto de la cadena truncado]";. + ///Worlds 2 [rest of string was truncated]";. /// public static string text_xy_40000_fr { get { @@ -36939,7 +36959,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Luogo Grazioso + /// Looks up a localized string similar to Luogo Grazioso ///Luogo Remoto ///Film Pokémon ///Film Pokémon 2013 @@ -36967,7 +36987,7 @@ public class Resources { ///Mondiali 2017 ///Mondiali 2018 ///Mondiali - ///Mondi [resto de la cadena truncado]";. + ///Mondi [rest of string was truncated]";. /// public static string text_xy_40000_it { get { @@ -36976,7 +36996,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a すてきなばしょ + /// Looks up a localized string similar to すてきなばしょ ///とおいばしょ ///ポケモンえいが ///ポケモンえいが13 @@ -37029,7 +37049,7 @@ public class Resources { ///ポケモンイベント14 ///ポケモンイベント15 ///ポケモンイベント16 - ///ポケモンイベント [resto de la cadena truncado]";. + ///ポケモンイベント [rest of string was truncated]";. /// public static string text_xy_40000_ja { get { @@ -37038,7 +37058,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 근사한 장소 + /// Looks up a localized string similar to 근사한 장소 ///먼 곳 ///포켓몬영화 ///포켓몬영화13 @@ -37096,7 +37116,7 @@ public class Resources { ///포켓몬페스타 ///포켓몬페스타13 ///포켓몬페스타14 - ///포켓몬페스 [resto de la cadena truncado]";. + ///포켓몬페스 [rest of string was truncated]";. /// public static string text_xy_40000_ko { get { @@ -37105,7 +37125,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 美妙的地方 + /// Looks up a localized string similar to 美妙的地方 ///遥远的地方 ///宝可梦电影 ///宝可梦电影13 @@ -37167,7 +37187,7 @@ public class Resources { ///宝可梦庆典16 ///宝可梦庆典17 ///宝可梦庆典18 - ///宝可 [resto de la cadena truncado]";. + ///宝可 [rest of string was truncated]";. /// public static string text_xy_40000_zh { get { @@ -37176,7 +37196,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Ferne Person + /// Looks up a localized string similar to Ferne Person ///Pensionsleiter ///Schatzsucher ///Dame der Heißen Quellen. @@ -37188,7 +37208,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a a stranger + /// Looks up a localized string similar to a stranger ///Day Care helpers ///a treasure hunter ///an old hot-springs visitor. @@ -37200,7 +37220,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Persona lejana + /// Looks up a localized string similar to Persona lejana ///Pareja de la Guardería ///Buscatesoros ///Anciana del Balneario. @@ -37212,7 +37232,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Personne lointaine + /// Looks up a localized string similar to Personne lointaine ///Responsable de la Pension ///Chercheur de Trésors ///Dame des Eaux Thermales. @@ -37224,7 +37244,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a Persona Lontana + /// Looks up a localized string similar to Persona Lontana ///Pensione Pokémon ///Cercatesori ///Vecchina delle terme. @@ -37236,7 +37256,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a とおくにいるひと + /// Looks up a localized string similar to とおくにいるひと ///そだてやさん ///トレジャーハンター ///おんせんばあさん. @@ -37248,7 +37268,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 멀리 있는 사람 + /// Looks up a localized string similar to 멀리 있는 사람 ///키우미집 ///트레져헌터 ///온천할머니. @@ -37260,7 +37280,7 @@ public class Resources { } /// - /// Busca una cadena traducida similar a 远处的人 + /// Looks up a localized string similar to 远处的人 ///饲育屋爷爷 ///寻宝猎人 ///温泉婆婆. @@ -37272,7 +37292,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_00 { get { @@ -37282,7 +37302,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_01 { get { @@ -37292,7 +37312,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_02 { get { @@ -37302,7 +37322,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_03 { get { @@ -37312,7 +37332,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_04 { get { @@ -37322,7 +37342,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_05 { get { @@ -37332,7 +37352,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_06 { get { @@ -37342,7 +37362,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_07 { get { @@ -37352,7 +37372,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_08 { get { @@ -37362,7 +37382,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_09 { get { @@ -37372,7 +37392,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_10 { get { @@ -37382,7 +37402,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_11 { get { @@ -37392,7 +37412,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_12 { get { @@ -37402,7 +37422,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_128 { get { @@ -37412,7 +37432,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_129 { get { @@ -37422,7 +37442,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_13 { get { @@ -37432,7 +37452,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_14 { get { @@ -37442,7 +37462,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_15 { get { @@ -37452,7 +37472,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_16 { get { @@ -37462,7 +37482,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_17 { get { @@ -37472,7 +37492,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_18 { get { @@ -37482,7 +37502,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_19 { get { @@ -37492,7 +37512,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_20 { get { @@ -37502,7 +37522,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_21 { get { @@ -37512,7 +37532,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_22 { get { @@ -37522,7 +37542,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_23 { get { @@ -37532,7 +37552,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_24 { get { @@ -37542,7 +37562,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_25 { get { @@ -37552,7 +37572,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_26 { get { @@ -37562,7 +37582,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_27 { get { @@ -37572,7 +37592,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_28 { get { @@ -37582,7 +37602,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_29 { get { @@ -37592,7 +37612,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_30 { get { @@ -37602,7 +37622,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_31 { get { @@ -37612,7 +37632,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_32 { get { @@ -37622,7 +37642,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_33 { get { @@ -37632,7 +37652,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_34 { get { @@ -37642,7 +37662,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_35 { get { @@ -37652,7 +37672,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_36 { get { @@ -37662,7 +37682,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_37 { get { @@ -37672,7 +37692,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_38 { get { @@ -37682,7 +37702,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_39 { get { @@ -37692,7 +37712,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_40 { get { @@ -37702,7 +37722,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_41 { get { @@ -37712,7 +37732,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_42 { get { @@ -37722,7 +37742,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_43 { get { @@ -37732,7 +37752,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_44 { get { @@ -37742,7 +37762,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_45 { get { @@ -37752,7 +37772,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_46 { get { @@ -37762,7 +37782,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_47 { get { @@ -37772,7 +37792,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_48 { get { @@ -37782,7 +37802,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_49 { get { @@ -37792,7 +37812,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_50 { get { @@ -37802,7 +37822,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_51 { get { @@ -37812,7 +37832,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_52 { get { @@ -37822,7 +37842,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_53 { get { @@ -37832,7 +37852,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_54 { get { @@ -37842,7 +37862,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_55 { get { @@ -37852,7 +37872,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_56 { get { @@ -37862,7 +37882,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_57 { get { @@ -37872,7 +37892,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_58 { get { @@ -37882,7 +37902,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_59 { get { @@ -37892,7 +37912,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_60 { get { @@ -37902,7 +37922,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_61 { get { @@ -37912,7 +37932,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_62 { get { @@ -37922,7 +37942,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_63 { get { @@ -37932,7 +37952,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_64 { get { @@ -37942,7 +37962,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_65 { get { @@ -37952,7 +37972,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_66 { get { @@ -37962,7 +37982,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_67 { get { @@ -37972,7 +37992,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_68 { get { @@ -37982,7 +38002,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_69 { get { @@ -37992,7 +38012,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_70 { get { @@ -38002,7 +38022,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_71 { get { @@ -38012,7 +38032,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_72 { get { @@ -38022,7 +38042,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap tr_73 { get { @@ -38032,7 +38052,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] tutors_g3 { get { @@ -38042,7 +38062,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] tutors_g4 { get { @@ -38052,7 +38072,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_00 { get { @@ -38062,7 +38082,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_01 { get { @@ -38072,7 +38092,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_02 { get { @@ -38082,7 +38102,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_03 { get { @@ -38092,7 +38112,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_04 { get { @@ -38102,7 +38122,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_05 { get { @@ -38112,7 +38132,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_06 { get { @@ -38122,7 +38142,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_07 { get { @@ -38132,7 +38152,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_08 { get { @@ -38142,7 +38162,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_09 { get { @@ -38152,7 +38172,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_10 { get { @@ -38162,7 +38182,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_11 { get { @@ -38172,7 +38192,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_12 { get { @@ -38182,7 +38202,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_13 { get { @@ -38192,7 +38212,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_14 { get { @@ -38202,7 +38222,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_15 { get { @@ -38212,7 +38232,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_16 { get { @@ -38222,7 +38242,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap type_icon_17 { get { @@ -38232,7 +38252,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap unknown { get { @@ -38242,7 +38262,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap valid { get { @@ -38252,7 +38272,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap vc { get { @@ -38262,7 +38282,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Drawing.Bitmap. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// public static System.Drawing.Bitmap warn { get { @@ -38272,7 +38292,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc6 { get { @@ -38282,7 +38302,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc6full { get { @@ -38292,7 +38312,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc7 { get { @@ -38302,7 +38322,7 @@ public class Resources { } /// - /// Busca un recurso adaptado de tipo System.Byte[]. + /// Looks up a localized resource of type System.Byte[]. /// public static byte[] wc7full { get { diff --git a/PKHeX/Properties/Resources.resx b/PKHeX/Properties/Resources.resx index d478b5762..2b56bb249 100644 --- a/PKHeX/Properties/Resources.resx +++ b/PKHeX/Properties/Resources.resx @@ -7555,4 +7555,10 @@ ..\Resources\byte\encunters_hb_ss.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\byte\pcd.pkl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\byte\pgf.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/pcd.pkl b/PKHeX/Resources/byte/pcd.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f16bcaf0a7d68c2c23d112061f460681e1522b28 GIT binary patch literal 276488 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 ABLDyZ literal 0 HcmV?d00001 diff --git a/PKHeX/Resources/byte/pgf.pkl b/PKHeX/Resources/byte/pgf.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b9b36cb76f7e93f89f8bb3f742af68a9c18bbd18 GIT binary patch literal 123216 zcmeI53!GHNmH$umfDJgn@KA{&(0?&S%~q0iMx4!mVf5|J5_zVZ{O})w{J~%Pc@%y zK6Kyi+ud`&U3DIH>eQ)=`ce88tHSZ4;tKJg*e8B3h+1;rViY49+AvdnQoV;J(s&w2 z=aNH%={$Ur z=E_g?mDfRZO2>ooN2x}L^c80ujq|c}sG{%D-^9iA0zFF`@xEU;zjr=#-oSq^R8K~s zL6rQ?>dw{e+gH&Qj+d=Vs?drw0GN>C`&psBdj@cBkI!{q~?^ zqEo^0BdW}srHfcAE*FoAXXzbW$!h0M&YCQiPJEFbmTn!YtB;SsqP}&P^PU0Ak2Ngo zPnQ>_?vj0ME&A9m#3B6b0l!hsJ~kM=YY_U^xyetdKDKL1-OdCZUc0z4K|R;iY=3tH ztx8a0>!+U!`0l`$iMpU&9@g}+Tr6ht63*iM?9TNc?R{)bYglyhlFc%N){0-EWeyj- zUGClI{H$iX83}ZWY?ntg?Xo(nkD0PuO~dKREIqb@MnPXCpr<}Z_4FZ*>ZM+rfLG?x zt#uULGyV;3*}GseQ?8q1?8GTPK|5BCmaEm95mZOSV0X-ZtU3vT!WXUlfdU$@^8iSx(qpS|1$bm{9t@BT_uF)lD&sp zJ$kH)s_0|li1;}T6Ez+?A1CFh$Glohwc2fH5B4YP@aWgZ z3apf}uVcxUju{zRIUk;IdATEz?s1n=J32RZl#Yl)^fLW3u#a^X>?bd2=&3%M{Mk;} zG-NC7N_P&Dr`<6?%~J_#YFxR^c_l&D?VrCIlJd(>@87U}3cR%r8!GqJH6C8Oa$EY- z*+)dx9S+7B}L$U0S${pK)P zW0@=~o!2w8tYWzeqsehnQ$GoP+$hJDuR1?B$#z7)>xPo%4I zjQ58UkM((^UrTr3I9sF5hK*!xJQa`i0s5GK&2T+dIQxRyHf$ZzX$c1CcuU#@3^6g)$UBXy??9s^t-;&Vlr_=B09T6=1 zQjO6BpFg$^-qm`KG%J6s(zy$fq+1~KuS4>ioc-{`{^V?QI!E@(l&xH$(PP;xS5hZx zqVJ38xMco4vTt2vmz>bhM|Dm02726C>Aa8Yb>A=K>9%DVBgWEa#I@7{&FfxQ=3`|} zmYo?I8G6S8mj6c=!sDMrZw0cnlbvirgNpgNcK;{NQD?QYE7dM&UffFAE`^hQ-55Dj z;-im`xnB^4$$sHjbUweI#ccdiIu_G7OeUu;4im+DG1K4Lr-E@X6eFsnhPO zwa%-~2F&EX0AJZOZrL3y-=&d(W8{7P{VYrA0Q}@j=#fAc--j^YcRLoSWFh59{V1~t{34ducI3RSvpDvKg(OrllbM`9){mhvZz;U5fT3o zZBty95m|cdA#nr!i>MbH16jJ^43S@6*5gWF@~{XgPU=-=`6+tfTH{v9r;j!J+J)#5 z@hNc$9THzePfGvF-Xj%99)Jjvyd~x3ac3u5CjCBjTD@9}Sl9>7D&%DpvyV;br7lR` z!@l$oQ>lCGVR5~f8OYK_YLWr;DIbe(j4V&PBj;M@C&(Gu4O&y0aM^!;kcS1ai+-_z zv2$XBVtr$O2<&4j20PpryQtZ|c;|+_o_3LXtmfzQ_I$LrX|3t3zUTX>YvqA>f+$cY zmy^%WvGM=V%<*Nj*c*q5&SJ06ADzWspFfPHocu9nX*fpwu`rf$^2b71e0JYve=Llp zocyscmU8mP!dS}59}8o7$}^Y5^T_{8yXl+sY4Iw307otD4SA0`OOI$y${(w4sfJ5F z8F@-q(paP@By+8$KQ=~YA>D@j>47v9c}Secw?O9lsT}O9alTe&GSwqfk#k~#=E;dV zK_`EQP7n0Qip??>S6+vI(};5}6O{k8dw)GXZhMv$$SLE@%IP5C9Ha#Pb54A8rvGCp zq`Y`rg;yfHZPX@q^s!;GZ`C0mk^5IvdH2dpcpu9izt}tf!g}m`$H-VLI*YyIm*_0^ zjw{1h#(C^M=k&fp-Nan6jDADQM3CKAahT;PyDue_ZrXk7)(lydcK@c`ukPS83EHyj z&h=Avo5y1ifPuVxTQgtjW#PG`m$72x0?|!$5@9UkeJnR3>*Y4ArE+;xY}|cy12W-` zA_LAeGR}6NS^iyNftDJ98GxhCYq&RW z6>gUeY zuhVjR%f}UlyjOX!2c4%7-T#yG9R6Ws4UOy% z_OVopFN-;%Dz;1f*??t`=UPh7^1(@N55uFJvsj9}@z06P;(h~`bJ~>Uhd!2OdJ!`) zO|%Jl@PW26u#a8TrYx(IizVdcp_{qb+hRPcC^mzfD=@_*mYjbz&vG zM5AG2qPNTWEoY@@N-r;ceJrO!Ctpn4AunGsU^y>E0v#&T{Y$CGzUYycXzMKe>-Q&M z>^Kc8@_7X)BPo`v5xL-1`#d(T!Ps&EEk<5{<|lBZz#GLpmG#7an%a9Kf=JPLa zXs<+>wg<$B2KKS-!EDH_ks8@2!wyvB}V4 z92>tC-!dO7^k+kM+$t*^;b%!=O*aQx&h1UPA2Al|a3FpLoemU16U>{SiwSSDf3-RvHBB5sz<}8>+$&0E*a1E}M^WM37!mYUeMWA{QzY|wgm`6dg z6q!s!RUHq+`)K5)*zMwtCv%+t3m{>;IS~|5T7~5$tX+!DG8Wg&?Jyf{FjF4S#8G*& zOp?8;7A?YS_<7a72?zJK@OCMuab*wav9D?LSV!*|8MbmS^^RRk{}6p*k3tV*N}v0z zQw(Z>()OjLrMkL>oR+=F-P@RoD=FXdExEq+MU3=YAG_!Zmiu5|@W*rB%4v*T36_U6 z?NUx-EXI!by6#^g~`{x#K3Z|#=aDrWhnI4ZMfb=_{W-Tk>ud&Jp4?} z=&Lh4l2e@QC$MeJUuY|Wv+p`Rp)}33S z9=|qQmvq&nbW5ln$F=T)s*tdKY3p_wFIl+04RcIJKjKyV+=n<{AuTs|gtkmLOF6~I zPDPD~uWIyIImO3L1j~aOmU4=Zbp^{;G%SDg*cV>EpMPzr3BKA;*KO$WvRi|MO^%v> zQLl0(lE>Cuw4(-(Tz4>BYh_wA`F+$0EV|lI2Rtmri1m$zoSzA+()vgYQ3tT-Vtw0> z_qb_jmka14@d-p?7K-}=$CYYM++XKv0xbV%3?|*WqiVjAV@h0`YXUUatr$zr$0Luy z*k;zkuGC9kfa{QOO)sw0r^eLT-T={w6$j(XGLLX>U};L1p>%G^J!2 zfp%%mYL^=6zwoclQDnB3eD#0DG20t|Yw2i8$&$N|`LAvO2vq)+pJO(tr^`M!3-^n& zY-c#jpp1FscCxnZOPICzZ>ka$;3unTjwQa@9XuLVHF%W{QuQvbl)Z`DK-qfN1Go&H z0LNhX6D&8uzKg5TFh*{7F#aWtynIO&;*bh}V@l`J5Sk=-Ot}pI-S6=|N}qpH!wjW1 zl9&DxRwN!yjVhs&<>_&`tr`TaCIgrmMu#e2PV8*bcrf{)YRlyL-Yy}SXjYV~29 zszx(pyaP`vU#0%s#UNtI|grMd)d70>pScAC+N?czP2-8yNN!Ac3Gn7W4T#6 ziStD~UlxGiW-ZGn#g+0`l~Z9 zsX4yWV$TVzF4D{+yR|yygrw^nWY_AHr~S1$A6&KgsUchE?b)zbjh0yw^1Bh%;~$LA z(DbpdcvyJ6e*v9($Dlzc9Yc9FZH8%76 zHiX*F2jh2_gk>^D$e+z($zP9osr?+>a;0R+-7fi$_ibXy-7e9_$U2_zc6r((FFgNJ zEyjr(P;dCe*tPKdb4z7A>FxW+l|wPY<-CUZNsn2LD~CZoc*cS=t%jl+kQ+}{@ntn* z&h@!@t)jbLF;@@cKGqZRa!*O*WfUaeYxkAxkHvLn+j#%jK9Qj#f>^3TWPhrsU83n^ z|2hk&rF+YJPIGExsaOh;)uVa`(eYrpOVciyW8^Ain+!s+c+4*cS$9$PC-*gY~nB9g|+8)$U)$ni1J9lQv$r;n4OidkV!eLc@{)20f-?7vcWc5^wCH z8U!U6?{_%9Iew$2kL6|wA6I6ulqe1p#`4RI{A8}DbVxiR&WgQH!L^}y8Z^5Od}3?w zP3@X=dq3U(eBJIRHtKg2NcU0y5mCqEn&US_ZkO;evZr0Rhgs3bGIes4`uzU9@#4oV zyF!oY>hquF)5+#@eCM{@l*)mX4JGy1hgg@y^#=J|Ep~k4HCUPP*nFePL~*bz*7UJI zd+PPE-G74y#?Fj=Ja$HC%`ShtG@)MF0Z%nGm2<`Wzl?Cc432#`x5N1Xc)am(*+28T zgKr5v_C*bgx7H1_oDsVW`zBmWqs3C;4jHrl6eOSM!upv?398ey4t3F2AfEqt(u+|n zTtAU3UavCRzsCEQiB15^?Gae|#d>4C*!M6>zAGZj2l(aPHGF&xLZYsb>s@zY<(tV~ zJlQOt*RY)C>0@`x`ImoSkCAHeI`s$~BXv8Qe$$yE zd)gxOuFIWe&K&HUIKmMv`AUlVM#RU^E_YJb!1)(*mMeWM+>_RofJIdcRNXuC-kfEU zk0onfOxCn7e7gkCiEt4{OYpv;=IwGt4wluZ z#Ovy^V#&U$fRrgI>X|vq)jpPYv6km$tf4M;AL}02$F`iFCS+T=A8THxQWvayeLmQ} z$dCBficUbaA(w+6m91P4%d!SJ*#5nSqT7D#%hRbjUQfgGW@)C!#VT0K4isE-*o`M= z+I{<2dWfa)U^a>Wp}*tT_x{eF<1%TNF5+>qP0T=S{8bGL8-Dxy*mvnKSY>s+XwuZ^ z&b_wUzCLEN?DvH1*Bv9WAC<*s*^kO%v+PG@v03)RSf-pQjfK367Uy5?izjET-P z;vs#koc!d@U|DpG*vhCZHrvXmEH>N9s4O! z7L~!#9CXPJ~q&Cfix{_v_TdzNEmmAl@mW=FfG z6Po_A34i+OukUQv(gKkq+6oFB4ZtC>g6W*Lx#8>L}E^$z6q+0XLzBugD0{l87} zd8}Mm`m2q=X@21ReoNV~^hIVa-|o<`sQfYe`JiLXX{cjQB87 zS#0)UqO#cR!$f7V*@p>ZDJQ$%6S6-)k`H6AKNg+EULPhpi@iQfbQXJknCL9_`Y^{5 zOK0e@d6D#(y?rb?i@mZRoyA_A9G%5pTN$0j-q=NS7JGH_anNJ89wT}zI*Yw}EINz5 zdMrANy?QJHM;1*$kF`bP0BW__k(V ztUTJKk^YBHMb+_s^jO)myg(boEi^!UlCCX#mTjmv^uCnim&=aj9nU_AyoVj{T|1dJqdt^o z?^?k*NJ~<9N(S--m$=jYK;xu->K z#!A;r!-Mse(8)9Dw7_~76B103yvdrw?vt>ZkVAcIc)jf+S>zht{MWteYQZuUa(cls zTw`Af$1)syxJ^pd98R-%uducClS{`k5&PA+@{(qWwzk?!?$5w3WxMP`tL(~Zmweao z>L`@ll#(TPyX3!)FN`LfB|8_+UVrQ)$o^c7>}Rvs>yJfevDY7q&SI|*6P?9g-!eLj zz2nL-mYD?`?`P>`S<;JFOmhwR35dJ#zV$QUgVk%iu1p`y`;4eN^w>xm7U+)^jwQ<< zlPs>EoXL^^VWyv~cI)Mu_`Ivy+#Ix}WXatw6J<-(;u>$mKi(akcc?XKr*M{H`}`BJ zv)wd#^=c10?>^7r`_*Rlu`r*1jc5E4wQf)5o+-aZ<=2hg+Jo|RLF@BFUUYSP3MVgF zKEIR~HLCPWOC982?M}^d!uvq7l<4;tbYp$NvVWRqj*r{L-D`m80TCP<=kc1qp3?iM z2D{SPjGBo_zgCXLMxeIs2+Z)k;B3X*@tcOVlldF5p9SKUy1fPp*DhH;zouPgVSmaQ z7#Y_?o6W@-**{kC%87eS)LzD5gWJU)yErFyh+e`x-y`DY(D}+tdGYFGZ|q_?t~Y_J z=3QPV$`SrN%q6hZ$%nut;dbHJMTN#s&SrTV^Lr1ACuwXESjI@5##Ur{YA=<1i4;pr z!{UwetNkq8*hSPmAVxVg&RAzms(!lK1LC)+-1`KiWpgVeMYWBRecc`qE$6t`jz`2{ z`o#vu&WR0*^$o3^zT6j68V5_l)?*e8rt=X~s*qif_dj2V{#1{%YPVf?M|9p(IG24- z_o~bz#FVht0QSHXP)a#(zwzvk%<-}3vHQ&c>W`88U-ACTZ*!kvh7bL3VMBZMjp}9W zWHS;KVLkgM$kQW1G7Ei*eX{BDu@1e9J(vWZ@jgAgA5Q{1-0`mVy8cGg2P~hVivn4u z^ztA^ijVpC8R6>n6J>RA1*iJhQ_#^nQOW)%1?XcZfra->@mz7nVX@m~5`K4X0p&@u zeVm5AwE(ZpMC+)1coT?OvOcJl-Wu;Yya4a>+fL*uwbQrDoxXVTBlI$K^8Zp7aeAO0 z>m+{}?;boHVdb^~Tiw4ckx5VeeOoY~bAVq?9 zkve&r)X84WoGV)~pIthLPJ(^8PSY;gEEkBW(95K+179XAH)6i>JK_d9S<^1;64}=- zhdr{-eQXcy5qm`={ggh?uyDWh`^o1bzllA|aoF2&DkNItG)E*GaeRiLB z;2!OruatIw1;#ZzqdyPhG`26}aDO}c-RZi}%_S^e$*P zez_3-J&(_#@RX8e1lpxJt6f|c&bpWj9l&GA+i^5Yj$b&&HxpF(v`{!pwtX?RmA4>r zag{SJWi6E+E3~b=RMW?@SxjxEjVz|N(ngl4*#Bh+{Qh<#$iC$E$BNI=t)e;pFOmA# zI`JsRFW;qq>U1(V{XUG1EMFG)Q%CH~!#-EGmY1*O^pkC5F_rzhoO_+Ci>}9}M(Sgx zI@v}RQ$1!Q%f)nyh>6i+enfdGK1&Sa$|;fh*j#Aji|J2v!!f{eRI8LD)XHq{hXte00(DXa^Bd&Ea}MA$4-X4=;mL( z@0k;ikgFiPxjpjlQWNIz4>(VzYz!_KH~*gKwN84*Kl^%huV79bEF(4J%3|xW3HZ(5 zLq0WYuvu9BIuJdJTY~fY-cGgk@d) z2y1AyvX}Mp0(wi5vPPRD-!}%ecIJa+HlC&R8{{Q~C40O-6|sxnm`lD(xM7K`mY4D5 z(#I~iU50AHLe0ET;2f#rG|_kBuowAG49gw2#@y zV%o>XBd_ls=jOECFL*8-_p#5Gq>tIiV%o=SWO-Elm73^!aktLyBOhy+FHdQ=^P2OL zvnt)kWS-J^=c`y3a|GG%Pr~(?NB<&gs`L`UHC0-YHM>0d zV+bE#<;xuv^7Le^?YSOj(%!LYJ}h#3ATO6`SpLhy5^enA&l~4TV^el+Sv}=7<-d_^ zmzB>Yb|)yY_0!K~d36zAAnFPh-S`C^si?O%okpy$IO;Ux{|Bw;VVn!sJJuYpp~_g$ zHTUt1#dvMP;Mkd1V|5{|6<-R>QFQbA%1uX3I_to^VY?hB>wb(*P|Gfoaxdtqp`^xd6^jIV+2fx3RELr)MvR%9^CIsov zl#(SYM=^_~+}mXZd0VD6G^K2p@IKZW5;J)*)nmC?RzSCLB&GG5%%oik%i|;~Ow$RUcM=IxEM#LjKK(h%!xf7NADKOlK~R zM9XGWiFw9J(612%*o1vXno{(+8QfPgC)P3kmbQ*uO2%IdThusqQ|1M*sI5)v)HT0qO;hm$D*^?tH;7v`u0zIF?Yka zJeU3Rh#rg1Vy_;H&SI|~i_T)N9*fRmuO16ysqpxg(du0J9oqvFXOHZ*U$bN%_xwLZUx=tQveMd()!Inqs#I?86rH-{uYmflVC_FT82G%U+} z?P6Z5^DR_;Zj_@e)jFzHXZqDzM8Q9BekI>!l0!yRg?7=^>da;_t<{;n>L8Y8urw8s zrK7K1I*H36`3+)-_+y~#s}4HeR}0!dMi#Obv^(GO9A+mtkIa2n^p;U$f_#3Q8}3{G^6<_rd))rTkILugSGhL-yQ|*a@b}fN z8IciHK#!fS$>+~zal~)w0#xZ<63im^O!2eS?OxUBrBN*ERi@drWz&}CXC7N`$`j5q zuwU93wr>3kd-sj#WA1F1TL1EvtY`lsq$s+V?`>uF$4*8roGyRNpVxOz%yhpbeO}*K z&KH!s3*Htv3r;bib_e!;((RX&&0@Nbm7c}jmyh>I;~f-uFDrdcVrHvwyD*DxAFExb zr~8%UsNRvzw;T$e(!V2Olq}0M5ytx=`IgH)`@T`EijL4A`h++{ z?`YS)ae!>7PbW`vmOEcT9L)Xe%Dz-$#+Y}0ORs(F?0f^yuRxUJt8zBkeSg>^WFIU8 zHF|8MuU+!5&+m_0j(V+f|B>}8x4GA(VtoU4B^L@;o7Bd3;#>s3g0e$;s@eqYTBi6EN8R~XgNQP(juhYFJvF<-Qhs| z<0WBv95Ldf@cUhy!n2$Lma|L3vK1b`%fXL@XXy!+votKfs!r?VOOX%rKE-K~_?B2n z4!kb53cN0IHmt%Osi?m!LqfB>dq6<_Pp0u0=cCqHQYTl)Ig4TVH18G06^6J%zuGO4 z_Y&jrKiBD>gB*D8ZxD2h{gS|P26osC8rK(2Ue0Uj-*QGv&z4@viz$4&bOy^OH0@G2 zyYJnLGi@uqaTv9SCC8X%$khmQq+c^1ZIh2?hC>TIrnCFmET;ZgzATqX4&K3%d)%D7 zIJl`5i_RY_TpxSLnSmLw`>+l{b+Y2vm;RbQR`1y-v335~*_&2uoxeIMEc`o4*}tvn zx(zkk=j|~awRpadPKIyUN5j(D7-APUA+j35(-Iu4; ztK{*=Ovf>ZTS8v?X;=y;FW&u;)3VR=$V%p0v)3!P4*X=W=;S4v#dQ3lXW^=Ft=Waw zWzp%ee|Yw+SM$iGbFb?#=e6Er`PDq~Ce-ZsP_9Udx^^cmDe6eIOJ9lw+RAK}eAguU z=aF->90A{ZC1UaSG4pkNx$TRpqnJ68R3pvzU@_;y*38S(!tma;dOh|pQYWQ-vO*uN zYP@&TM|(fo+vDZdYGvM!??C*Y@tVNe9S`{IODEAEI|H9e_tT)j_*ez8cekV=>Ek84 zb5`DkJk76ibnNh|vv#gFj*ao3z`PjRr84>h)U01D*x#F4#^JnsAm(d&29Ht1wEs82S`$T);S-v(c7dJ#zAf4If!$ zy6xdUs`bddw)NWfo1fjehV}B;?X9sfNP&McygeqfM*Qc(N z&8wFMuU6a1(h1QNzD*BomoBiCnJm>-v`evln5$taxvsdXW6gWfb3K9t>U;4%_M9m* z7U#I?0$1vOPve^*f2>09!xWokB(9QkVcdPIy;sil#$BfHNK813>`tk>!plC}{fXe= zn4zK?j@V27(HB>fus?PRe9LIEUs!o*Tb9D=u~M=O!Sb9`?=Bmahe zL05=io!lb7Zb?HY^-Qv% z)^Hprp9k(>9-{VbY+qJj#Lbn57NK2urxCW3JiDL3+_{&^OFIp%n9UU4E-JfQbvus1 znveIhVoHL)RlQp4Y=po60{ne*$-#JE=*RmHuz5`0S{ED7%7>Bh{W?Aym;u9NL!F}IcWv6%ZX_OYB3GmTx?$YL5(I+j=( zohOjT^T(8hDZG8@jQCj32=>LikJ-m!F8lVenCoQwSj=sueJtiajD0NTzNLLE=HnOp zSj_dJ7^_R?kQ99U(gpVAgh=+q)b88IVlMmkv6$;*`&i6vrF|^sddxl+bNgZ+ zi@Bd{AB%are28qzCsWp?81b<<>`RXb_Ql**+Q(u(FJ>Q$xqY#Z#at)b$71fo*vDe7 zlkHgK7W-K+ zOYnXc<}7Wo2L!VO?*ZXoV`c8cOhvxsn4tRIf6fCZeQ$UF}E-Fv6%Z~_OY1z z$@a0BkHzd`F(2>S$71gD+s9%qFPA%)W9{+MB98ajzI2ITU(9u~jVz`k_ptMiE6w%T&Di~D zOlp;QG4hluVE2!YVE4^^82ebv{bc)C%=MUkEapCpeJtj7-#!*|pWi+fb05Y&7IS%7 z2HV0_t=zgxgvzSzfNZeQ$UF}E)Z zFm|~oRi(EW@iBq%OUIJf7yDSu?TdXZ=Jv%t7IXVzAB(wtv5&>vzSzfNZeQ$UF>jX| ztmC_>sNwFZQvR$1dz+G55#pV=>ob zZ=s6f6WHOYc=Io8U*Zw$i+LZjkHy?p+Q(upFZQvR+e-Ub%|-&vFZQvR+ZX#- z%^;M|Z)r;2AK&qz~ zX_jW6cWj+ZLmRsCgS&~c+>gG|c{6QaEQ4&ya)Om?hCZXKNn z`ywLP7jt|-&vFZQvR`(yU8nENpHv6$Nz`&i89 O#O-4-x0P+r^8W#cm6+WC literal 0 HcmV?d00001