change translateable year string from lower to upper case to save one po entry
authorFraxinas <andreas.frisch@multimedia-labs.de>
Mon, 8 Dec 2008 12:36:58 +0000 (13:36 +0100)
committerFraxinas <andreas.frisch@multimedia-labs.de>
Mon, 8 Dec 2008 12:36:58 +0000 (13:36 +0100)
lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py

index 85d81706acf7ddf6be1ad749c85fe8dd2ab7c8cf..7407263d0b5d04a8029b43d0e196ede488a9558f 100644 (file)
@@ -104,7 +104,7 @@ class ProjectSettings(Screen,ConfigListScreen):
                self["key_yellow"] = StaticText(_("Load"))
                self["key_blue"] = StaticText(_("Save"))
                
-               infotext = _("Available format variables") + ":\n$i=" + _("Track") + ", $t=" + _("Title") + ", $d=" + _("Description") + ", $l=" + _("length") + ", $c=" + _("chapters") + ",\n" + _("Record") + " $T=" + _("Begin time") + ", $Y=" + _("year") + ", $M=" + _("month") + ", $D=" + _("day") + ",\n$A=" + _("audio tracks") + ", $C=" + _("Channel") + ", $f=" + _("filename")
+               infotext = _("Available format variables") + ":\n$i=" + _("Track") + ", $t=" + _("Title") + ", $d=" + _("Description") + ", $l=" + _("length") + ", $c=" + _("chapters") + ",\n" + _("Record") + " $T=" + _("Begin time") + ", $Y=" + _("Year") + ", $M=" + _("month") + ", $D=" + _("day") + ",\n$A=" + _("audio tracks") + ", $C=" + _("Channel") + ", $f=" + _("filename")
                self["info"] = StaticText(infotext)
 
                self.settings = project.settings