You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
604 B
25 lines
604 B
from hachoir_core.i18n import _, ngettext
|
|
|
|
NB_CHANNEL_NAME = {1: _("mono"), 2: _("stereo")}
|
|
|
|
def humanAudioChannel(value):
|
|
return NB_CHANNEL_NAME.get(value, unicode(value))
|
|
|
|
def humanFrameRate(value):
|
|
if isinstance(value, (int, long, float)):
|
|
return _("%.1f fps") % value
|
|
else:
|
|
return value
|
|
|
|
def humanComprRate(rate):
|
|
return u"%.1fx" % rate
|
|
|
|
def humanAltitude(value):
|
|
return ngettext("%.1f meter", "%.1f meters", value) % value
|
|
|
|
def humanPixelSize(value):
|
|
return ngettext("%s pixel", "%s pixels", value) % value
|
|
|
|
def humanDPI(value):
|
|
return u"%s DPI" % value
|
|
|
|
|