Rename 'cohorted content group' to 'content group'

This commit is contained in:
Andy Armstrong
2015-01-08 15:05:13 -05:00
parent ac58ebf7da
commit 798342e177
5 changed files with 17 additions and 17 deletions

View File

@@ -97,10 +97,10 @@ var edx = edx || {};
}
if (this.hasAssociatedContentGroup() && fieldData.group_id === null) {
if (this.$('.input-cohort-group-association').val() === 'None') {
errorMessages.push(gettext('You did not select a cohorted content group'));
errorMessages.push(gettext('You did not select a content group'));
} else {
// If a value was selected, then it must be for a non-existent/deleted content group
errorMessages.push(gettext('The selected cohorted content group does not exist'));
errorMessages.push(gettext('The selected content group does not exist'));
}
}
return errorMessages;