1.1 --- a/sayings.py Fri Jan 24 17:13:58 2014 +0100
1.2 +++ b/sayings.py Sat Jan 25 09:38:46 2014 +0100
1.3 @@ -2,25 +2,26 @@
1.4 from random import shuffle
1.5
1.6 def get_saying():
1.7 - sayings = [(_('The Zen of Python, by Tim Peters'), _('__Tim Peters, The Zen of Python')),
1.8 - (_("Beautiful is better than ugly."), _('__Tim Peters, The Zen of Python')),
1.9 - (_("Explicit is better than implicit."), _('__Tim Peters, The Zen of Python')),
1.10 - (_("Simple is better than complex."), _('__Tim Peters, The Zen of Python')),
1.11 - (_("Complex is better than complicated."), _('__Tim Peters, The Zen of Python')),
1.12 - (_("Flat is better than nested."), _('__Tim Peters, The Zen of Python')),
1.13 - (_("Sparse is better than dense."), _('__Tim Peters, The Zen of Python')),
1.14 - (_("Readability counts."), _('__Tim Peters, The Zen of Python')),
1.15 - (_("Special cases aren't special enough to break the rules."), _('__Tim Peters, The Zen of Python')),
1.16 - (_("Although practicality beats purity."), _('__Tim Peters, The Zen of Python')),
1.17 - (_("Errors should never pass silently."), _('__Tim Peters, The Zen of Python')),
1.18 - (_("Unless explicitly silenced."), _('__Tim Peters, The Zen of Python')),
1.19 - (_("In the face of ambiguity, refuse the temptation to guess."), _('__Tim Peters, The Zen of Python')),
1.20 - (_("Although that way may not be obvious at first unless you're Dutch."), _('__Tim Peters, The Zen of Python')),
1.21 - (_("Now is better than never."), _('__Tim Peters, The Zen of Python')),
1.22 - (_("Although never is often better than *right* now."), _('__Tim Peters, The Zen of Python')),
1.23 - (_("If the implementation is hard to explain, it's a bad idea."), _('__Tim Peters, The Zen of Python')),
1.24 - (_("If the implementation is easy to explain, it may be a good idea."), _('__Tim Peters, The Zen of Python')),
1.25 - (_("Namespaces are one honking great idea -- let's do more of those!"), _('__Tim Peters, The Zen of Python')),
1.26 + sayings = [(_(u'The Zen of Python, by Tim Peters'), _(u'__Tim Peters, The Zen of Python')),
1.27 + (_(u"Beautiful is better than ugly."), _(u'__Tim Peters, The Zen of Python')),
1.28 + (_(u"Explicit is better than implicit."), _(u'__Tim Peters, The Zen of Python')),
1.29 + (_(u"Simple is better than complex."), _(u'__Tim Peters, The Zen of Python')),
1.30 + (_(u"Complex is better than complicated."), _(u'__Tim Peters, The Zen of Python')),
1.31 + (_(u"Flat is better than nested."), _(u'__Tim Peters, The Zen of Python')),
1.32 + (_(u"Sparse is better than dense."), _(u'__Tim Peters, The Zen of Python')),
1.33 + (_(u"Readability counts."), _(u'__Tim Peters, The Zen of Python')),
1.34 + (_(u"Special cases aren't special enough to break the rules."), _(u'__Tim Peters, The Zen of Python')),
1.35 + (_(u"Although practicality beats purity."), _(u'__Tim Peters, The Zen of Python')),
1.36 + (_(u"Errors should never pass silently."), _(u'__Tim Peters, The Zen of Python')),
1.37 + (_(u"Unless explicitly silenced."), _(u'__Tim Peters, The Zen of Python')),
1.38 + (_(u"In the face of ambiguity, refuse the temptation to guess."), _(u'__Tim Peters, The Zen of Python')),
1.39 + (_(u"Although that way may not be obvious at first unless you're Dutch."), _(u'__Tim Peters, The Zen of Python')),
1.40 + (_(u"Now is better than never."), _(u'__Tim Peters, The Zen of Python')),
1.41 + (_(u"Although never is often better than *right* now."), _(u'__Tim Peters, The Zen of Python')),
1.42 + (_(u"If the implementation is hard to explain, it's a bad idea."), _(u'__Tim Peters, The Zen of Python')),
1.43 + (_(u"If the implementation is easy to explain, it may be a good idea."), _(u'__Tim Peters, The Zen of Python')),
1.44 + (_(u"Namespaces are one honking great idea -- let's do more of those!"), _(u'__Tim Peters, The Zen of Python')),
1.45 + (_(u"I once tried Java, but it was too complicated for me, Python is easier."),_(u'__Valentin Pratz, novice programmers')),
1.46 ]
1.47
1.48 shuffle(sayings)