Commit dd6e0735 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

translate American English to British English.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25528 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a8b79d83
...@@ -62,7 +62,7 @@ payment_transaction = context\n ...@@ -62,7 +62,7 @@ payment_transaction = context\n
if payment_transaction.getSimulationState() == "draft":\n if payment_transaction.getSimulationState() == "draft":\n
payment_transaction.portal_workflow.doActionFor(\n payment_transaction.portal_workflow.doActionFor(\n
payment_transaction, \'plan_action\',\n payment_transaction, \'plan_action\',\n
comment=translateString("Initialized by Delivery Builder."))\n comment=translateString("Initialised by Delivery Builder."))\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
863 864
\ No newline at end of file \ No newline at end of file
...@@ -92,7 +92,7 @@ if invoice.getSimulationState() == \'draft\':\n ...@@ -92,7 +92,7 @@ if invoice.getSimulationState() == \'draft\':\n
try :\n try :\n
context.getPortalObject().portal_workflow.doActionFor(\n context.getPortalObject().portal_workflow.doActionFor(\n
invoice, \'confirm_action\',\n invoice, \'confirm_action\',\n
comment=translateString(\'Initialized by Delivery Builder.\'),\n comment=translateString(\'Initialised by Delivery Builder.\'),\n
skip_period_validation=1)\n skip_period_validation=1)\n
except WorkflowException, e:\n except WorkflowException, e:\n
# The user cannot pass the transition, it\'s OK\n # The user cannot pass the transition, it\'s OK\n
...@@ -100,7 +100,7 @@ if invoice.getSimulationState() == \'draft\':\n ...@@ -100,7 +100,7 @@ if invoice.getSimulationState() == \'draft\':\n
\n \n
if invoice.getSimulationState() == \'draft\':\n if invoice.getSimulationState() == \'draft\':\n
# call the workflow method, if the user cannot perform this operation.\n # call the workflow method, if the user cannot perform this operation.\n
invoice.confirm(comment=translateString(\'Initialized by Delivery Builder.\'),)\n invoice.confirm(comment=translateString(\'Initialised by Delivery Builder.\'),)\n
\n \n
\n \n
# First set the invoice in the building state on the causality workflow\n # First set the invoice in the building state on the causality workflow\n
......
199 200
\ No newline at end of file \ No newline at end of file
...@@ -61,7 +61,7 @@ if packing_list_state == "draft":\n ...@@ -61,7 +61,7 @@ if packing_list_state == "draft":\n
packing_list.portal_workflow.doActionFor(\n packing_list.portal_workflow.doActionFor(\n
packing_list,\n packing_list,\n
\'confirm_action\',\n \'confirm_action\',\n
comment=Message(\'erp5_ui\', \'Initialized by Delivery Builder\'))\n comment=Message(\'erp5_ui\', \'Initialised by Delivery Builder\'))\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
387 388
\ No newline at end of file \ No newline at end of file
...@@ -64,7 +64,7 @@ packing_list = context\n ...@@ -64,7 +64,7 @@ packing_list = context\n
# Modify state\n # Modify state\n
packing_list_state = packing_list.getSimulationState()\n packing_list_state = packing_list.getSimulationState()\n
if packing_list_state == "draft":\n if packing_list_state == "draft":\n
packing_list.confirm(comment=translateString(\'Initialized by Delivery Builder.\'))\n packing_list.confirm(comment=translateString(\'Initialised by Delivery Builder.\'))\n
</string> </value> </string> </value>
</item> </item>
<item> <item>
......
...@@ -67,7 +67,7 @@ packing_list.PackingList_copyOrderProperties()\n ...@@ -67,7 +67,7 @@ packing_list.PackingList_copyOrderProperties()\n
packing_list_state = packing_list.getSimulationState()\n packing_list_state = packing_list.getSimulationState()\n
\n \n
if packing_list_state == "draft":\n if packing_list_state == "draft":\n
packing_list.confirm(comment=translateString(\'Initialized by Delivery Builder.\'))\n packing_list.confirm(comment=translateString(\'Initialised by Delivery Builder.\'))\n
\n \n
# First set the packing_list in the building state\n # First set the packing_list in the building state\n
packing_list.startBuilding()\n packing_list.startBuilding()\n
......
592 593
\ No newline at end of file \ No newline at end of file
...@@ -106,7 +106,7 @@ elif len(related_list) == 1:\n ...@@ -106,7 +106,7 @@ elif len(related_list) == 1:\n
"that_title" : context.getTitleOrId() }), \'utf8\'))\n "that_title" : context.getTitleOrId() }), \'utf8\'))\n
else :\n else :\n
url = context.absolute_url()\n url = context.absolute_url()\n
message = Base_translateString("You are not authorized to view the related document.")\n message = Base_translateString("You are not authorised to view the related document.")\n
relation_found = 0\n relation_found = 0\n
\n \n
else:\n else:\n
...@@ -125,7 +125,7 @@ else:\n ...@@ -125,7 +125,7 @@ else:\n
uid=get_uid_method(portal_type=portal_type,\n uid=get_uid_method(portal_type=portal_type,\n
checked_permission=\'View\')))\n checked_permission=\'View\')))\n
\n \n
# compute the list of objects we are actually authorized to view\n # compute the list of objects we are actually authorised to view\n
related_object_list = []\n related_object_list = []\n
for path in search_method(portal_type=portal_type) :\n for path in search_method(portal_type=portal_type) :\n
obj = context.getPortalObject().restrictedTraverse(path, None)\n obj = context.getPortalObject().restrictedTraverse(path, None)\n
...@@ -138,7 +138,7 @@ else:\n ...@@ -138,7 +138,7 @@ else:\n
related_object_list.append(obj)\n related_object_list.append(obj)\n
if len(related_object_list) == 0 :\n if len(related_object_list) == 0 :\n
url = context.absolute_url()\n url = context.absolute_url()\n
message = Base_translateString("You are not authorized to view any related document.")\n message = Base_translateString("You are not authorised to view any related document.")\n
relation_found = 0\n relation_found = 0\n
else :\n else :\n
request=context.REQUEST\n request=context.REQUEST\n
......
1084 1085
\ No newline at end of file \ No newline at end of file
...@@ -73,11 +73,11 @@ ...@@ -73,11 +73,11 @@
i18n:translate="" i18n:domain="ui"></option>\n i18n:translate="" i18n:domain="ui"></option>\n
</tal:block>\n </tal:block>\n
</select>\n </select>\n
<button type="submit" name="Base_doFavorite:method" title="Select Favorite"\n <button type="submit" name="Base_doFavorite:method" title="Select Favourite"\n
i18n:attributes="title" i18n:domain="ui">\n i18n:attributes="title" i18n:domain="ui">\n
<span class="image"></span>\n <span class="image"></span>\n
<span class="description"\n <span class="description"\n
i18n:translate="" i18n:domain="ui">Select Favorite</span>\n i18n:translate="" i18n:domain="ui">Select Favourite</span>\n
</button>\n </button>\n
</span>\n </span>\n
<span class="separator"><!--separator--></span>\n <span class="separator"><!--separator--></span>\n
......
642 643
\ No newline at end of file \ No newline at end of file
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