[Forum] Fix text for failed aliases/implications

This commit is contained in:
Earlopain 2024-02-27 17:22:53 +01:00
parent 45fd9d52a8
commit 2c41373304
No known key found for this signature in database
GPG Key ID: 48860312319ADF61

View File

@ -16,7 +16,7 @@ module ForumTopicsHelper
elsif obj.is_pending?
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] is pending approval."
elsif obj.is_errored?
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] (#{obj.relationship} failed during processing."
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] failed during processing."
else # should never happen
return "The #{obj.relationship} ##{obj.id} [[#{obj.antecedent_name}]] -> [[#{obj.consequent_name}]] has an unknown status."
end