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
c854ec5c
Commit
c854ec5c
authored
Apr 18, 2014
by
David Baumgold
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3366 from IONISx/missing-translations
Missing translations
parents
19b6718c
8ef6a41d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
lms/djangoapps/shoppingcart/models.py
+2
-1
lms/templates/navigation.html
+1
-1
lms/templates/shoppingcart/receipt.html
+2
-2
No files found.
lms/djangoapps/shoppingcart/models.py
View file @
c854ec5c
...
...
@@ -367,7 +367,8 @@ class PaidCourseRegistration(OrderItem):
item
.
mode
=
course_mode
.
slug
item
.
qty
=
1
item
.
unit_cost
=
cost
item
.
line_desc
=
u'Registration for Course: {0}'
.
format
(
course
.
display_name_with_default
)
item
.
line_desc
=
_
(
u'Registration for Course: {course_name}'
)
.
format
(
course_name
=
course
.
display_name_with_default
)
item
.
currency
=
currency
order
.
currency
=
currency
item
.
report_comments
=
item
.
csv_report_comments
...
...
lms/templates/navigation.html
View file @
c854ec5c
...
...
@@ -81,7 +81,7 @@ site_status_msg = get_site_status_msg(course_id)
<ol
class=
"user"
>
<li
class=
"primary"
>
<a
class=
"shopping-cart"
href=
"${reverse('shoppingcart.views.show_cart')}"
>
<i
class=
"icon-shopping-cart"
></i>
Shopping Cart
<i
class=
"icon-shopping-cart"
></i>
${_("Shopping Cart")}
</a>
</li>
</ol>
...
...
lms/templates/shoppingcart/receipt.html
View file @
c854ec5c
...
...
@@ -11,8 +11,8 @@
<div
class=
"container"
>
<section
class=
"notification"
>
<h2>
Thank you for your Purchase!
</h2>
<p>
Please print this receipt page for your records. You should also have received a receipt in your email.
</p>
<h2>
${_("Thank you for your Purchase!")}
</h2>
<p>
${_("Please print this receipt page for your records. You should also have received a receipt in your email.")}
</p>
% for inst in instructions:
<p>
${inst}
</p>
% endfor
...
...
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