diff --git a/FModel/Forms/Settings.Designer.cs b/FModel/Forms/Settings.Designer.cs index 571e3d2d..b936e6eb 100644 --- a/FModel/Forms/Settings.Designer.cs +++ b/FModel/Forms/Settings.Designer.cs @@ -1,4 +1,4 @@ -namespace FModel.Forms +namespace FModel.Forms { partial class Settings { @@ -170,7 +170,8 @@ "French", "German", "Italian", - "Spanish"}); + "Spanish", + "Spanish (LA)"}); this.comboBox1.Location = new System.Drawing.Point(70, 161); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(309, 21); @@ -484,4 +485,4 @@ private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.Label label10; } -} \ No newline at end of file +} diff --git a/FModel/Methods/ChallengeGenerator/BundleDesign.cs b/FModel/Methods/ChallengeGenerator/BundleDesign.cs index 284d5b6b..9cb282d9 100644 --- a/FModel/Methods/ChallengeGenerator/BundleDesign.cs +++ b/FModel/Methods/ChallengeGenerator/BundleDesign.cs @@ -1,4 +1,4 @@ -using FModel.Parser.Challenges; +using FModel.Parser.Challenges; using FModel.Parser.Items; using FModel.Properties; using System.Drawing; @@ -175,6 +175,7 @@ namespace FModel any = "Completa " + count + " SFIDE QUALSIASI per ottenere l'oggetto ricompensa"; goto default; case "Spanish": + case "Spanish (LA)": all = "Completa LOS DESAFÍOS para conseguir el objeto de recompensa"; any = "Completa " + count + " DE LOS DESAFÍOS para conseguir el objeto de recompensa"; goto default; diff --git a/FModel/Methods/IconGenerator/DrawText.cs b/FModel/Methods/IconGenerator/DrawText.cs index 7ed9b2b0..cc6d113b 100644 --- a/FModel/Methods/IconGenerator/DrawText.cs +++ b/FModel/Methods/IconGenerator/DrawText.cs @@ -1,4 +1,4 @@ -using csharp_wick; +using csharp_wick; using FModel.Parser.Items; using FModel.Properties; using Newtonsoft.Json; @@ -90,6 +90,7 @@ namespace FModel case "German": case "Italian": case "Spanish": + case "Spanish (LA)": ShortDescription = SearchResource.getTranslatedText(theItem.ShortDescription.Key); if (string.IsNullOrEmpty(ShortDescription)) { ShortDescription = theItem.ShortDescription.SourceString; } break; diff --git a/FModel/Methods/IconGenerator/Translations/LoadLocRes.cs b/FModel/Methods/IconGenerator/Translations/LoadLocRes.cs index f4495fb5..00a500fc 100644 --- a/FModel/Methods/IconGenerator/Translations/LoadLocRes.cs +++ b/FModel/Methods/IconGenerator/Translations/LoadLocRes.cs @@ -1,4 +1,4 @@ -namespace FModel +namespace FModel { static class LoadLocRes { @@ -20,6 +20,9 @@ case "Spanish": myLocRes = getMyLocRes("es"); break; + case "Spanish (LA)": + myLocRes = getMyLocRes("es-419"); + break; default: break; }