config.timezone.val.addNotifier(timezoneNotifier)
config.rc = ConfigSubsection();
- config.rc.map = configElement("config.rc.map", configSelection, 0, ("Default", "Classic") );
+ config.rc.map = configElement("config.rc.map", configSelection, 0, (_("Default"), _("Classic")) );
config.keyboard = ConfigSubsection();
- config.keyboard.keymap = configElement("config.keyboard.keymap", configSelection, 1, ("English", "German") );
+ config.keyboard.keymap = configElement("config.keyboard.keymap", configSelection, 1, (_("English"), _("German")) );
config.osd = ConfigSubsection();
config.osd.alpha = configElement("config.osd.alpha", ConfigSlider, 0, "");
config.osd.language.addNotifier(languageNotifier)
config.parental = ConfigSubsection();
- config.parental.lock = configElement("config.parental.lock", configSelection, 1, ("Enable", "Disable") );
- config.parental.setuplock = configElement("config.parental.setuplock", configSelection, 1, ("Enable", "Disable") );
+ config.parental.lock = configElement("config.parental.lock", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.parental.setuplock = configElement("config.parental.setuplock", configSelection, 1, (_("Enable"), _("Disable")) );
config.expert = ConfigSubsection();
config.expert.splitsize = configElement("config.expert.splitsize", configSelection, 1, ("0.5Gbyte", "1.0 GByte", "1.5 GByte", "2.0 GByte") );
- config.expert.satpos = configElement("config.expert.satpos", configSelection, 1, ("Enable", "Disable") );
- config.expert.fastzap = configElement("config.expert.fastzap", configSelection, 0, ("Enable", "Disable") );
- config.expert.skipconfirm = configElement("config.expert.skipconfirm", configSelection, 1, ("Enable", "Disable") );
- config.expert.hideerrors = configElement("config.expert.hideerrors", configSelection, 1, ("Enable", "Disable") );
- config.expert.autoinfo = configElement("config.expert.autoinfo", configSelection, 1, ("Enable", "Disable") );
+ config.expert.satpos = configElement("config.expert.satpos", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.expert.fastzap = configElement("config.expert.fastzap", configSelection, 0, (_("Enable"), _("Disable")) );
+ config.expert.skipconfirm = configElement("config.expert.skipconfirm", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.expert.hideerrors = configElement("config.expert.hideerrors", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.expert.autoinfo = configElement("config.expert.autoinfo", configSelection, 1, (_("Enable"), _("Disable")) );
self["text"] = Label("Enigma v2.0b")
- self["tuner"] = Label("Detected NIMs:")
+ self["tuner"] = Label(_("Detected NIMs:"))
nims = nimmanager.nimList()
count = 0
self["tuner" + str(count)] = Label(i[0])
count += 1
- self["hdd"] = Label("Detected HDD:")
+ self["hdd"] = Label(_("Detected HDD:"))
hdd = Harddisk(0)
if hdd.model() != "":
- self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free()))
+ self["hddA"] = Label(_("%s (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
else:
- self["hddA"] = Label("none")
+ self["hddA"] = Label(_("none"))
self["actions"] = ActionMap(["SetupActions"],
{
def __init__(self, session, slot, query):
Screen.__init__(self, session)
- self["message"] = Label("waiting for CI...")
+ self["message"] = Label(_("waiting for CI..."))
self["actions"] = ActionMap(["OkCancelActions"],
{
if name is not None:
self["channel"].setText(name)
else:
- self["channel"].setText("unknown service")
+ self["channel"].setText(_("unknown service"))
def setEvent(self, event):
text = event.getEventName()
# self.session.currentDialog.instance.setTitle(event.getEventName())
self["epg_description"].setText(text)
self["datetime"].setText(event.getBeginTimeString())
- self["duration"].setText("%d min"%(event.getDuration()/60))
+ self["duration"].setText(_("%d min")%(event.getDuration()/60))
def pageUp(self):
self["epg_description"].pageUp()
def __init__(self, session, hdd):
Screen.__init__(self, session)
self.hdd = hdd
- self["wait"] = Label("Initializing Harddisk...");
+ self["wait"] = Label(_("Initializing Harddisk..."));
self.timer = eTimer()
self.timer.timeout.get().append(self.doInit)
self.timer.start(100)
Screen.__init__(self, session)
self.hdd = hdd
- self["model"] = Label("Model: " + hdd.model())
- self["capacity"] = Label("Capacity: " + hdd.capacity())
- self["bus"] = Label("Bus: " + hdd.bus())
- self["initialize"] = Label("Initialize")
+ self["model"] = Label(_("Model: ") + hdd.model())
+ self["capacity"] = Label(_("Capacity: ") + hdd.capacity())
+ self["bus"] = Label(_("Bus: ") + hdd.bus())
+ self["initialize"] = Label(_("Initialize"))
self["actions"] = ActionMap(["OkCancelActions"],
{
if harddiskmanager.HDDCount() == 0:
tlist = []
- tlist.append(("no HDD found", 0))
+ tlist.append((_("no HDD found"), 0))
self["hddlist"] = MenuList(tlist)
else:
self["hddlist"] = MenuList(harddiskmanager.HDDList())
def keyRight(self):
#forbid to enable advanced mode until its ready
- if self["config"].getCurrent()[0] != "Configmode":
+ if self["config"].getCurrent()[0] != _("Configmode"):
self["config"].handleKey(config.key["nextElement"])
self.newConfig()
../lib/python/Screens/ScanSetup.py \
../lib/python/Screens/NetworkSetup.py \
../lib/python/Screens/Satconfig.py \
- ../lib/python/Components/Language.py \
- ../data/menu.xml
+ ../lib/python/Screens/EventView.py \
+ ../lib/python/Screens/Ci.py \
+ ../lib/python/Screens/About.py \
+ ../lib/python/Screens/HarddiskSetup.py \
+ ../lib/python/Components/SetupDevices.py \
+ ../lib/python/Components/Language.py
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-17 22:11+0100\n"
+"POT-Creation-Date: 2005-11-17 22:41+0100\n"
"PO-Revision-Date: 2005-11-17 20:53+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../lib/python/Screens/EventView.py:58
+#, python-format
+msgid "%d min"
+msgstr ""
+
+#: ../lib/python/Screens/About.py:25
+#, python-format
+msgid "%s (%s, %d MB free)"
+msgstr ""
+
+#: ../lib/python/Screens/HarddiskSetup.py:30
+msgid "Bus: "
+msgstr "Personennahverkehr: "
+
+#: ../lib/python/Screens/HarddiskSetup.py:29
+msgid "Capacity: "
+msgstr "Kapazitaet: "
+
+#: ../lib/python/Components/SetupDevices.py:21
+msgid "Classic"
+msgstr "klassisch"
+
#: ../lib/python/Screens/Satconfig.py:30 ../lib/python/Screens/Satconfig.py:48
+#: ../lib/python/Screens/Satconfig.py:57
msgid "Configmode"
msgstr "Konfigurationsmodus"
+#: ../lib/python/Components/SetupDevices.py:21
+msgid "Default"
+msgstr "Standard"
+
+#: ../lib/python/Screens/About.py:22
+msgid "Detected HDD:"
+msgstr "Erkannte Festplatten:"
+
+#: ../lib/python/Screens/About.py:14
+msgid "Detected NIMs:"
+msgstr "Erkannte Tuner:"
+
+#: ../lib/python/Components/SetupDevices.py:38
+#: ../lib/python/Components/SetupDevices.py:39
+#: ../lib/python/Components/SetupDevices.py:43
+#: ../lib/python/Components/SetupDevices.py:44
+#: ../lib/python/Components/SetupDevices.py:45
+#: ../lib/python/Components/SetupDevices.py:46
+#: ../lib/python/Components/SetupDevices.py:47
+msgid "Disable"
+msgstr "Aus"
+
#: ../lib/python/Screens/Satconfig.py:33 ../lib/python/Screens/Satconfig.py:46
msgid "Diseqcmode"
msgstr "Diseqc-Modus"
+#: ../lib/python/Components/SetupDevices.py:38
+#: ../lib/python/Components/SetupDevices.py:39
+#: ../lib/python/Components/SetupDevices.py:43
+#: ../lib/python/Components/SetupDevices.py:44
+#: ../lib/python/Components/SetupDevices.py:45
+#: ../lib/python/Components/SetupDevices.py:46
+#: ../lib/python/Components/SetupDevices.py:47
+msgid "Enable"
+msgstr "Ein"
+
+#: ../lib/python/Components/SetupDevices.py:24
#: ../lib/python/Components/Language.py:9
msgid "English"
msgstr "Englisch"
msgid "Gateway"
msgstr ""
+#: ../lib/python/Components/SetupDevices.py:24
#: ../lib/python/Components/Language.py:10
msgid "German"
msgstr "Deutsch"
msgid "IP Address"
msgstr "IP Adresse"
+#: ../lib/python/Screens/HarddiskSetup.py:31
+msgid "Initialize"
+msgstr "Initialisiere"
+
+#: ../lib/python/Screens/HarddiskSetup.py:18
+msgid "Initializing Harddisk..."
+msgstr "Initialisiere Festplatte..."
+
#: ../lib/python/Screens/ScanSetup.py:77
msgid "Inversion"
msgstr ""
#: ../lib/python/Screens/Satconfig.py:24
msgid "Latitude"
-msgstr ""
+msgstr "Breitengrad"
#: ../lib/python/Screens/Satconfig.py:23
msgid "Longitude"
-msgstr "Breitengrad"
+msgstr "Laengengrad"
+
+#: ../lib/python/Screens/HarddiskSetup.py:28
+msgid "Model: "
+msgstr "Modell: "
#: ../lib/python/Screens/NetworkSetup.py:45
msgid "Nameserver"
#: ../lib/python/Screens/ScanSetup.py:78
msgid "Symbolrate"
msgstr ""
+
+#: ../lib/python/Screens/HarddiskSetup.py:57
+msgid "no HDD found"
+msgstr "keine Festplatte gefunden"
+
+#: ../lib/python/Screens/About.py:27
+msgid "none"
+msgstr ""
+
+#: ../lib/python/Screens/EventView.py:43
+msgid "unknown service"
+msgstr "unbekannter Dienst"
+
+#: ../lib/python/Screens/Ci.py:32
+msgid "waiting for CI..."
+msgstr "warte auf das CI..."