aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-11-13 14:28:44 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2008-11-13 14:28:44 +0100
commit7a15f461fce82e3fd6531a22b0bf70fbcd69a878 (patch)
tree2d04afd1a6f610e9e6d44dd81addefbbe44f3d27 /lib/python/Plugins/Extensions/DVDBurn/TitleList.py
parentf479fb3234634c7e9464f1af81d64b97a08bb0bb (diff)
downloadenigma2-7a15f461fce82e3fd6531a22b0bf70fbcd69a878.tar.gz
enigma2-7a15f461fce82e3fd6531a22b0bf70fbcd69a878.zip
make texts translateable and add german locale for new DVDBurn changes
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/TitleList.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/TitleList.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
index 416c14e9..345af877 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
@@ -41,7 +41,7 @@ class TitleList(Screen, HelpableScreen):
self["titleactions"] = HelpableActionMap(self, "DVDTitleList",
{
"addTitle": (self.addTitle, _("Add a new title"), _("Add title")),
- "titleProperties": (self.titleProperties, ("Properties of current title"), _("Title properties")),
+ "titleProperties": (self.titleProperties, _("Properties of current title"), _("Title properties")),
"removeCurrentTitle": (self.removeCurrentTitle, _("Remove currently selected title"), _("Remove title")),
"settings": (self.settings, _("Collection settings"), _("Settings")),
"burnProject": (self.burnProject, _("Burn DVD"), _("Burn DVD")),
@@ -85,9 +85,9 @@ class TitleList(Screen, HelpableScreen):
menu.append((_("DVD media toolbox"), self.toolbox))
menu.append((_("Preview menu"), self.previewMenu))
menu.append((_("Collection settings"), self.settings))
- menu.append(("Reset and renumerate title names", self.resetTitles))
+ menu.append((_("Reset and renumerate title names"), self.resetTitles))
menu.append((_("Edit chapters of current title"), self.editTitle))
- menu.append(("Properties of current title", self.titleProperties))
+ menu.append((_("Properties of current title"), self.titleProperties))
menu.append((_("Add a new title"), self.addTitle))
menu.append((_("Remove title"), self.removeCurrentTitle))
menu.append((_("Exit"), self.leave))