Commit 91196573 by Sarina Canelake

Fix small i18n typos

parent f20df3a8
...@@ -74,10 +74,8 @@ define([ ...@@ -74,10 +74,8 @@ define([
it('I do not see notification message if the model is not changed', it('I do not see notification message if the model is not changed',
function() { function() {
var expectedMessage = [ var expectedMessage =
'You have unsaved changes. Do you really want to ', 'You have unsaved changes. Do you really want to leave this page?',
'leave this page?'
].join(''),
view = renderPage(), view = renderPage(),
message; message;
......
...@@ -36,8 +36,7 @@ function ($, _, gettext, BaseView, GroupConfigurationsList) { ...@@ -36,8 +36,7 @@ function ($, _, gettext, BaseView, GroupConfigurationsList) {
if(dirty) { if(dirty) {
return gettext( return gettext(
'You have unsaved changes. Do you really want to ' + 'You have unsaved changes. Do you really want to leave this page?'
'leave this page?'
); );
} }
} }
......
...@@ -204,10 +204,10 @@ class CombinedOpenEndedFields(object): ...@@ -204,10 +204,10 @@ class CombinedOpenEndedFields(object):
scope=Scope.user_state scope=Scope.user_state
) )
old_task_states = List( old_task_states = List(
help=_("A list of lists of state dictionaries for student states that are saved." help=_("A list of lists of state dictionaries for student states that are saved. "
"This field is only populated if the instructor changes tasks after" "This field is only populated if the instructor changes tasks after "
"the module is created and students have attempted it (for example changes a self assessed problem to " "the module is created and students have attempted it (for example, if a self assessed problem is "
"self and peer assessed."), "changed to self and peer assessed)."),
scope = Scope.user_state scope = Scope.user_state
) )
task_states = List( task_states = List(
......
...@@ -335,7 +335,7 @@ REASONCODE_MAP.update( ...@@ -335,7 +335,7 @@ REASONCODE_MAP.update(
'200': dedent(_( '200': dedent(_(
""" """
The authorization request was approved by the issuing bank but declined by CyberSource The authorization request was approved by the issuing bank but declined by CyberSource
becouse it did not pass the Address Verification System (AVS). because it did not pass the Address Verification System (AVS).
""")), """)),
'201': dedent(_( '201': dedent(_(
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment