From fb1ec2ab3a88c5be8d668767d88bb3607384a239 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 30 Jun 2025 18:14:48 -0500 Subject: [PATCH] Copy edits --- app/models/command.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/models/command.rb b/app/models/command.rb index 3f0640609..5cc96b6f0 100644 --- a/app/models/command.rb +++ b/app/models/command.rb @@ -51,19 +51,19 @@ class Command < ApplicationRecord def error_message_for(attribute, message) case attribute.to_sym when :cards, :card_ids - "No cards in this context" + "" when :card - "Can't find the card" + "Needs one or more cards to apply to (#123, #124)." when :collection - "The collection is missing" + "You need to specificy a Collection" when :assignee_ids - "Assignees are missing" + "Needs at leaset one assignee (@person)." when :user - "Can't find that user" + "Can’t find that person." when :stage - "Can't find that workflow stage" + "Can’t find that Workflow Stage." when :tag_title - "A tag is required" + "Needs at least one tag (#tag, #name)" else message end