From 7b0d3aaf9fba7f12ce8cb12d52cf1f946b1588ad Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 9 Jan 2020 11:00:46 +0000 Subject: [PATCH] Fix translation names --- app/models/user_block.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/user_block.rb b/app/models/user_block.rb index ad564f418..9150bae79 100644 --- a/app/models/user_block.rb +++ b/app/models/user_block.rb @@ -78,7 +78,7 @@ class UserBlock < ApplicationRecord # block. this should be caught and dealt with in the controller, # but i've also included it here just in case. def moderator_permissions - errors.add(:base, I18n.t("user_block.model.non_moderator_update")) if creator_id_changed? && !creator.moderator? - errors.add(:base, I18n.t("user_block.model.non_moderator_revoke")) if revoker_id_changed? && !revoker_id.nil? && !revoker.moderator? + errors.add(:base, I18n.t("user_blocks.model.non_moderator_update")) if creator_id_changed? && !creator.moderator? + errors.add(:base, I18n.t("user_blocks.model.non_moderator_revoke")) if revoker_id_changed? && !revoker_id.nil? && !revoker.moderator? end end -- 2.45.1