From: Tom Hughes Date: Thu, 9 Jan 2020 11:00:46 +0000 (+0000) Subject: Fix translation names X-Git-Tag: live~2377 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/7b0d3aaf9fba7f12ce8cb12d52cf1f946b1588ad?ds=sidebyside Fix translation names --- 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