Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/textbook.py
diff options
context:
space:
mode:
Diffstat (limited to 'textbook.py')
-rw-r--r--textbook.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/textbook.py b/textbook.py
index 619e7a8..e69d25a 100644
--- a/textbook.py
+++ b/textbook.py
@@ -68,7 +68,7 @@ Thanks to: Flavio Danesse <fdanesse@gmail.com>
¡Thanks for using this program! :)
-To continue create an empty book!"""))
+To continue create an empty book or load one from the Journal!"""))
o1 = cOption(_("How to read"),p2)
o2 = cOption(_("How to create"), p3)
@@ -93,8 +93,9 @@ def empty_book():
mybook = cBook(_("Title"))
mybook.set_license(_("CC-BY"))
- p1 = cPage(_("First page"))
- op = cOption(_("Return"), mybook)
+ p1 = cPage(_("First page title"))
+ p1.set_text(_("Text for the first page"))
+ op = cOption(_("Return to the first page"), p1)
p1.add_option(op)
mybook.add_page(p1)