diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2011-11-18 18:09:06 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2011-11-18 18:09:06 +0100 |
| commit | 808055d0433eb2ec10b715286f3a77b40920a8a8 (patch) | |
| tree | dc02841de3bd5840ac6cb7c74270389ab857a7dc /src | |
| parent | 9b086a87f21072a5a9d09272cb5c6d453d39bac3 (diff) | |
| download | enigma2-curlytx-808055d0433eb2ec10b715286f3a77b40920a8a8.tar.gz enigma2-curlytx-808055d0433eb2ec10b715286f3a77b40920a8a8.zip | |
add more help
Diffstat (limited to 'src')
| -rw-r--r-- | src/CurlyTx.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/CurlyTx.py b/src/CurlyTx.py index 7052610..5e58e72 100644 --- a/src/CurlyTx.py +++ b/src/CurlyTx.py @@ -60,10 +60,10 @@ class CurlyTx(Screen,HelpableScreen): def loadHelp(self): self.helpList.append(( self["actions"], "WizardActions", - [("ok", _("Close window"))])) + [("up", _("Scroll page contents up"))])) self.helpList.append(( self["actions"], "WizardActions", - [("back", _("Close window"))])) + [("down", _("Scroll page contents down"))])) self.helpList.append(( self["actions"], "ColorActions", [("red", _("Show program settings"))])) @@ -76,7 +76,15 @@ class CurlyTx(Screen,HelpableScreen): self.helpList.append(( self["actions"], "ColorActions", [("blue", _("Switch to previous configured page URL"))])) - + self.helpList.append(( + self["actions"], "WizardActions", + [("ok", _("Close window"))])) + self.helpList.append(( + self["actions"], "WizardActions", + [("back", _("Close window"))])) + self.helpList.append(( + self["actions"], "HelpActions", + [("displayHelp", _("Show this help screen"))])) def pageUp(self): self["text"].pageUp() |
