Clarify not now move actions copy

This commit is contained in:
Jason Zimdars
2025-11-20 14:36:06 -06:00
committed by Stanko K.R.
parent 5fac18d01f
commit 86932803e4
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ module WebhooksHelper
card_closed: "Card moved to “Done”",
card_reopened: "Card reopened",
card_postponed: "Card moved to “Not Now”",
card_auto_postponed: "Card auto-closed as “Not Now”",
card_auto_postponed: "Card moved to “Not Now” due to inactivity",
card_sent_back_to_triage: "Card moved back to “Maybe?”"
}.with_indifferent_access.freeze
@@ -25,7 +25,7 @@ class Card::Eventable::SystemCommenter
when "card_postponed"
"#{event.creator.name} <strong>moved</strong> this to “Not Now”"
when "card_auto_postponed"
"<strong>Closed</strong> as “Not Now” due to inactivity"
"<strong>Moved</strong> to “Not Now” due to inactivity"
when "card_title_changed"
"#{event.creator.name} <strong>changed the title</strong> from “#{event.particulars.dig('particulars', 'old_title')}” to “#{event.particulars.dig('particulars', 'new_title')}”."
when "card_board_changed"
+1 -1
View File
@@ -64,7 +64,7 @@ class Event::Description
when "card_postponed"
%(#{creator} moved #{card_title} to "Not Now")
when "card_auto_postponed"
%(#{card_title} was closed as "Not Now" due to inactivity)
%(#{card_title} moved to "Not Now" due to inactivity)
when "card_resumed"
"#{creator} resumed #{card_title}"
when "card_title_changed"
+1 -1
View File
@@ -1,7 +1,7 @@
<div class="settings__panel settings__panel--entropy panel shadow center">
<header>
<h2 class="divider txt-large">Auto close</h2>
<p class="margin-none-block-start">Fizzy doesnt let stale cards stick around forever. Cards automatically close as “Not Now” without activity for specific period of time. <em>This is the default, global setting — you can override it on each board.</em></p>
<p class="margin-none-block-start">Fizzy doesnt let stale cards stick around forever. Cards automatically move to “Not Now” without activity for specific period of time. <em>This is the default, global setting — you can override it on each board.</em></p>
</header>
<%= render "entropy/auto_close", model: account.entropy, url: account_entropy_path, disabled: !Current.user.admin? %>
+1 -1
View File
@@ -12,7 +12,7 @@
<div id="<%= dom_id(card, :closure_notice) %>">
<% if card.entropic? && card.open? && !card.postponed? %>
<div class="card-perma__closure-message">
Closes as “Not Now” <%= local_datetime_tag(card.entropy.auto_clean_at, style: :indays) -%> if theres no activity.
Moves to “Not Now” <%= local_datetime_tag(card.entropy.auto_clean_at, style: :indays) -%> if theres no activity.
</div>
<% end %>
</div>