Commit a6bd0a42 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

capitalize the translated string as its msgid.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27307 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ed3988e5
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.CMFCore.utils import getToolByName 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.Delivery import Delivery
from Products.ERP5.Document.InventoryLine import InventoryLine from Products.ERP5.Document.InventoryLine import InventoryLine
from Products.ERP5Type.Document.DeliveryCell import DeliveryCell from Products.ERP5Type.Document.DeliveryCell import DeliveryCell
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.CMFCore.utils import getToolByName 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.ERP5.Document.AccountingTransactionLine import AccountingTransactionLine
from Products.ERP5Banking.BaobabMixin import BaobabMixin from Products.ERP5Banking.BaobabMixin import BaobabMixin
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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 from Products.ERP5.Document.Container import Container
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
from AccessControl import ClassSecurityInfo 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 Products.ERP5.Document.Resource import Resource
from zLOG import LOG from zLOG import LOG
...@@ -51,7 +51,7 @@ class CashCurrency(Resource): ...@@ -51,7 +51,7 @@ class CashCurrency(Resource):
security.declareObjectProtected(Permissions.View) security.declareObjectProtected(Permissions.View)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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 from Products.ERP5Banking.Document.BankingOperation import BankingOperation
class CashDelivery(BankingOperation): class CashDelivery(BankingOperation):
...@@ -45,7 +45,7 @@ class CashDelivery(BankingOperation): ...@@ -45,7 +45,7 @@ class CashDelivery(BankingOperation):
security.declareObjectProtected(Permissions.View) security.declareObjectProtected(Permissions.View)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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.ERP5.Document.DeliveryCell import DeliveryCell
from Products.ERP5Banking.BaobabMixin import BaobabMixin from Products.ERP5Banking.BaobabMixin import BaobabMixin
...@@ -50,7 +50,7 @@ class CashDeliveryCell(BaobabMixin, DeliveryCell): ...@@ -50,7 +50,7 @@ class CashDeliveryCell(BaobabMixin, DeliveryCell):
security.declareObjectProtected(Permissions.View) security.declareObjectProtected(Permissions.View)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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.ERP5.Document.DeliveryLine import DeliveryLine
from Products.ERP5Banking.BaobabMixin import BaobabMixin from Products.ERP5Banking.BaobabMixin import BaobabMixin
...@@ -51,7 +51,7 @@ class CashDeliveryLine(BaobabMixin, DeliveryLine): ...@@ -51,7 +51,7 @@ class CashDeliveryLine(BaobabMixin, DeliveryLine):
security.declareObjectProtected(Permissions.View) security.declareObjectProtected(Permissions.View)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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.ERP5.Document.InventoryCell import InventoryCell
from Products.ERP5Banking.Document.CashDeliveryCell import CashDeliveryCell from Products.ERP5Banking.Document.CashDeliveryCell import CashDeliveryCell
...@@ -47,7 +47,7 @@ class CashInventoryCell(InventoryCell, CashDeliveryCell): ...@@ -47,7 +47,7 @@ class CashInventoryCell(InventoryCell, CashDeliveryCell):
security.declareObjectProtected(Permissions.View) security.declareObjectProtected(Permissions.View)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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.ERP5Banking.Document.CashDeliveryLine import CashDeliveryLine
from Products.ERP5.Document.InventoryLine import InventoryLine from Products.ERP5.Document.InventoryLine import InventoryLine
...@@ -48,7 +48,7 @@ class CashInventoryLine(InventoryLine, CashDeliveryLine): ...@@ -48,7 +48,7 @@ class CashInventoryLine(InventoryLine, CashDeliveryLine):
security.declareObjectProtected(Permissions.View) security.declareObjectProtected(Permissions.View)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
from AccessControl import ClassSecurityInfo 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.ERP5.Document.DeliveryLine import DeliveryLine
from Products.ERP5Banking.BaobabMixin import BaobabMixin from Products.ERP5Banking.BaobabMixin import BaobabMixin
...@@ -46,7 +46,7 @@ class CheckOperationLine(BaobabMixin, DeliveryLine): ...@@ -46,7 +46,7 @@ class CheckOperationLine(BaobabMixin, DeliveryLine):
security.declareObjectProtected(Permissions.AccessContentsInformation) security.declareObjectProtected(Permissions.AccessContentsInformation)
# Declarative interfaces # Declarative interfaces
__implements__ = ( Interface.Variated, ) __implements__ = ( interfaces.IVariated, )
# Declarative properties # Declarative properties
property_sheets = ( PropertySheet.Base property_sheets = ( PropertySheet.Base
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment