Skip to content

Commit 6036e7c

Browse files
committed
improve translation
1 parent 9147f2c commit 6036e7c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/views/course.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DuplicateCourseView(SuccessMessageMixin, LoginRequiredMixin, CreateView):
2424

2525
def get_success_message(self, cleaned_data):
2626
original_course = Course.objects.get(pk=self.get_object().id)
27-
return _(f"Course '{cleaned_data['title']}' successfully created. All settings and contents from course '{original_course.title}' were copied.")
27+
return _(f"Course '{cleaned_data['title']}' successfully created. All settings and contents of the course '{original_course.title}' were copied.")
2828

2929
def get_initial(self):
3030
course_to_duplicate = Course.objects.get(pk=self.get_object().id)

0 commit comments

Comments
 (0)