[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/content - dtmlpage.py:1.2

Jim Fulton jim@zope.com
Tue, 25 Mar 2003 13:37:46 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces/content
In directory cvs.zope.org:/tmp/cvs-serv26636

Modified Files:
	dtmlpage.py 
Log Message:
Fixed a spelling error.


=== Zope3/src/zope/app/interfaces/content/dtmlpage.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/interfaces/content/dtmlpage.py:1.1	Mon Jan  6 10:46:27 2003
+++ Zope3/src/zope/app/interfaces/content/dtmlpage.py	Tue Mar 25 13:37:45 2003
@@ -15,8 +15,8 @@
 $Id$
 """
 import zope.schema
-
 from zope.interface import Interface, Attribute
+from zope.app.i18n import ZopeMessageIDFactory as _
 
 class IDTMLPage(Interface):
     """DTML Pages are a persistent implementation of DTML."""
@@ -28,8 +28,8 @@
         """Get the source of the page template."""
 
     source = zope.schema.Text(
-        title=u"Source",
-        description=u"""The source od the page template.""",
+        title=_(u"Source"),
+        description=_(u"""The source of the dtml page."""),
         required=True)