[pitivi] settings: make getAudioDescription/getVideoDescription translatable
- From: Edward Hervey <edwardrv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] settings: make getAudioDescription/getVideoDescription translatable
- Date: Sun, 5 Dec 2010 14:11:48 +0000 (UTC)
commit 8a8d99a227237a9edfbea0f3fed4dccfea898c31
Author: Jean-François Fortin Tam <nekohayo gmail com>
Date: Wed Dec 1 11:46:54 2010 -0500
settings: make getAudioDescription/getVideoDescription translatable
Fixes #590471
Signed-off-by: Edward Hervey <bilboed bilboed com>
pitivi/settings.py | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/pitivi/settings.py b/pitivi/settings.py
index 9bd5ebd..8ffc19f 100644
--- a/pitivi/settings.py
+++ b/pitivi/settings.py
@@ -520,8 +520,10 @@ class ExportSettings(Signallable, Loggable):
def getVideoDescription(self):
""" Returns a human-readable markup-ed string describing the video properties """
- res = "%d x %d <i>pixels</i> at %.2f <i>fps</i>" % (self.videowidth,
- self.videoheight, float(self.videorate))
+ res = _("%(width)d x %(height)d pixels at %(framerate).2f fps" %\
+ {"width": self.videowidth,
+ "height": self.videoheight,
+ "framerate": float(self.videorate)})
if self.vencoder is not None:
res += " <i>(%s)</i>" % self.vencoder
@@ -529,8 +531,10 @@ class ExportSettings(Signallable, Loggable):
def getAudioDescription(self):
""" Returns a human-readable markup-ed string describing the audio properties """
- res = "%d channels at %d <i>Hz</i> (%d <i>bits</i>)" % \
- (self.audiochannels, self.audiorate, self.audiodepth)
+ res = _("%(channels)d channels at %(frequency)d Hz (%(depth)d bits)" % \
+ {"channels": self.audiochannels,
+ "frequency": self.audiorate,
+ "depth": self.audiodepth})
if self.aencoder is not None:
res += " <i>(%s)</i>" % self.aencoder
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]