Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Cédric Le Ninivin
erp5
Commits
54a2b323
Commit
54a2b323
authored
Sep 07, 2018
by
Cédric Le Ninivin
Committed by
Cédric Le Ninivin
May 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Translation: Add portal_type translation customization on transition title
parent
4472929a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
3 deletions
+24
-3
product/ERP5Type/Core/Workflow.py
product/ERP5Type/Core/Workflow.py
+9
-2
product/ERP5Type/Utils.py
product/ERP5Type/Utils.py
+14
-0
product/ERP5Type/__init__.py
product/ERP5Type/__init__.py
+1
-1
No files found.
product/ERP5Type/Core/Workflow.py
View file @
54a2b323
...
...
@@ -29,7 +29,7 @@
## Used in Products.ERP5Type.patches.DCWorkflow so this needs to go first...
from
six
import
string_types
as
basestring
from
Products.ERP5Type.Utils
import
ensure_list
from
Products.ERP5Type.Utils
import
ensure_list
,
getWorkflowTransitionTranslatedTitle
from
Acquisition
import
aq_parent
,
aq_inner
from
Products.PageTemplates.Expressions
import
SecureModuleImporter
from
Products.ERP5Type.ConsistencyMessage
import
ConsistencyMessage
...
...
@@ -563,9 +563,16 @@ class Workflow(XMLObject):
fmt_data
.
_push
(
info
)
transition_reference
=
tdef
.
getReference
()
fmt_data
.
_push
({
'transition_id'
:
transition_reference
})
localizer
=
ob
.
getPortalObject
().
Localizer
selected_language
=
localizer
.
get_selected_language
()
transition_title
=
getWorkflowTransitionTranslatedTitle
(
localizer
,
self
.
id
,
selected_language
,
ob
.
getPortalType
(),
tdef
.
getActionName
()
%
fmt_data
,
)[
0
]
result
.
append
({
'id'
:
transition_reference
,
'name'
:
t
def
.
getActionName
()
%
fmt_data
,
'name'
:
t
ransition_title
,
'url'
:
tdef
.
getAction
()
%
fmt_data
,
'icon'
:
tdef
.
getIcon
()
%
fmt_data
,
'permissions'
:
(),
# Predetermined.
...
...
product/ERP5Type/Utils.py
View file @
54a2b323
...
...
@@ -391,6 +391,20 @@ def getTranslatedWorkflowStateWithPortalType(localizer, workflow_id, lang,
if
translated_message
:
return
translated_message
,
msg_id
def
getWorkflowTransitionTranslatedTitle
(
localizer
,
workflow_id
,
lang
,
portal_type
,
transition_title
):
for
msg_id
,
default
in
[
(
getMessageIdWithContext
(
transition_title
,
'transition'
,
portal_type
),
''
),
(
getMessageIdWithContext
(
transition_title
,
'transition'
,
workflow_id
),
''
),
(
transition_title
.
decode
(
'utf-8'
),
None
),
]:
translated_message
=
localizer
.
erp5_ui
.
gettext
(
msg_id
,
default
=
default
,
lang
=
lang
).
encode
(
'utf-8'
)
if
translated_message
:
return
translated_message
,
msg_id
#Get translation of msg id
def
getTranslationStringWithContext
(
self
,
msg_id
,
context
,
context_id
):
...
...
product/ERP5Type/__init__.py
View file @
54a2b323
...
...
@@ -187,7 +187,7 @@ ModuleSecurityInfo('Products.ERP5Type.Utils').declarePublic(
'sortValueList'
,
'convertToUpperCase'
,
'UpperCase'
,
'convertToMixedCase'
,
'cartesianProduct'
,
'sleep'
,
'getCommonTimeZoneList'
,
'int2letter'
,
'getMessageIdWithContext'
,
'getTranslationStringWithContext'
,
'getTranslatedWorkflowStateWithPortalType'
,
'getTranslatedWorkflowStateWithPortalType'
,
'getWorkflowTransitionTranslatedTitle'
,
'Email_parseAddressHeader'
,
'guessEncodingFromText'
,
'isValidTALESExpression'
,
'ensure_list'
,
'bytes2str'
,
'str2bytes'
,
'unicode2str'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment