Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/readtopbar.py
diff options
context:
space:
mode:
Diffstat (limited to 'readtopbar.py')
-rw-r--r--readtopbar.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/readtopbar.py b/readtopbar.py
index 56901d0..fc4a534 100644
--- a/readtopbar.py
+++ b/readtopbar.py
@@ -138,4 +138,5 @@ class TopBar(_TopBar):
#TRANS: Translate this as Page i of m (eg: Page 4 of 334)
self._progressbar.set_text(
- _("Page %(current)i of %(total_pages)i") % (current_page, n_pages))
+ _("Page %(current)i of %(total_pages)i") %
+ {'current': current_page, 'total_pages': n_pages})