summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Controllers
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-20 11:13:23 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-20 11:13:23 -0400
commitb32cad4046916344665c67923482db09cacb366f (patch)
tree4275d07f180d6d586e2ce2464d0f4ac8514e8746 /src/SMAPI.Web/Controllers
parent067163da02c5a5993d88d80f04d379c22bc32cba (diff)
downloadSMAPI-b32cad4046916344665c67923482db09cacb366f.tar.gz
SMAPI-b32cad4046916344665c67923482db09cacb366f.tar.bz2
SMAPI-b32cad4046916344665c67923482db09cacb366f.zip
add i18n schema to JSON validator
Diffstat (limited to 'src/SMAPI.Web/Controllers')
-rw-r--r--src/SMAPI.Web/Controllers/JsonValidatorController.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Controllers/JsonValidatorController.cs b/src/SMAPI.Web/Controllers/JsonValidatorController.cs
index c43fb929..8fb9e06a 100644
--- a/src/SMAPI.Web/Controllers/JsonValidatorController.cs
+++ b/src/SMAPI.Web/Controllers/JsonValidatorController.cs
@@ -27,7 +27,8 @@ namespace StardewModdingAPI.Web.Controllers
private readonly IDictionary<string, string> SchemaFormats = new Dictionary<string, string>
{
["none"] = "None",
- ["manifest"] = "Manifest",
+ ["manifest"] = "SMAPI: manifest",
+ ["i18n"] = "SMAPI: translations (i18n)",
["content-patcher"] = "Content Patcher"
};