Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/simplegraphhelp.py
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-05-05 00:36:42 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-05-05 00:36:42 (GMT)
commit1aef2e11d9e10b4ca2ef0b4a9b9e3b42d7d05561 (patch)
treedceff1060ede89183f63ea46351c8f562c1cb07c /simplegraphhelp.py
parent8a043f99d463f893256c0010a9c267019f9bffa4 (diff)
Rename SimpleGraph with Chart
Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
Diffstat (limited to 'simplegraphhelp.py')
-rw-r--r--simplegraphhelp.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/simplegraphhelp.py b/simplegraphhelp.py
deleted file mode 100644
index 73a0e92..0000000
--- a/simplegraphhelp.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# Help for SimpleGraphActivity
-
-from gettext import gettext as _
-
-from helpbutton import HelpButton
-
-
-def create_help(toolbar):
- helpitem = HelpButton()
- toolbar.insert(helpitem, -1)
- helpitem.show()
- helpitem.add_section(_('Basic usage'))
- helpitem.add_paragraph(_('First you need add data to create the graph'))
- helpitem.add_paragraph(_('You can add data with this button'),
- 'row-insert')
- helpitem.add_paragraph(_('...or remove data with this button'),
- 'row-remove')
- helpitem.add_paragraph(_('To change the graph title, just change the activity title'))
-
- helpitem.add_paragraph(_('Next you can change the type of graph'))
- helpitem.add_paragraph(_('Vertical bars'), 'vbar')
- helpitem.add_paragraph(_('Horizontal bars'), 'hbar')
- helpitem.add_paragraph(_('Lines'), 'line')
- helpitem.add_paragraph(_('Pie'), 'pie')
-
- helpitem.add_section(_('Configs'))
- helpitem.add_paragraph(_('You can change the colors or the horizontal and vertical labels in the configs toolbar'),
- 'preferences-system')
-
- helpitem.add_section(_('Saving as an image'))
- helpitem.add_paragraph(_('In the activity toolbar you have button to save the graph as an image'),
- 'save-as-image')
-
- helpitem.add_section(_('Reading data from other activities'))
- helpitem.add_paragraph(_('In the activity toolbar you have buttons to read data from other activities'))
- helpitem.add_paragraph(_('You can use times measured in the StopWatch activity'), 'import-stopwatch')
- helpitem.add_paragraph(_('...or data from the Measure activity'), 'import-measure')