~joshuascotton/entertainer/pluginsV2

« back to all changes in this revision

Viewing changes to entertainerlib/frontend/gui/screens/feed_entry_screen.py

  • Committer: Paul Hummer
  • Date: 2008-08-06 05:23:49 UTC
  • mfrom: (258.1.19 new-i18n-branch)
  • Revision ID: paul@ubuntu.com-20080806052349-f4spdhg5ixbis64a
Translations are now supported in Entertainer!

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
        update.set_font_name(self.theme.getFont() + " " + \
110
110
            str(self.ui.y(0.0313)) + "px")
111
111
        update.set_color(self.theme.getColor("title"))
112
 
        update.set_text("Updated")
 
112
        update.set_text(_("Updated"))
113
113
        update.set_position(self.ui.x(0.78), self.ui.y(0.1))
114
114
        update.show()
115
115
        self.group.add(update)
120
120
            entry_text.set_font_name(self.theme.getFont() + " " + \
121
121
                str(self.ui.y(0.04167)) + "px")
122
122
            entry_text.set_color(self.theme.getColor("text"))
123
 
            entry_text.set_text("Entry has no content")
 
123
            entry_text.set_text(_("Entry has no content"))
124
124
            x_position = int((self.ui.STAGE_WIDTH - entry_text.get_width()) / 2)
125
125
            entry_text.set_position(x_position, self.ui.y(0.48))
126
126
            entry_text.show()