[Zope3-checkins] CVS: Zope3/src/zope/app/browser/dublincore - configure.zcml:1.7

Philipp von Weitershausen philikon at philikon.de
Sun Aug 3 14:50:31 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/browser/dublincore
In directory cvs.zope.org:/tmp/cvs-serv11298/browser/dublincore

Modified Files:
	configure.zcml 
Log Message:
Made menu, factory and form titles and labels MessageIDs instead of plain
TextLines/Texts. That means that they'll be translated as soon as the
translation data is in place.

The change affected most ZCML files and tests that make up ZCML code as
they had to specify an i18n_domain. This is 'zope' for all of Zope3.

The change also breaks many Zope3 products as they probably do not specify
an i18n_domain. A fix for them will follow immediately.


=== Zope3/src/zope/app/browser/dublincore/configure.zcml 1.6 => 1.7 ===
--- Zope3/src/zope/app/browser/dublincore/configure.zcml:1.6	Fri Apr 11 18:15:45 2003
+++ Zope3/src/zope/app/browser/dublincore/configure.zcml	Sun Aug  3 13:48:57 2003
@@ -1,6 +1,8 @@
-<zopeConfigure
+<configure
    xmlns="http://namespaces.zope.org/zope"
-   xmlns:browser="http://namespaces.zope.org/browser">
+   xmlns:browser="http://namespaces.zope.org/browser"
+   i18n_domain='zope'
+   >
 
   <browser:pages
       for="zope.app.interfaces.annotation.IAnnotatable"
@@ -15,6 +17,6 @@
     <browser:page name="MetaDataBox"
                   template="box.pt" />
 
-    </browser:pages>
+  </browser:pages>
 
-</zopeConfigure>
+</configure>




More information about the Zope3-Checkins mailing list