[Zope3-checkins] CVS: Zope3/src/zope/app/browser/workflow/stateful - configure.zcml:1.5 testobject.zcml:1.2

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


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

Modified Files:
	configure.zcml testobject.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/workflow/stateful/configure.zcml 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/workflow/stateful/configure.zcml:1.4	Thu Jul 31 11:01:26 2003
+++ Zope3/src/zope/app/browser/workflow/stateful/configure.zcml	Sun Aug  3 13:50:07 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'
+   >
 
 
 <!-- Stateful Workflow Process Definition -->
@@ -188,4 +190,4 @@
 
 <!--include file="testobject.zcml"/-->
 
-</zopeConfigure>
+</configure>


=== Zope3/src/zope/app/browser/workflow/stateful/testobject.zcml 1.1 => 1.2 ===
--- Zope3/src/zope/app/browser/workflow/stateful/testobject.zcml:1.1	Thu Jul 31 11:01:27 2003
+++ Zope3/src/zope/app/browser/workflow/stateful/testobject.zcml	Sun Aug  3 13:50:07 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:addform
       label="Add Test Object"
@@ -18,4 +20,4 @@
       permission="zope.ManageContent"
       menu="zmi_views" title="Edit" />
 
-</zopeConfigure>
+</configure>




More information about the Zope3-Checkins mailing list