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
eb9133ae
Commit
eb9133ae
authored
Mar 14, 2014
by
Waheed Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Open ended panel headings not internationalized.
LMS-2169
parent
7d618f26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
lms/djangoapps/open_ended_grading/open_ended_notifications.py
+11
-4
No files found.
lms/djangoapps/open_ended_grading/open_ended_notifications.py
View file @
eb9133ae
...
...
@@ -3,6 +3,7 @@ import json
import
logging
from
django.conf
import
settings
from
django.utils.translation
import
ugettext_lazy
as
_
from
xmodule.open_ended_grading_classes
import
peer_grading_service
from
xmodule.open_ended_grading_classes.controller_query_service
import
ControllerQueryService
...
...
@@ -23,10 +24,16 @@ NOTIFICATION_CACHE_TIME = 300
KEY_PREFIX
=
"open_ended_"
NOTIFICATION_TYPES
=
(
(
'student_needs_to_peer_grade'
,
'peer_grading'
,
'Peer Grading'
),
(
'staff_needs_to_grade'
,
'staff_grading'
,
'Staff Grading'
),
(
'new_student_grading_to_view'
,
'open_ended_problems'
,
'Problems you have submitted'
),
(
'flagged_submissions_exist'
,
'open_ended_flagged_problems'
,
'Flagged Submissions'
)
# Translators: "Peer Grading" is a panel where peer can grade student-provided answers.
(
'student_needs_to_peer_grade'
,
'peer_grading'
,
_
(
'Peer Grading'
)),
# Translators: "Staff Grading" is a panel where instructor can grade student-provided answers.
(
'staff_needs_to_grade'
,
'staff_grading'
,
_
(
'Staff Grading'
)),
# Translators: "Problems you have submitted" refers to the problems that the currently-logged-in
# student has provided an answer for.
(
'new_student_grading_to_view'
,
'open_ended_problems'
,
_
(
'Problems you have submitted'
)),
# Translators: "Flagged Submissions" refers to student-provided answers to a problem which are
# marked by instructor or peer graders as 'flagged' potentially inappropriate.
(
'flagged_submissions_exist'
,
'open_ended_flagged_problems'
,
_
(
'Flagged Submissions'
))
)
...
...
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