[Erp5-report] r27306 - /erp5/trunk/products/ERP5Banking/Document/

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Jun 1 14:15:00 CEST 2009


Author: kazuhiko
Date: Mon Jun  1 14:15:00 2009
New Revision: 27306

URL: http://svn.erp5.org?rev=27306&view=rev
Log:
capitalize the translated string as its msgid.

Modified:
    erp5/trunk/products/ERP5Banking/Document/BankingOperation.py
    erp5/trunk/products/ERP5Banking/Document/BankingOperationLine.py
    erp5/trunk/products/ERP5Banking/Document/CashContainer.py
    erp5/trunk/products/ERP5Banking/Document/CashCurrency.py
    erp5/trunk/products/ERP5Banking/Document/CashDelivery.py
    erp5/trunk/products/ERP5Banking/Document/CashDeliveryCell.py
    erp5/trunk/products/ERP5Banking/Document/CashDeliveryLine.py
    erp5/trunk/products/ERP5Banking/Document/CashInventoryCell.py
    erp5/trunk/products/ERP5Banking/Document/CashInventoryLine.py
    erp5/trunk/products/ERP5Banking/Document/CheckOperationLine.py

Modified: erp5/trunk/products/ERP5Banking/Document/BankingOperation.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/BankingOperation.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/BankingOperation.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/BankingOperation.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore.utils import getToolByName
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Delivery import Delivery
 from Products.ERP5.Document.InventoryLine import InventoryLine
 from Products.ERP5Type.Document.DeliveryCell import DeliveryCell

Modified: erp5/trunk/products/ERP5Banking/Document/BankingOperationLine.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/BankingOperationLine.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/BankingOperationLine.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/BankingOperationLine.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore.utils import getToolByName
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.AccountingTransactionLine import AccountingTransactionLine
 from Products.ERP5Banking.BaobabMixin import BaobabMixin
 

Modified: erp5/trunk/products/ERP5Banking/Document/CashContainer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashContainer.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashContainer.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashContainer.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.Container import Container
 
 

Modified: erp5/trunk/products/ERP5Banking/Document/CashCurrency.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashCurrency.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashCurrency.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashCurrency.py [utf8] Mon Jun  1 14:15:00 2009
@@ -28,7 +28,7 @@
 
 from AccessControl import ClassSecurityInfo
 
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 
 from Products.ERP5.Document.Resource import Resource
 from zLOG import LOG
@@ -51,7 +51,7 @@
   security.declareObjectProtected(Permissions.View)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5Banking/Document/CashDelivery.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashDelivery.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashDelivery.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashDelivery.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5Banking.Document.BankingOperation import BankingOperation
 
 class CashDelivery(BankingOperation):
@@ -45,7 +45,7 @@
   security.declareObjectProtected(Permissions.View)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5Banking/Document/CashDeliveryCell.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashDeliveryCell.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashDeliveryCell.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashDeliveryCell.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.DeliveryCell import DeliveryCell
 from Products.ERP5Banking.BaobabMixin import BaobabMixin
 
@@ -50,7 +50,7 @@
   security.declareObjectProtected(Permissions.View)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5Banking/Document/CashDeliveryLine.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashDeliveryLine.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashDeliveryLine.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashDeliveryLine.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.DeliveryLine import DeliveryLine
 from Products.ERP5Banking.BaobabMixin import BaobabMixin
 
@@ -51,7 +51,7 @@
   security.declareObjectProtected(Permissions.View)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5Banking/Document/CashInventoryCell.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashInventoryCell.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashInventoryCell.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashInventoryCell.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.InventoryCell import InventoryCell
 from Products.ERP5Banking.Document.CashDeliveryCell import CashDeliveryCell
 
@@ -47,7 +47,7 @@
   security.declareObjectProtected(Permissions.View)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5Banking/Document/CashInventoryLine.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CashInventoryLine.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CashInventoryLine.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CashInventoryLine.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5Banking.Document.CashDeliveryLine import CashDeliveryLine
 from Products.ERP5.Document.InventoryLine import InventoryLine
 
@@ -48,7 +48,7 @@
   security.declareObjectProtected(Permissions.View)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base

Modified: erp5/trunk/products/ERP5Banking/Document/CheckOperationLine.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/Document/CheckOperationLine.py?rev=27306&r1=27305&r2=27306&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/Document/CheckOperationLine.py [utf8] (original)
+++ erp5/trunk/products/ERP5Banking/Document/CheckOperationLine.py [utf8] Mon Jun  1 14:15:00 2009
@@ -27,7 +27,7 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
+from Products.ERP5Type import Permissions, PropertySheet, Constraint, interfaces
 from Products.ERP5.Document.DeliveryLine import DeliveryLine
 from Products.ERP5Banking.BaobabMixin import BaobabMixin
 
@@ -46,7 +46,7 @@
   security.declareObjectProtected(Permissions.AccessContentsInformation)
 
   # Declarative interfaces
-  __implements__ = ( Interface.Variated, )
+  __implements__ = ( interfaces.IVariated, )
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base




More information about the Erp5-report mailing list