diff --git a/app/models/card/eventable/system_commenter.rb b/app/models/card/eventable/system_commenter.rb
index 59823a784..0319f2f22 100644
--- a/app/models/card/eventable/system_commenter.rb
+++ b/app/models/card/eventable/system_commenter.rb
@@ -19,13 +19,21 @@ class Card::Eventable::SystemCommenter
when "card_unassigned"
"#{event.creator.name} unassigned from #{event.assignees.pluck(:name).to_sentence}."
when "card_closed"
- "Moved to Done by #{ event.creator.name }"
+ "Moved to “Done” by #{event.creator.name}"
when "card_reopened"
- "Reopened by #{ event.creator.name }"
+ "Reopened by #{event.creator.name}"
+ when "card_postponed"
+ "#{event.creator.name} moved this to “Not Now”"
+ when "card_auto_postponed"
+ "Closed as “Not Now” due to inactivity"
when "card_title_changed"
"#{event.creator.name} changed the title from “#{event.particulars.dig('particulars', 'old_title')}” to “#{event.particulars.dig('particulars', 'new_title')}”."
when "card_collection_changed"
"#{event.creator.name} moved this from “#{event.particulars.dig('particulars', 'old_collection')}” to “#{event.particulars.dig('particulars', 'new_collection')}”."
+ when "card_triaged"
+ "#{event.creator.name} movedmoved this back to “Maybe?”"
end
end
end