Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
741881b3
Commit
741881b3
authored
Mar 13, 2014
by
Waheed Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internationalization fixed for error msg on staff grading page.
LMS-2195
parent
137faf44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lms/djangoapps/open_ended_grading/staff_grading_service.py
+5
-3
No files found.
lms/djangoapps/open_ended_grading/staff_grading_service.py
View file @
741881b3
...
...
@@ -287,9 +287,11 @@ def get_problem_list(request, course_id):
else
:
problem_list
=
[]
# Make an error messages to reflect that we could not find anything to grade.
response
[
'error'
]
=
(
"Cannot find any open response problems in this course. "
"Have you submitted answers to any open response assessment questions? "
"If not, please do so and return to this page."
)
response
[
'error'
]
=
_
(
u'Cannot find any open response problems in this course. '
u'Have you submitted answers to any open response assessment questions? '
u'If not, please do so and return to this page.'
)
valid_problem_list
=
[]
for
i
in
xrange
(
0
,
len
(
problem_list
)):
# Needed to ensure that the 'location' key can be accessed.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment