aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/FactoryReset.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-16 18:25:23 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-16 18:25:23 +0100
commitd58ca4cf34b7621aea4e2c1ff07bed6b2cd6b763 (patch)
treef96b8eae81d7aa0c2d11eda8bcda1e4b87f96e78 /lib/python/Screens/FactoryReset.py
parent4510fa62a33b31fec442fd0d77eb682d93ebf7e6 (diff)
parentfbaf2a5f2fa5236b09a4d14f059d99eace24f2d5 (diff)
downloadenigma2-d58ca4cf34b7621aea4e2c1ff07bed6b2cd6b763.tar.gz
enigma2-d58ca4cf34b7621aea4e2c1ff07bed6b2cd6b763.zip
Merge branch 'master' of /home/tmbinc/enigma2-git into tmbinc/FixTimingBugs
Diffstat (limited to 'lib/python/Screens/FactoryReset.py')
-rw-r--r--lib/python/Screens/FactoryReset.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/python/Screens/FactoryReset.py b/lib/python/Screens/FactoryReset.py
new file mode 100644
index 00000000..ce5aaeb3
--- /dev/null
+++ b/lib/python/Screens/FactoryReset.py
@@ -0,0 +1,9 @@
+from Screens.MessageBox import MessageBox
+
+class FactoryReset(MessageBox):
+ def __init__(self, session):
+ MessageBox.__init__(self, session, _("When you do a factory reset, you will lose ALL your configuration data\n"
+ "(including bouquets, services, satellite data ...)\n"
+ "After completion of factory reset, your receiver will restart automatically!\n\n"
+ "Really do a factory reset?"), MessageBox.TYPE_YESNO)
+ self.skinName = "MessageBox" \ No newline at end of file