Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/GUI_Components/Format_Pane.py
diff options
context:
space:
mode:
Diffstat (limited to 'GUI_Components/Format_Pane.py')
-rw-r--r--GUI_Components/Format_Pane.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/GUI_Components/Format_Pane.py b/GUI_Components/Format_Pane.py
index 511d633..d4bba35 100644
--- a/GUI_Components/Format_Pane.py
+++ b/GUI_Components/Format_Pane.py
@@ -95,5 +95,6 @@ class Format_Pane(Pane):
return article
def set_working_article(self, article):
- self.panel.articletitle.set_markup("<span size='medium'><b>" + _("Theme:") + "</b> %s \n<b>" + _("Article:") + "</b> %s</span>"%(article.article_theme, article.article_title))
+ self.panel.articletitle.set_markup("<span size='medium'><b> %s </b> %s \n<b> %s </b> %s</span>" % \
+ (_("Theme:"), article.article_theme, _("Article:"), article.article_title))
self.panel.textbox.set_article(article)