Sat, 05 Apr 2008 21:06:14 +0200 <thp@perli.net>

Make i18n help text work in the console help (gpodder --help)

	* bin/gpodder: Fix a bug that would make the localized help string of
	the CLI break; thanks to Pavel Mlcoch <pavkamlc@centrum.cz> for
	reporting this bug on the gPodder bug tracker
	(Closes: http://bugs.gpodder.org/show_bug.cgi?id=53)



git-svn-id: svn://svn.berlios.de/gpodder/trunk@653 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2008-04-05 19:13:09 +00:00
parent 39da13e57b
commit 213ab6f932
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,11 @@
Sat, 05 Apr 2008 21:06:14 +0200 <thp@perli.net>
Make i18n help text work in the console help (gpodder --help)
* bin/gpodder: Fix a bug that would make the localized help string of
the CLI break; thanks to Pavel Mlcoch <pavkamlc@centrum.cz> for
reporting this bug on the gPodder bug tracker
(Closes: http://bugs.gpodder.org/show_bug.cgi?id=53)
Fri, 04 Apr 2008 09:50:35 +0200 <thp@perli.net>
Use the correct multimedia-player icon for the transfer main menu item

View file

@ -60,7 +60,7 @@ def main( argv = sys.argv):
domain = 'gpodder'
gettext.bindtextdomain( domain, locale_dir)
gettext.textdomain( domain)
gettext.install( domain)
gettext.install(domain, locale_dir, unicode=True)
s_usage = 'usage: %%prog [options]\n\n%s' % ( __doc__.strip() )
s_version = '%%prog %s' % ( __version__ )