=== modified file 'plugins/user_interface.py' --- plugins/user_interface.py 2009-02-19 04:40:40 +0000 +++ plugins/user_interface.py 2009-03-23 00:51:42 +0000 @@ -21,14 +21,18 @@ from checkbox.properties import Path, String from checkbox.plugin import Plugin +import gettext +from gettext import gettext as _ class UserInterface(Plugin): interface_module = String() interface_class = String() + gettext.textdomain("checkbox") + # Title of the user interface - title = String(default="System Testing") + title = _("System Testing") # Path where data files are stored. data_path = Path(required=False)