diff --git a/common/lib/xmodule/xmodule/capa_base.py b/common/lib/xmodule/xmodule/capa_base.py index 8838f8910b..7a7235756c 100644 --- a/common/lib/xmodule/xmodule/capa_base.py +++ b/common/lib/xmodule/xmodule/capa_base.py @@ -1423,7 +1423,9 @@ class CapaMixin(CapaFields): self.track_function_unmask('save_problem_success', event_info) msg = _("Your answers have been saved.") if not self.max_attempts == 0: - msg = _("Your answers have been saved but not graded. Click 'Check' to grade them.") + msg = _( + "Your answers have been saved but not graded. Click '{button_name}' to grade them." + ).format(button_name=self.check_button_name()) return { 'success': True, 'msg': msg,