From c08aa63e4ef2b0b96baf1451b11bbcb53533f7ae Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sat, 16 May 2020 16:21:11 +0000 Subject: [PATCH] --- server/AyaNova/Controllers/TagController.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/server/AyaNova/Controllers/TagController.cs b/server/AyaNova/Controllers/TagController.cs index 7558189c..38fd7e81 100644 --- a/server/AyaNova/Controllers/TagController.cs +++ b/server/AyaNova/Controllers/TagController.cs @@ -98,7 +98,7 @@ namespace AyaNova.Api.Controllers if (string.IsNullOrWhiteSpace(tag)) return BadRequest(new ApiErrorResponse(ApiErrorCode.VALIDATION_REQUIRED, "tag")); - var JobName = $"BulkAdd tag \"{tag}\" to {ayaType} ({idList.Count} specified)"; + var JobName = $"BulkAdd tag \"{tag}\" on {ayaType} ({idList.Count} specified)"; JObject o = JObject.FromObject(new { ayaType = ayaType, @@ -139,7 +139,7 @@ namespace AyaNova.Api.Controllers if (string.IsNullOrWhiteSpace(tag)) return BadRequest(new ApiErrorResponse(ApiErrorCode.VALIDATION_REQUIRED, "tag")); - var JobName = $"BulkAdd tag \"{tag}\" to any {ayaType}"; + var JobName = $"BulkAdd tag \"{tag}\" on any {ayaType}"; JObject o = JObject.FromObject(new { ayaType = ayaType, @@ -223,7 +223,7 @@ namespace AyaNova.Api.Controllers if (string.IsNullOrWhiteSpace(tag)) return BadRequest(new ApiErrorResponse(ApiErrorCode.VALIDATION_REQUIRED, "tag")); - var JobName = $"BulkRemove tag \"{tag}\" to any {ayaType}"; + var JobName = $"BulkRemove tag \"{tag}\" from any {ayaType}"; JObject o = JObject.FromObject(new { ayaType = ayaType, @@ -269,7 +269,7 @@ namespace AyaNova.Api.Controllers toTag = TagUtil.NormalizeTag(toTag); if (string.IsNullOrWhiteSpace(toTag)) return BadRequest(new ApiErrorResponse(ApiErrorCode.VALIDATION_REQUIRED, "toTag")); - var JobName = $"BulkReplace tag \"{fromTag}\" with tag \"{toTag}\" to {ayaType} ({idList.Count} specified)"; + var JobName = $"BulkReplace tag \"{fromTag}\" with tag \"{toTag}\" on {ayaType} ({idList.Count} specified)"; JObject o = JObject.FromObject(new { ayaType = ayaType, @@ -316,7 +316,7 @@ namespace AyaNova.Api.Controllers if (string.IsNullOrWhiteSpace(toTag)) return BadRequest(new ApiErrorResponse(ApiErrorCode.VALIDATION_REQUIRED, "toTag")); - var JobName = $"BulkReplace tag \"{fromTag}\" with tag \"{toTag}\" to any {ayaType}"; + var JobName = $"BulkReplace tag \"{fromTag}\" with tag \"{toTag}\" on any {ayaType}"; JObject o = JObject.FromObject(new { ayaType = ayaType,