~ubuntu-branches/ubuntu/maverick/awn-extras-applets/maverick

« back to all changes in this revision

Viewing changes to applets/maintained/animal-farm/animal-farm.py

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-08-29 14:29:52 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100829142952-rhvuetyms9bv5uu7
Tags: upstream-0.4.0+bzr1372
ImportĀ upstreamĀ versionĀ 0.4.0+bzr1372

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
pygtk.require("2.0")
25
25
import gtk
26
26
 
27
 
from awn.extras import awnlib, __version__
 
27
from awn.extras import _, awnlib, __version__
28
28
import random
29
29
 
30
 
applet_name = "Animal Farm"
31
 
applet_description = "Applet that displays fortune messages"
 
30
applet_name = _("Animal Farm")
 
31
applet_description = _("Applet that displays fortune messages")
32
32
 
33
33
images_dir = os.path.join(os.path.dirname(__file__), "icons")
34
34