mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Replace hard-coded string with translation (#20245)
This commit is contained in:
@@ -542,7 +542,9 @@ class PostsController < ApplicationController
|
||||
post_revision.modifications["category_id"][0] != topic.category.id
|
||||
end
|
||||
return render_json_error(I18n.t("revert_version_same")) unless changes.length > 0
|
||||
changes[:edit_reason] = "reverted to version ##{post_revision.number.to_i - 1}"
|
||||
changes[:edit_reason] = I18n.with_locale(SiteSetting.default_locale) do
|
||||
I18n.t("reverted_to_version", version: post_revision.number.to_i - 1)
|
||||
end
|
||||
|
||||
revisor = PostRevisor.new(post, topic)
|
||||
revisor.revise!(current_user, changes)
|
||||
|
||||
Reference in New Issue
Block a user