From af48635e3a1327e44ce493054a7d9d4394e470d2 Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Sun, 21 Feb 2010 20:17:11 -0500 Subject: Add i18n support in .py files --- pulsecaster/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pulsecaster/config.py') diff --git a/pulsecaster/config.py b/pulsecaster/config.py index fbd1a49..2f3b576 100644 --- a/pulsecaster/config.py +++ b/pulsecaster/config.py @@ -18,14 +18,15 @@ # # Author: Paul W. Frields +from gettext import gettext as _ NAME = u'PulseCaster' VERSION = u'0.1.5' AUTHOR = u'Paul W. Frields' AUTHOR_EMAIL = u'stickster@gmail.com' -DESCRIPTION = u'PulseAudio based podcast recorder' +DESCRIPTION = _(u'PulseAudio based podcast recorder') LICENSE = u'GPLv3+' -COPYRIGHT = u'Copyright © 2009 ' + AUTHOR +COPYRIGHT = _(u'Copyright © 2009 ' + AUTHOR) KEYWORDS = u'pulseaudio podcast recorder mixer gstreamer pygtk' URL = u'http://pulsecaster.fedorahosted.org' # FIXME: Project needs a # home! -- cgit