diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 3eaf76a6c..839e02cf3 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -4403,6 +4403,12 @@ msgstr "The category name with {0}: \"{1}\" already exists." msgid "The category with {0}: '{1}' does not exist." msgstr "The category with {0}: '{1}' does not exist." +# TRANSLATION +# LABEL/ID_CATEGORY_PROCESS +#: LABEL/ID_CATEGORY_PROCESS +msgid "Process Category" +msgstr "Process Category" + # TRANSLATION # LABEL/ID_CATEGORY_SUCCESS_DELETE #: LABEL/ID_CATEGORY_SUCCESS_DELETE diff --git a/workflow/engine/controllers/appProxy.php b/workflow/engine/controllers/appProxy.php index f5014252a..2b3d8e237 100644 --- a/workflow/engine/controllers/appProxy.php +++ b/workflow/engine/controllers/appProxy.php @@ -393,6 +393,11 @@ class AppProxy extends HttpProxyController 'label' => G::LoadTranslation('ID_PROCESS_NAME') . ': ', 'value' => $processInfo['PRO_TITLE'], ], + $i++ => [ // Process Category + 'id' => 'CATEGORY', + 'label' => G::LoadTranslation('ID_CATEGORY_PROCESS') . ': ', + 'value' => $processInfo['PRO_CATEGORY_LABEL'], + ], $i++ => [ // Process description 'id' => 'PRO_DESCRIPTION', 'label' => G::LoadTranslation('ID_PRO_DESCRIPTION') . ': ', diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 23883a55c..380aa0c8e 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -57548,6 +57548,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_CATEGORY_NAME','en','Category Name','2014-01-15') , ( 'LABEL','ID_CATEGORY_NAME_ALREADY_EXISTS','en','The category name with {0}: "{1}" already exists.','2014-06-12') , ( 'LABEL','ID_CATEGORY_NOT_EXIST','en','The category with {0}: ''{1}'' does not exist.','2014-05-29') , +( 'LABEL','ID_CATEGORY_PROCESS','en','Process Category','2021-11-25') , ( 'LABEL','ID_CATEGORY_SUCCESS_DELETE','en','Process category has been deleted correctly.','2014-01-15') , ( 'LABEL','ID_CATEGORY_SUCCESS_NEW','en','Process category has been created correctly.','2014-01-15') , ( 'LABEL','ID_CATEGORY_SUCCESS_UPDATE','en','Process category has been updated correctly.','2014-01-15') ,