From 1dc75ffdc33ee6f1f18354b2dd28641784ee421d Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Fri, 6 Mar 2015 13:02:06 -0500 Subject: [PATCH] Abstract out platform name in default Wiki string --- lms/djangoapps/course_wiki/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/course_wiki/views.py b/lms/djangoapps/course_wiki/views.py index 3bcdfa1fe6..37e5594ab2 100644 --- a/lms/djangoapps/course_wiki/views.py +++ b/lms/djangoapps/course_wiki/views.py @@ -125,7 +125,7 @@ def get_or_create_root(): pass starting_content = "\n".join(( - _("Welcome to the edX Wiki"), + _("Welcome to the {platform_name} Wiki").format(platform_name=settings.PLATFORM_NAME), "===", _("Visit a course wiki to add an article."), ))