From 6712fa8404bc2be4adee1eacd57de62a8319833d Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Wed, 22 Dec 2021 16:54:04 -0400 Subject: [PATCH 01/23] PMCORE-3610 --- .../BusinessModel/Cases/AbstractCasesTest.php | 2 + .../BusinessModel/Cases/BatchRoutingTest.php | 5 +- .../BusinessModel/Cases/CanceledTest.php | 10 +- .../BusinessModel/Cases/CasesListTest.php | 2 + .../BusinessModel/Cases/CompletedTest.php | 10 +- .../BusinessModel/Cases/DraftTest.php | 22 +++ .../BusinessModel/Cases/HomeTest.php | 2 + .../BusinessModel/Cases/InboxTest.php | 23 +++ .../BusinessModel/Cases/ParticipatedTest.php | 172 +++++++++++++++++- .../BusinessModel/Cases/PausedTest.php | 25 +++ .../BusinessModel/Cases/SearchTest.php | 2 +- .../BusinessModel/Cases/SupervisingTest.php | 30 +++ .../BusinessModel/Cases/UnassignedTest.php | 63 ++++++- .../BusinessModel/Cases/BatchRouting.php | 8 +- .../BusinessModel/Cases/Canceled.php | 7 +- .../BusinessModel/Cases/Completed.php | 7 +- 16 files changed, 373 insertions(+), 17 deletions(-) diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/AbstractCasesTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/AbstractCasesTest.php index 239caaeaf..eac1d5506 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/AbstractCasesTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/AbstractCasesTest.php @@ -18,6 +18,8 @@ use ProcessMaker\Model\User; use Tests\TestCase; /** + * Class AbstractCasesTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\AbstractCases */ class AbstractCasesTest extends TestCase diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRoutingTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRoutingTest.php index 0d0b420ff..8d7e55ab1 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRoutingTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRoutingTest.php @@ -9,6 +9,8 @@ use ProcessMaker\Model\Delegation; use Tests\TestCase; /** + * Class BatchRoutingTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\BatchRouting */ class BatchRoutingTest extends TestCase @@ -44,6 +46,7 @@ class BatchRoutingTest extends TestCase * * @covers \ProcessMaker\BusinessModel\Cases\BatchRouting::getColumnsView() * @covers \ProcessMaker\BusinessModel\Cases\BatchRouting::getData() + * @covers \ProcessMaker\BusinessModel\Cases\BatchRouting::filters() * @test */ public function it_test_extended_methods() @@ -51,7 +54,7 @@ class BatchRoutingTest extends TestCase // Create new BatchRouting object $consolidated = new BatchRouting(); $result = $consolidated->getColumnsView(); - $this->assertEmpty($result); + $this->assertNotEmpty($result); $result = $consolidated->getData(); $this->assertEmpty($result); } diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CanceledTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CanceledTest.php index 6d58ddf5e..143721296 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CanceledTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CanceledTest.php @@ -9,6 +9,8 @@ use ProcessMaker\Model\Delegation; use Tests\TestCase; /** + * Class CanceledTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Canceled */ class CanceledTest extends TestCase @@ -52,10 +54,10 @@ class CanceledTest extends TestCase public function it_test_extended_methods() { // Create new batch Canceled object - $consolidated = new Canceled(); - $result = $consolidated->getColumnsView(); - $this->assertEmpty($result); - $result = $consolidated->getData(); + $canceled = new Canceled(); + $result = $canceled->getColumnsView(); + $this->assertNotEmpty($result); + $result = $canceled->getData(); $this->assertEmpty($result); } diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CasesListTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CasesListTest.php index 961c455bd..1e8ccc7c9 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CasesListTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CasesListTest.php @@ -9,6 +9,8 @@ use ProcessMaker\Model\Delegation; use Tests\TestCase; /** + * Class CasesListTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\CasesList */ class CasesListTest extends TestCase diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CompletedTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CompletedTest.php index 6746cc585..e2f502dea 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CompletedTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/CompletedTest.php @@ -9,6 +9,8 @@ use ProcessMaker\Model\Delegation; use Tests\TestCase; /** + * Class CompletedTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Completed */ class CompletedTest extends TestCase @@ -52,10 +54,10 @@ class CompletedTest extends TestCase public function it_test_extended_methods() { // Create new batch Completed object - $consolidated = new Completed(); - $result = $consolidated->getColumnsView(); - $this->assertEmpty($result); - $result = $consolidated->getData(); + $completed = new Completed(); + $result = $completed->getColumnsView(); + $this->assertNotEmpty($result); + $result = $completed->getData(); $this->assertEmpty($result); } diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/DraftTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/DraftTest.php index 13d43a431..87f4f25eb 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/DraftTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/DraftTest.php @@ -16,6 +16,8 @@ use ProcessMaker\Model\User; use Tests\TestCase; /** + * Class DraftTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Draft */ class DraftTest extends TestCase @@ -121,6 +123,26 @@ class DraftTest extends TestCase $this->assertNotEmpty($res); } + /** + * It tests the getData method with categoryId filter + * + * @covers \ProcessMaker\BusinessModel\Cases\Draft::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Draft::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Draft::filters() + * @test + */ + public function it_filter_by_category() + { + // Create factories related to the draft cases + $cases = $this->createDraft(); + // Create new Draft object + $draft = new Draft(); + $draft->setUserId($cases['USR_ID']); + $draft->setCategoryId(2000); + $res = $draft->getData(); + $this->assertEmpty($res); + } + /** * It tests the getData method with processId filter * diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/HomeTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/HomeTest.php index 212198cf1..09a0a724b 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/HomeTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/HomeTest.php @@ -19,6 +19,8 @@ use ProcessMaker\Model\TaskUser; use Tests\TestCase; /** + * Class HomeTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Home */ class HomeTest extends TestCase diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InboxTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InboxTest.php index 647bbd117..d3c9869a1 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InboxTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InboxTest.php @@ -121,6 +121,29 @@ class InboxTest extends TestCase $this->assertNotEmpty($res); } + /** + * It tests the getData method with categoryId filter + * + * @covers \ProcessMaker\BusinessModel\Cases\Inbox::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Inbox::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Inbox::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Inbox::setCategoryId() + * @test + */ + public function it_filter_by_category() + { + // Create factories related to the to_do cases + $cases = $this->createInbox(); + // Create new Inbox object + $inbox = new Inbox(); + // Apply filters + $inbox->setUserId($cases->USR_ID); + $inbox->setCategoryId(2000); + // Call to getData method + $res = $inbox->getData(); + $this->assertEmpty($res); + } + /** * It tests the getData method with processId filter * diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/ParticipatedTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/ParticipatedTest.php index a4f00b49c..60f4b3e5b 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/ParticipatedTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/ParticipatedTest.php @@ -10,7 +10,7 @@ use ProcessMaker\Model\Delegation; use Tests\TestCase; /** - * Class InboxTest + * Class ParticipatedTest * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Participated */ @@ -61,6 +61,27 @@ class ParticipatedTest extends TestCase * * @return array */ + public function createParticipatedDraft() + { + $application = factory(Application::class)->states('draft')->create(); + $delegation = factory(Delegation::class)->states('foreign_keys')->create([ + 'APP_NUMBER' => $application->APP_NUMBER, + 'APP_UID' => $application->APP_UID, + 'DEL_THREAD_STATUS' => 'OPEN', + 'DEL_INDEX' => 1, + 'DEL_LAST_INDEX' => 1, + ]); + + return $delegation; + } + + /** + * Create participated cases factories when the case is CANCELED + * + * @param string + * + * @return array + */ public function createParticipatedCompleted() { $application = factory(Application::class)->states('completed')->create(); @@ -207,6 +228,38 @@ class ParticipatedTest extends TestCase $this->assertNotEmpty($result); } + /** + * It tests the getData the specific filter setCategoryId + * + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setFilterCases() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setUserUid() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setUserId() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setCategoryId() + * @test + */ + public function it_filter_by_category() + { + // Create factories related to the participated cases + $cases = $this->createParticipated(); + // Create new Participated object + $participated = new Participated(); + // Set the filter + $participated->setFilterCases('STARTED'); + // Set the user UID + $participated->setUserUid($cases['USR_UID']); + // Set the user ID + $participated->setUserId($cases['USR_ID']); + // Set the category + $participated->setCategoryId(3000); + // Get the data + $result = $participated->getData(); + // Asserts with the result + $this->assertEmpty($result); + } + /** * It tests the getData the specific filter setProcessId * @@ -239,6 +292,67 @@ class ParticipatedTest extends TestCase $this->assertNotEmpty($result); } + /** + * It tests the getData the specific filter setTaskId + * + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setFilterCases() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setUserUid() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setUserId() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setProcessId() + * @test + */ + public function it_filter_by_task() + { + // Create factories related to the participated cases + $cases = $this->createParticipated(); + // Create new Participated object + $participated = new Participated(); + // Set the filter + $participated->setFilterCases('STARTED'); + // Set the user UID + $participated->setUserUid($cases['USR_UID']); + // Set the user ID + $participated->setUserId($cases['USR_ID']); + // Set the task + $participated->setTaskId($cases['TAS_ID']); + // Get the data + $result = $participated->getData(); + // Asserts with the result + $this->assertNotEmpty($result); + } + + /** + * It tests the getData the specific filter setCaseNumber + * + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setCaseNumber() + * @test + */ + public function it_filter_by_specific_case() + { + // Create factories related to the participated cases + $cases = $this->createParticipated(); + // Create new Participated object + $participated = new Participated(); + // Set the filter + $participated->setFilterCases('STARTED'); + // Set the user UID + $participated->setUserUid($cases['USR_UID']); + // Set the user ID + $participated->setUserId($cases['USR_ID']); + // Set the case numbers + $participated->setCaseNumber($cases['APP_NUMBER']); + // Get the data + $result = $participated->getData(); + // Asserts with the result + $this->assertNotEmpty($result); + } + /** * It tests the getData method with case number filter * @@ -443,7 +557,7 @@ class ParticipatedTest extends TestCase * @covers \ProcessMaker\BusinessModel\Cases\Participated::setParticipatedStatus() * @test */ - public function it_get_status_in_progress() + public function it_get_status_in_progress_todo() { // Create factories related to the participated cases $cases = $this->createParticipated(); @@ -461,6 +575,60 @@ class ParticipatedTest extends TestCase $this->assertNotEmpty($result); } + /** + * It tests the specific filter setParticipatedStatus = IN_PROGRESS + * + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setParticipatedStatus() + * @test + */ + public function it_get_status_in_started_and_completed() + { + // Create factories related to the participated cases + $cases = $this->createParticipatedCompleted(); + // Create new Participated object + $participated = new Participated(); + // Set the user UID + $participated->setUserUid($cases->USR_UID); + // Set the user ID + $participated->setUserId($cases->USR_ID); + // Set participated status + $participated->setParticipatedStatus('STARTED'); + // Get the data + $result = $participated->getData(); + // Asserts with the result + $this->assertNotEmpty($result); + } + + /** + * It tests the specific filter setParticipatedStatus = IN_PROGRESS + * + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Participated::setParticipatedStatus() + * @test + */ + public function it_get_status_started_and_draft() + { + // Create factories related to the participated cases + $cases = $this->createParticipatedDraft(); + // Create new Participated object + $participated = new Participated(); + // Set the user UID + $participated->setUserUid($cases->USR_UID); + // Set the user ID + $participated->setUserId($cases->USR_ID); + // Set participated status + $participated->setParticipatedStatus('STARTED'); + // Get the data + $result = $participated->getData(); + // Asserts with the result + $this->assertNotEmpty($result); + } + /** * It tests the specific filter setParticipatedStatus = STARTED * diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/PausedTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/PausedTest.php index c384325e8..8ba31b48f 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/PausedTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/PausedTest.php @@ -300,6 +300,31 @@ class PausedTest extends TestCase $this->assertNotEmpty($res); } + /** + * It tests the getData method with categoryId filter + * + * @covers \ProcessMaker\BusinessModel\Cases\Paused::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Paused::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Paused::filters() + * @test + */ + public function it_filter_by_category() + { + // Create factories related to the paused cases + $cases = $this->createPaused(); + // Create new Paused object + $paused = new Paused(); + // Set the user UID + $paused->setUserUid($cases->USR_UID); + // Set the user ID + $paused->setUserId($cases->USR_ID); + $paused->setCategoryId(2000); + // Get the data + $res = $paused->getData(); + // Asserts + $this->assertEmpty($res); + } + /** * It tests the getData method with processId filter * diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SearchTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SearchTest.php index 010ddebef..8ababa0be 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SearchTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SearchTest.php @@ -10,7 +10,7 @@ use ProcessMaker\Model\Delegation; use Tests\TestCase; /** - * Class InboxTest + * Class SearchTest * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Search */ diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SupervisingTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SupervisingTest.php index 250f9570b..dca0559c3 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SupervisingTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/SupervisingTest.php @@ -15,6 +15,8 @@ use ProcessMaker\Model\User; use Tests\TestCase; /** + * Class SupervisingTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Supervising */ class SupervisingTest extends TestCase @@ -405,6 +407,34 @@ class SupervisingTest extends TestCase $this->assertNotEmpty($result); } + /** + * Tests the specific filter category + * + * @covers \ProcessMaker\BusinessModel\Cases\Supervising::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Supervising::getColumnsView() + * @covers \ProcessMaker\BusinessModel\Cases\Supervising::filters() + * @covers \ProcessMaker\BusinessModel\Cases\Supervising::setUserUid() + * @covers \ProcessMaker\BusinessModel\Cases\Supervising::setUserId() + * @covers \ProcessMaker\BusinessModel\Cases\Supervising::setCategoryId() + * @test + */ + public function it_filter_by_category() + { + $cases = $this->createSupervising(); + // Instance the Supervising object + $supervising = new Supervising(); + // Set the user UID + $supervising->setUserUid($cases['USR_UID']); + // Set the user ID + $supervising->setUserId($cases['USR_ID']); + // Set the process + $supervising->setCategoryId(2000); + // Get the data + $result = $supervising->getData(); + // Asserts with the result + $this->assertEmpty($result); + } + /** * Tests the specific filter process * diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/UnassignedTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/UnassignedTest.php index e36231d13..20e0b011f 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/UnassignedTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/Cases/UnassignedTest.php @@ -22,6 +22,8 @@ use ProcessMaker\Model\User; use Tests\TestCase; /** + * Class UnassignedTest + * * @coversDefaultClass \ProcessMaker\BusinessModel\Cases\Unassigned */ class UnassignedTest extends TestCase @@ -79,6 +81,13 @@ class UnassignedTest extends TestCase 'TU_RELATION' => $relation, //Related to the user 'TU_TYPE' => 1 ]); + //Create the previous delegation before self-service + $delegation = factory(Delegation::class)->create([ + 'APP_NUMBER' => $application->APP_NUMBER, + 'PRO_ID' => $process->PRO_ID, + 'DEL_THREAD_STATUS' => 'CLOSED', + 'DEL_DELEGATE_DATE' => date('Y-m-d H:i:s', strtotime("-$i year")) + ]); //Create the register in delegation relate to self-service $delegation = factory(Delegation::class)->create([ 'APP_NUMBER' => $application->APP_NUMBER, @@ -86,6 +95,7 @@ class UnassignedTest extends TestCase 'PRO_ID' => $process->PRO_ID, 'DEL_THREAD_STATUS' => 'OPEN', 'USR_ID' => 0, + 'DEL_PREVIOUS' => $delegation->DEL_INDEX, 'DEL_DELEGATE_DATE' => date('Y-m-d H:i:s', strtotime("-$i year")) ]); } @@ -143,6 +153,13 @@ class UnassignedTest extends TestCase 'ASSIGNEE_ID' => ($userAssignee) ? $user->USR_ID : $group->GRP_ID, 'ASSIGNEE_TYPE' => $relation ]); + //Create the previous delegation before self-service + $delegation = factory(Delegation::class)->create([ + 'APP_NUMBER' => $application->APP_NUMBER, + 'PRO_ID' => $process->PRO_ID, + 'DEL_THREAD_STATUS' => 'CLOSED', + 'DEL_DELEGATE_DATE' => date('Y-m-d H:i:s', strtotime("-$i year")) + ]); //Create the register in delegation relate to self-service $delegation = factory(Delegation::class)->create([ 'APP_NUMBER' => $application->APP_NUMBER, @@ -151,6 +168,7 @@ class UnassignedTest extends TestCase 'PRO_ID' => $process->PRO_ID, 'DEL_THREAD_STATUS' => 'OPEN', 'USR_ID' => 0, + 'DEL_PREVIOUS' => $delegation->DEL_INDEX, 'DEL_DELEGATE_DATE' => date('Y-m-d H:i:s', strtotime("-$i year")) ]); } @@ -378,7 +396,30 @@ class UnassignedTest extends TestCase } /** - * This ensures get data from self-service-user-assigned with filter setRangeCasesFromTo + * This ensures get data from self-service-user-assigned with filter setCategoryId + * + * @covers \ProcessMaker\BusinessModel\Cases\Unassigned::getData() + * @covers \ProcessMaker\BusinessModel\Cases\Unassigned::filters() + * @test + */ + public function it_filter_by_category() + { + // Create factories related to the unassigned cases + $cases = $this->createSelfServiceUserOrGroup(); + // Create new object + $unassigned = new Unassigned(); + // Apply filters + $unassigned->setUserUid($cases['taskUser']->USR_UID); + $unassigned->setUserId($cases['delegation']->USR_ID); + $unassigned->setCategoryId(2000); + // Call to getData method + $res = $unassigned->getData(); + // This assert that the expected numbers of results are returned + $this->assertEmpty($res); + } + + /** + * This ensures get data from self-service-user-assigned with filter setRangeCasesFromTo, setCasesNumbers, setCaseUid * * @covers \ProcessMaker\BusinessModel\Cases\Unassigned::getData() * @covers \ProcessMaker\BusinessModel\Cases\Unassigned::filters() @@ -390,11 +431,29 @@ class UnassignedTest extends TestCase $cases = $this->createSelfServiceUserOrGroup(); // Create new object $unassigned = new Unassigned(); - // Apply filters + $unassigned->setUserUid($cases['taskUser']->USR_UID); + $unassigned->setUserId($cases['delegation']->USR_ID); + $unassigned->setCasesNumbers([$cases['delegation']->APP_NUMBER]); + $unassigned->setRangeCasesFromTo([]); + // Create new object + $unassigned = new Unassigned(); + $unassigned->setUserUid($cases['taskUser']->USR_UID); + $unassigned->setUserId($cases['delegation']->USR_ID); + $rangeOfCases = $cases['delegation']->APP_NUMBER . "-" . $cases['delegation']->APP_NUMBER; + $unassigned->setCasesNumbers([]); + $unassigned->setRangeCasesFromTo([$rangeOfCases]); + // Create new object + $unassigned = new Unassigned(); $unassigned->setUserUid($cases['taskUser']->USR_UID); $unassigned->setUserId($cases['delegation']->USR_ID); $rangeOfCases = $cases['delegation']->APP_NUMBER . "-" . $cases['delegation']->APP_NUMBER; $unassigned->setRangeCasesFromTo([$rangeOfCases]); + $unassigned->setCasesNumbers([$cases['delegation']->APP_NUMBER]); + // Create new object + $unassigned = new Unassigned(); + $unassigned->setUserUid($cases['taskUser']->USR_UID); + $unassigned->setUserId($cases['delegation']->USR_ID); + $unassigned->setCaseUid($cases['delegation']->APP_UID); // Call to getData method $res = $unassigned->getData(); // This assert that the expected numbers of results are returned diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRouting.php b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRouting.php index 449accfbd..8c8bf8e4c 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRouting.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/BatchRouting.php @@ -3,11 +3,15 @@ namespace ProcessMaker\BusinessModel\Cases; use ProcessMaker\Model\Consolidated; +use ProcessMaker\Model\Delegation; class BatchRouting extends AbstractCases { // Columns to see in the cases list - public $columnsView = []; + public $columnsView = [ + // Columns view in the cases list + 'APP_DELEGATION.APP_NUMBER', // Case # + ]; /** * Get the columns related to the cases list @@ -37,6 +41,8 @@ class BatchRouting extends AbstractCases */ public function getData() { + $query = Delegation::query()->select($this->getColumnsView()); + $this->filters($query); // todo, the list for consolidated cases was not defined for the new HOME return []; } diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Canceled.php b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Canceled.php index 2fba4fe06..f8ea15d4b 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Canceled.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Canceled.php @@ -7,7 +7,10 @@ use ProcessMaker\Model\Delegation; class Canceled extends AbstractCases { // Columns to see in the cases list - public $columnsView = []; + public $columnsView = [ + // Columns view in the cases list + 'APP_DELEGATION.APP_NUMBER', // Case # + ]; /** * Get the columns related to the cases list @@ -37,6 +40,8 @@ class Canceled extends AbstractCases */ public function getData() { + $query = Delegation::query()->select($this->getColumnsView()); + $this->filters($query); // todo, the list for canceled cases was not defined return []; } diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Completed.php b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Completed.php index 896817b90..6122df51b 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Completed.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/Completed.php @@ -7,7 +7,10 @@ use ProcessMaker\Model\Delegation; class Completed extends AbstractCases { // Columns to see in the cases list - public $columnsView = []; + public $columnsView = [ + // Columns view in the cases list + 'APP_DELEGATION.APP_NUMBER', // Case # + ]; /** * Get the columns related to the cases list @@ -37,6 +40,8 @@ class Completed extends AbstractCases */ public function getData() { + $query = Delegation::query()->select($this->getColumnsView()); + $this->filters($query); // todo, the list for completed cases was defined in participated return []; } From c5753f6b1ac1e4b9ba21561e2fb4b8de6665b5b7 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 4 Jan 2022 20:12:31 +0000 Subject: [PATCH 02/23] PMCORE-3616 --- .../js/home/TaskMetrics/VueChartLvZero.vue | 8 +- .../assets/js/home/TaskMetrics/VueCharts.vue | 189 ++++++++---------- 2 files changed, 83 insertions(+), 114 deletions(-) diff --git a/resources/assets/js/home/TaskMetrics/VueChartLvZero.vue b/resources/assets/js/home/TaskMetrics/VueChartLvZero.vue index 1b04518a1..302427f48 100644 --- a/resources/assets/js/home/TaskMetrics/VueChartLvZero.vue +++ b/resources/assets/js/home/TaskMetrics/VueChartLvZero.vue @@ -70,7 +70,7 @@ export default { label: that.$i18n.t("ID_INBOX"), onClick() { that.$emit("updateDataLevel", { - id: that.$i18n.t("ID_INBOX"), + id: "inbox", name: that.$i18n.t("ID_INBOX"), level: 1, color: "#179a6e", @@ -82,7 +82,7 @@ export default { label: this.$i18n.t("ID_DRAFT"), onClick() { that.$emit("updateDataLevel", { - id: that.$i18n.t("ID_DRAFT"), + id: "draft", name: that.$i18n.t("ID_DRAFT"), level: 1, color: "#feb019", @@ -94,7 +94,7 @@ export default { label: this.$i18n.t("ID_PAUSED"), onClick() { that.$emit("updateDataLevel", { - id: that.$i18n.t("ID_PAUSED"), + id:"paused", name: that.$i18n.t("ID_PAUSED"), level: 1, color: "#008ffb", @@ -106,7 +106,7 @@ export default { label: this.$i18n.t("ID_UNASSIGNED"), onClick() { that.$emit("updateDataLevel", { - id: that.$i18n.t("ID_UNASSIGNED"), + id: "unassigned", name: that.$i18n.t("ID_UNASSIGNED"), level: 1, color: "#8f99a0", diff --git a/resources/assets/js/home/TaskMetrics/VueCharts.vue b/resources/assets/js/home/TaskMetrics/VueCharts.vue index ca46e149e..0f8a8cc81 100644 --- a/resources/assets/js/home/TaskMetrics/VueCharts.vue +++ b/resources/assets/js/home/TaskMetrics/VueCharts.vue @@ -1,25 +1,28 @@ - \ No newline at end of file + From e0d74e82115888d386cb03c3e669705fdfa7cf7d Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Wed, 5 Jan 2022 17:07:21 +0000 Subject: [PATCH 03/23] PMCORE-3615 --- resources/assets/js/home/TaskMetrics/Breadcrumb.vue | 0 resources/assets/js/home/TaskMetrics/TaskMetrics.vue | 2 +- .../content/translations/english/processmaker.en.po | 8 +++++++- workflow/engine/data/mysql/insert.sql | 1 + 4 files changed, 9 insertions(+), 2 deletions(-) delete mode 100644 resources/assets/js/home/TaskMetrics/Breadcrumb.vue diff --git a/resources/assets/js/home/TaskMetrics/Breadcrumb.vue b/resources/assets/js/home/TaskMetrics/Breadcrumb.vue deleted file mode 100644 index e69de29bb..000000000 diff --git a/resources/assets/js/home/TaskMetrics/TaskMetrics.vue b/resources/assets/js/home/TaskMetrics/TaskMetrics.vue index 430e5a908..87356e036 100644 --- a/resources/assets/js/home/TaskMetrics/TaskMetrics.vue +++ b/resources/assets/js/home/TaskMetrics/TaskMetrics.vue @@ -3,7 +3,7 @@

- Task metrics + {{ $t("ID_TASK_METRICS") }}

diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 382065b29..8283aff90 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -53335,4 +53335,10 @@ msgstr "Sorry, No Solid icons found!" # LABEL/ID_SELECT_PROCESS_DRILL #: LABEL/ID_SELECT_PROCESS_DRILL msgid "Select a process to have the Drilling Down Options" -msgstr "Select a process to have the Drilling Down Options" \ No newline at end of file +msgstr "Select a process to have the Drilling Down Options" + +# TRANSLATION +# LABEL/ID_TASK_METRICS +#: LABEL/ID_TASK_METRICS +msgid "Task metrics" +msgstr "Task metrics" \ No newline at end of file diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index cc6e5b9eb..408812c16 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61306,6 +61306,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_TASK_IN_PROGRESS','en','Task in Progress','2014-01-15') , ( 'LABEL','ID_TASK_NAME','en','Task Name','2020-12-16') , +( 'LABEL','ID_TASK_METRICS','en','Task metrics','2021-01-05') , ( 'LABEL','ID_TASK_NOT_EXIST','en','The task with {0}: ''{1}'' does not exist.','2014-05-29') , ( 'LABEL','ID_TASK_NOT_FOUND','en','Task not found for id: {0}','2014-05-21') , ( 'LABEL','ID_TASK_NOT_RELATED','en','[Not related to a task]','2014-01-15') , From 680487dd94c6175ab1937f8d4be237a0781399b3 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Wed, 5 Jan 2022 20:21:16 +0000 Subject: [PATCH 04/23] update update update --- .../translations/english/processmaker.en.po | 14 +++++++------- workflow/engine/data/mysql/insert.sql | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 8283aff90..62c41e2a6 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -26201,6 +26201,12 @@ msgstr "Task in Progress" msgid "Task Name" msgstr "Task Name" +# TRANSLATION +# LABEL/ID_TASK_METRICS +#: LABEL/ID_TASK_METRICS +msgid "Task metrics" +msgstr "Task metrics" + # TRANSLATION # LABEL/ID_TASK_NOT_EXIST #: LABEL/ID_TASK_NOT_EXIST @@ -53335,10 +53341,4 @@ msgstr "Sorry, No Solid icons found!" # LABEL/ID_SELECT_PROCESS_DRILL #: LABEL/ID_SELECT_PROCESS_DRILL msgid "Select a process to have the Drilling Down Options" -msgstr "Select a process to have the Drilling Down Options" - -# TRANSLATION -# LABEL/ID_TASK_METRICS -#: LABEL/ID_TASK_METRICS -msgid "Task metrics" -msgstr "Task metrics" \ No newline at end of file +msgstr "Select a process to have the Drilling Down Options" \ No newline at end of file diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 408812c16..ef3173e02 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61306,7 +61306,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_TASK_IN_PROGRESS','en','Task in Progress','2014-01-15') , ( 'LABEL','ID_TASK_NAME','en','Task Name','2020-12-16') , -( 'LABEL','ID_TASK_METRICS','en','Task metrics','2021-01-05') , +( 'LABEL','ID_TASK_METRICS','en','Task metrics','2022-01-05') , ( 'LABEL','ID_TASK_NOT_EXIST','en','The task with {0}: ''{1}'' does not exist.','2014-05-29') , ( 'LABEL','ID_TASK_NOT_FOUND','en','Task not found for id: {0}','2014-05-21') , ( 'LABEL','ID_TASK_NOT_RELATED','en','[Not related to a task]','2014-01-15') , From ccacc0813aea97f35e4337d1e895f2ba9c4111db Mon Sep 17 00:00:00 2001 From: dheeyi william Date: Thu, 6 Jan 2022 15:06:24 -0400 Subject: [PATCH 05/23] Users are able to access the plugins tab in ADMIN even if they dont have the permission "PM_SETUP_PLUGINS" in their role --- workflow/engine/menus/setup.php | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/workflow/engine/menus/setup.php b/workflow/engine/menus/setup.php index 7aca46ec4..3c8d4a5b3 100755 --- a/workflow/engine/menus/setup.php +++ b/workflow/engine/menus/setup.php @@ -385,14 +385,19 @@ if ($licenseStatusInfo["message"] != "") { /*----------------------------------********---------------------------------*/ if ($RBAC->userCanAccess('PM_SETUP') == 1) { /*----------------------------------********---------------------------------*/ - $G_TMP_MENU->AddIdRawOption( - 'PMENTERPRISE', - '../enterprise/addonsStore', - G::LoadTranslation('ID_MENU_NAME') . $licStatusMsg, - '', - '', - 'plugins' - ); + if ( + $RBAC->userCanAccess('PM_SETUP_PLUGINS') === 1 && + $RBAC->userCanAccess('PM_SETUP_ADVANCE') === 1 + ) { + $G_TMP_MENU->AddIdRawOption( + 'PMENTERPRISE', + '../enterprise/addonsStore', + G::LoadTranslation('ID_MENU_NAME') . $licStatusMsg, + '', + '', + 'plugins' + ); + } if ($RBAC->userCanAccess('PM_SETUP_CUSTOM_CASES_LIST') == 1) { $G_TMP_MENU->AddIdRawOption( 'CASES_LIST_SETUP', From fc3307ddc9230a01a7b528a9f7601081127d87fa Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 10 Jan 2022 12:19:15 -0400 Subject: [PATCH 06/23] PMCORE-3620 --- workflow/engine/classes/model/Users.php | 119 +++++++++++++----------- 1 file changed, 64 insertions(+), 55 deletions(-) diff --git a/workflow/engine/classes/model/Users.php b/workflow/engine/classes/model/Users.php index 0248b22ba..31781fabd 100644 --- a/workflow/engine/classes/model/Users.php +++ b/workflow/engine/classes/model/Users.php @@ -286,92 +286,101 @@ class Users extends BaseUsers /** * Get all information about the user + * * @param string $userUid + * * @return array $arrayData * @throws Exception */ - public function getAllInformation ($userUid) + public function getAllInformation($userUid) { if (!isset($userUid) || empty($userUid)) { - throw (new Exception('$userUid is empty.')); + throw new Exception('$userUid is empty.'); } if (RBAC::isGuestUserUid($userUid)) { - throw new Exception(G::LoadTranslation("ID_USER_CAN_NOT_UPDATE", array($userUid))); + throw new Exception(G::LoadTranslation("ID_USER_CAN_NOT_UPDATE", [$userUid])); return false; } try { - $aFields = $this->load( $userUid ); + $fields = $this->load($userUid); $c = new Criteria( "workflow" ); - $c->add( IsoCountryPeer::IC_UID, $aFields["USR_COUNTRY"] ); - $rs = IsoCountryPeer::doSelectRS( $c ); - $rs->setFetchmode( ResultSet::FETCHMODE_ASSOC ); - $rs->next(); - $rowC = $rs->getRow(); - - $c->clearSelectColumns(); - $c->add( IsoSubdivisionPeer::IC_UID, $aFields["USR_COUNTRY"] ); - $c->add( IsoSubdivisionPeer::IS_UID, $aFields["USR_CITY"] ); - $rs = IsoSubdivisionPeer::doSelectRS( $c ); - $rs->setFetchmode( ResultSet::FETCHMODE_ASSOC ); - $rs->next(); - $rowS = $rs->getRow(); - - $c->clearSelectColumns(); - $c->add( IsoLocationPeer::IC_UID, $aFields["USR_COUNTRY"] ); - $c->add( IsoLocationPeer::IL_UID, $aFields["USR_LOCATION"] ); - $rs = IsoLocationPeer::doSelectRS( $c ); - $rs->setFetchmode( ResultSet::FETCHMODE_ASSOC ); - $rs->next(); - $rowL = $rs->getRow(); + $rowC = []; + if (!empty($fields["USR_COUNTRY"])) { + $c->add(IsoCountryPeer::IC_UID, $fields["USR_COUNTRY"]); + $rs = IsoCountryPeer::doSelectRS($c); + $rs->setFetchmode(ResultSet::FETCHMODE_ASSOC); + $rs->next(); + $rowC = $rs->getRow(); + } + $rowS = []; + if (!empty($fields["USR_CITY"])) { + $c->clearSelectColumns(); + $c->add(IsoSubdivisionPeer::IC_UID, $fields["USR_COUNTRY"]); + $c->add(IsoSubdivisionPeer::IS_UID, $fields["USR_CITY"]); + $rs = IsoSubdivisionPeer::doSelectRS($c); + $rs->setFetchmode(ResultSet::FETCHMODE_ASSOC); + $rs->next(); + $rowS = $rs->getRow(); + } + $rowL = []; + if (!empty($fields["USR_LOCATION"])) { + $c->clearSelectColumns(); + $c->add(IsoLocationPeer::IC_UID, $fields["USR_COUNTRY"]); + $c->add(IsoLocationPeer::IL_UID, $fields["USR_LOCATION"]); + $rs = IsoLocationPeer::doSelectRS($c); + $rs->setFetchmode(ResultSet::FETCHMODE_ASSOC); + $rs->next(); + $rowL = $rs->getRow(); + } //Calendar $calendar = new Calendar(); - $calendarInfo = $calendar->getCalendarFor( $userUid, $userUid, $userUid ); - $aFields["USR_CALENDAR"] = ($calendarInfo["CALENDAR_APPLIED"] != "DEFAULT") ? $calendarInfo["CALENDAR_UID"] : ""; + $calendarInfo = $calendar->getCalendarFor($userUid, $userUid, $userUid); + $fields["USR_CALENDAR"] = ($calendarInfo["CALENDAR_APPLIED"] != "DEFAULT") ? $calendarInfo["CALENDAR_UID"] : ""; //Photo $pathPhoto = PATH_IMAGES_ENVIRONMENT_USERS . $userUid . ".gif"; - if (! file_exists( $pathPhoto )) { + if (!file_exists($pathPhoto)) { $pathPhoto = PATH_HOME . "public_html" . PATH_SEP . "images" . PATH_SEP . "user.gif"; } //Data - $arrayData = array (); - $arrayData["username"] = $aFields["USR_USERNAME"]; - $arrayData["firstname"] = $aFields["USR_FIRSTNAME"]; - $arrayData["lastname"] = $aFields["USR_LASTNAME"]; - $arrayData["mail"] = $aFields["USR_EMAIL"]; - $arrayData["address"] = $aFields["USR_ADDRESS"]; - $arrayData["zipcode"] = $aFields["USR_ZIP_CODE"]; - $arrayData["country"] = $rowC["IC_NAME"]; - $arrayData["state"] = $rowS["IS_NAME"]; - $arrayData["location"] = $rowL["IL_NAME"]; - $arrayData["phone"] = $aFields["USR_PHONE"]; - $arrayData["fax"] = $aFields["USR_FAX"]; - $arrayData["cellular"] = $aFields["USR_CELLULAR"]; - $arrayData["birthday"] = $aFields["USR_BIRTHDAY"]; - $arrayData["position"] = $aFields["USR_POSITION"]; - $arrayData["replacedby"] = $aFields["USR_REPLACED_BY"]; - if(strlen($arrayData["replacedby"] != 0)){ - $oUser = UsersPeer::retrieveByPK( $arrayData["replacedby"] ); + $arrayData = []; + $arrayData["username"] = $fields["USR_USERNAME"]; + $arrayData["firstname"] = $fields["USR_FIRSTNAME"]; + $arrayData["lastname"] = $fields["USR_LASTNAME"]; + $arrayData["mail"] = $fields["USR_EMAIL"]; + $arrayData["address"] = $fields["USR_ADDRESS"]; + $arrayData["zipcode"] = $fields["USR_ZIP_CODE"]; + $arrayData["country"] = !empty($rowC) ? $rowC["IC_NAME"] : ''; + $arrayData["state"] = !empty($rowS) ? $rowS["IS_NAME"] : ''; + $arrayData["location"] = !empty($rowL) ? $rowL["IL_NAME"]: ''; + $arrayData["phone"] = $fields["USR_PHONE"]; + $arrayData["fax"] = $fields["USR_FAX"]; + $arrayData["cellular"] = $fields["USR_CELLULAR"]; + $arrayData["birthday"] = $fields["USR_BIRTHDAY"]; + $arrayData["position"] = $fields["USR_POSITION"]; + $arrayData["replacedby"] = $fields["USR_REPLACED_BY"]; + if(strlen($arrayData["replacedby"] != 0)) { + $oUser = UsersPeer::retrieveByPK($arrayData["replacedby"]); $arrayData["replacedbyfullname"] = $oUser->getUsrFirstname() . ' ' . $oUser->getUsrLastname(); } - $arrayData["duedate"] = $aFields["USR_DUE_DATE"]; - $arrayData["calendar"] = $aFields["USR_CALENDAR"]; - if(strlen($aFields["USR_CALENDAR"] != 0)){ - $arrayData["calendarname"] = $calendar->calendarName( $aFields["USR_CALENDAR"] ); + $arrayData["duedate"] = $fields["USR_DUE_DATE"]; + $arrayData["calendar"] = $fields["USR_CALENDAR"]; + if(strlen($fields["USR_CALENDAR"] != 0)) { + $arrayData["calendarname"] = $calendar->calendarName($fields["USR_CALENDAR"]); } - $arrayData["status"] = $aFields["USR_STATUS"]; - $arrayData["department"] = $aFields["DEP_UID"]; + $arrayData["status"] = $fields["USR_STATUS"]; + $arrayData["department"] = $fields["DEP_UID"]; if (strlen($arrayData["department"]) != 0) { - $oDepart = DepartmentPeer::retrieveByPk( $arrayData["department"] ); + $oDepart = DepartmentPeer::retrieveByPk($arrayData["department"]); $arrayData["departmentname"] = $oDepart->getDepTitle(); } - $arrayData["reportsto"] = $aFields["USR_REPORTS_TO"]; - $arrayData["userexperience"] = $aFields["USR_UX"]; + $arrayData["reportsto"] = $fields["USR_REPORTS_TO"]; + $arrayData["userexperience"] = $fields["USR_UX"]; $arrayData["photo"] = $pathPhoto; return $arrayData; From a196348bdca74c5868f9df13049cf9d75ccb6219 Mon Sep 17 00:00:00 2001 From: Roly Gutierrez Date: Mon, 10 Jan 2022 12:37:00 -0400 Subject: [PATCH 07/23] PMCORE-2827 3.6.0 Community > New UI does not work correctly --- workflow/engine/menus/setup.php | 2 + .../engine/templates/cases/cases_Load.php | 121 ++++++++---------- 2 files changed, 53 insertions(+), 70 deletions(-) diff --git a/workflow/engine/menus/setup.php b/workflow/engine/menus/setup.php index 3c8d4a5b3..016169c91 100755 --- a/workflow/engine/menus/setup.php +++ b/workflow/engine/menus/setup.php @@ -194,6 +194,7 @@ if ($RBAC->userCanAccess('PM_USERS') === 1) { '', 'users' ); + /*----------------------------------********---------------------------------*/ $G_TMP_MENU->AddIdRawOption( 'USERS_EXTENDED', '../userExtendedAttributes/index', @@ -202,6 +203,7 @@ if ($RBAC->userCanAccess('PM_USERS') === 1) { '', 'users' ); + /*----------------------------------********---------------------------------*/ $G_TMP_MENU->AddIdRawOption( 'GROUPS', '../groups/groups', diff --git a/workflow/engine/templates/cases/cases_Load.php b/workflow/engine/templates/cases/cases_Load.php index 59f382be0..4fcca1b52 100644 --- a/workflow/engine/templates/cases/cases_Load.php +++ b/workflow/engine/templates/cases/cases_Load.php @@ -1,80 +1,61 @@ - - - - - - - - - - - + containerList1 = document.getElementById("pm_header"); + if (document.getElementById("mainMenuBG") && + document.getElementById("mainMenuBG").parentNode && + document.getElementById("mainMenuBG").parentNode.parentNode && + document.getElementById("mainMenuBG").parentNode.parentNode.parentNode && + document.getElementById("mainMenuBG").parentNode.parentNode.parentNode.parentNode) { + containerList2 = document.getElementById("mainMenuBG").parentNode.parentNode.parentNode.parentNode; + } + if (containerList1 === containerList2) { + height = oClientWinSize.height - containerList1.clientHeight; + oCasesFrame.style.height = height; + if (oCasesFrame.height) { + oCasesFrame.height = height; + } + } else { + height = getClientWindowSize().height - 90; + oCasesFrame.style.height = height + 'px'; + oCasesSubFrame = oCasesFrame.contentWindow.document.getElementById('casesSubFrame'); + if (oCasesSubFrame) { + oCasesSubFrame.style.height = (height - 5) + 'px'; + } else { + setTimeout('autoResizeScreen()', 2000); + } + } + } + + + \ No newline at end of file From 2010315f47530f645bd5586c0b3c1ae7ed6f0970 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Thu, 13 Jan 2022 12:06:44 -0400 Subject: [PATCH 08/23] PMCORE-1013 --- workflow/engine/classes/WsBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/classes/WsBase.php b/workflow/engine/classes/WsBase.php index 7bf693273..e437c3e78 100644 --- a/workflow/engine/classes/WsBase.php +++ b/workflow/engine/classes/WsBase.php @@ -988,7 +988,7 @@ class WsBase G::replaceDataGridField(file_get_contents($fileTemplate), $fieldsCase, false), $cc, $bcc, - '', + $template, $attachment, 'pending', ($showMessage) ? 1 : 0, From cd08f758e3ae4fd06fa31bce286f4d6607ca1bc5 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Thu, 13 Jan 2022 18:59:36 -0400 Subject: [PATCH 09/23] PMCORE-677 --- workflow/engine/classes/class.pmFunctions.php | 2 +- .../translations/english/processmaker.en.po | 96 +++++++++---------- workflow/engine/data/mysql/insert.sql | 48 +++++----- .../ProcessMaker/BusinessModel/TimerEvent.php | 16 ++-- workflow/engine/templates/admin/pmLogo.js | 4 +- 5 files changed, 83 insertions(+), 83 deletions(-) diff --git a/workflow/engine/classes/class.pmFunctions.php b/workflow/engine/classes/class.pmFunctions.php index a1ec3b07b..515c4d625 100644 --- a/workflow/engine/classes/class.pmFunctions.php +++ b/workflow/engine/classes/class.pmFunctions.php @@ -2463,7 +2463,7 @@ function jumping ($caseId, $delIndex) * * @param string(32) | $PROCESS | Process ID | The unique ID of the process which contains the field. * @param string(32) | $DYNAFORM_UID | Dynaform ID | The unique ID of the DynaForm where the field is located. - * @param string(32) | $FIELD_NAME | Fiel Name | The field name of the dropdown box, listbox, checkgroup or radiogroup from the specified DynaForm. + * @param string(32) | $FIELD_NAME | Field Name | The field name of the dropdown box, listbox, checkgroup or radiogroup from the specified DynaForm. * @param string(32) | $FIELD_SELECTED_ID | ID selected | The value (i.e., ID) of the option from the fieldName. * @return string | $label | Label of the specified option | A string holding the label of the specified option or NULL if the specified option does not exist. * diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 6fb10543d..23b39b283 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -9152,8 +9152,8 @@ msgstr "Format 24 hrs. (HH:MM)" # TRANSLATION # LABEL/ID_FORMS_HTML_CACHE #: LABEL/ID_FORMS_HTML_CACHE -msgid "Forms Html templates cache" -msgstr "Forms Html templates cache" +msgid "Forms HTML templates cache" +msgstr "Forms HTML templates cache" # TRANSLATION # LABEL/ID_FORMS_METADATA_CACHE @@ -20762,8 +20762,8 @@ msgstr "There are no older session files" # TRANSLATION # LABEL/ID_NO_PERMISSION_NO_PARTICIPATED #: LABEL/ID_NO_PERMISSION_NO_PARTICIPATED -msgid "You cannot open this case because on the reason below:
You do not have permission to see this case.
You have not participated in this case.
Case is already claimed." -msgstr "You cannot open this case because on the reason below:
You do not have permission to see this case.
You have not participated in this case.
Case is already claimed." +msgid "You cannot open this case because of one of the following reasons:
You do not have permission to see this case.
You have not participated in this case.
Case is already claimed." +msgstr "You cannot open this case because of one of the following reasons:
You do not have permission to see this case.
You have not participated in this case.
Case is already claimed." # TRANSLATION # LABEL/ID_NO_PERMISSION_NO_PARTICIPATED_CASES @@ -20798,8 +20798,8 @@ msgstr "No records found" # TRANSLATION # LABEL/ID_NO_RELATED_PROCESS #: LABEL/ID_NO_RELATED_PROCESS -msgid "The related process does not exists" -msgstr "The related process does not exists" +msgid "The related process does not exist" +msgstr "The related process does not exist" # TRANSLATION # LABEL/ID_NO_REPORT_TABLE @@ -21188,8 +21188,8 @@ msgstr "Invalid extension" # TRANSLATION # LABEL/ID_OUTPUT_DOCUMENT_ITS_ASSIGNED #: LABEL/ID_OUTPUT_DOCUMENT_ITS_ASSIGNED -msgid "The Output Document with {0}: {1} it's assigned in \"{2}\"." -msgstr "The Output Document with {0}: {1} it's assigned in \"{2}\"." +msgid "The Output Document with {0}: {1} is assigned in \"{2}\"." +msgstr "The Output Document with {0}: {1} is assigned in \"{2}\"." # TRANSLATION # LABEL/ID_OUTPUT_DOCUMENT_TEMPLATE @@ -21278,8 +21278,8 @@ msgstr "The report table '{0}' that you want to import is related to other proce # TRANSLATION # LABEL/ID_OVERWRITE_RPTABLE #: LABEL/ID_OVERWRITE_RPTABLE -msgid "The report table '{0}' already exist, what do you want to do?" -msgstr "The report table '{0}' already exist, what do you want to do?" +msgid "The report table '{0}' already exists. What do you want to do?" +msgstr "The report table '{0}' already exists. What do you want to do?" # TRANSLATION # LABEL/ID_OVER_DUE @@ -21824,8 +21824,8 @@ msgstr "Plugins Manager" # TRANSLATION # LABEL/ID_PLUGIN_CANT_DELETE #: LABEL/ID_PLUGIN_CANT_DELETE -msgid "The plugin is activated, please deactivate first to remove it." -msgstr "The plugin is activated, please deactivate first to remove it." +msgid "The plugin is activated. Please deactivate it first before deleting it." +msgstr "The plugin is activated. Please deactivate it first before deleting it." # TRANSLATION # LABEL/ID_PLUGIN_DEPENDENCE_PLUGIN @@ -21842,8 +21842,8 @@ msgstr "Plugin file" # TRANSLATION # LABEL/ID_PMDRIVE_DISABLE #: LABEL/ID_PMDRIVE_DISABLE -msgid "Are you sure to disable the Google Drive Integration? If you do this, the input, output and file documents will be stored only in your ProcessMaker server." -msgstr "Are you sure to disable the Google Drive Integration? If you do this, the input, output and file documents will be stored only in your ProcessMaker server." +msgid "Are you sure that you want to disable Google Drive Integration? If you do this, the Input and Output Documents and attached files will only be stored in your ProcessMaker server." +msgstr "Are you sure that you want to disable Google Drive Integration? If you do this, the Input and Output Documents and attached files will only be stored in your ProcessMaker server." # TRANSLATION # LABEL/ID_PMDRIVE_NO_CONTENT_IN_FILE @@ -21860,8 +21860,8 @@ msgstr "PM Gmail" # TRANSLATION # LABEL/ID_PMGMAIL_DISABLE #: LABEL/ID_PMGMAIL_DISABLE -msgid "Are you sure to disable the Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled." -msgstr "Are you sure to disable the Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled." +msgid "Are you sure that you want to disable Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled." +msgstr "Are you sure that you want to disable Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled." # TRANSLATION # LABEL/ID_PMGMAIL_GENERAL_ERROR @@ -21902,8 +21902,8 @@ msgstr "Please select a json file to upload" # TRANSLATION # LABEL/ID_PMG_TYPE_ACCEPT #: LABEL/ID_PMG_TYPE_ACCEPT -msgid "Only accepts files in format json" -msgstr "Only accepts files in format json" +msgid "Only accepts files in JSON format" +msgstr "Only accepts files in JSON format" # TRANSLATION # LABEL/ID_PMPLUGIN_IMPORT_PLUGIN_IS_ENTERPRISE @@ -21956,14 +21956,14 @@ msgstr "Please set a field size for:" # TRANSLATION # LABEL/ID_PMTABLES_ALERT6 #: LABEL/ID_PMTABLES_ALERT6 -msgid "At least one column must be set as Primary Key." -msgstr "At least one column must be set as Primary Key." +msgid "At least one column must be set as a Primary Key." +msgstr "At least one column must be set as a Primary Key." # TRANSLATION # LABEL/ID_PMTABLES_ALERT7 #: LABEL/ID_PMTABLES_ALERT7 -msgid "Please set columns for this Report Table." -msgstr "Please set columns for this Report Table." +msgid "Please set the columns for this Report Table." +msgstr "Please set the columns for this Report Table." # TRANSLATION # LABEL/ID_PMTABLES_ALERT8 @@ -21986,8 +21986,8 @@ msgstr "From each table select at least one Schema/Data to export." # TRANSLATION # LABEL/ID_PMTABLES_RESERVED_FIELDNAME_WARNING #: LABEL/ID_PMTABLES_RESERVED_FIELDNAME_WARNING -msgid "The word {0} is reserved by the database engine please set another one." -msgstr "The word {0} is reserved by the database engine please set another one." +msgid "The word {0} is reserved by the database engine. Please use a different word." +msgstr "The word {0} is reserved by the database engine. Please use a different word." # TRANSLATION # LABEL/ID_PMTABLE_ALREADY_EXISTS @@ -22004,8 +22004,8 @@ msgstr "ERROR: The class fie \"{0}\" doesn't exist!" # TRANSLATION # LABEL/ID_PMTABLE_DATA_EXISTS_WARNINIG #: LABEL/ID_PMTABLE_DATA_EXISTS_WARNINIG -msgid "record(s) were found in this table. If you edit the structure all data will be lost." -msgstr "record(s) were found in this table. If you edit the structure all data will be lost." +msgid "record(s) were found in this table. If you edit the structure, all data will be lost." +msgstr "record(s) were found in this table. If you edit the structure, all data will be lost." # TRANSLATION # LABEL/ID_PMTABLE_DATA_KEEP @@ -22052,8 +22052,8 @@ msgstr "There is a conflict with some field names: \"{0}\", please rename them a # TRANSLATION # LABEL/ID_PMTABLE_INVALID_FILE #: LABEL/ID_PMTABLE_INVALID_FILE -msgid "Invalid PM table(s) file, import aborted!" -msgstr "Invalid PM table(s) file, import aborted!" +msgid "Invalid PM table(s) file. Import aborted!" +msgstr "Invalid PM table(s) file. Import aborted!" # TRANSLATION # LABEL/ID_PMTABLE_INVALID_NAME @@ -22070,8 +22070,8 @@ msgstr "The PM Table associated with this DynaForm could not be found." # TRANSLATION # LABEL/ID_PMTABLE_NOT_FOUNDED_SAVED_DATA #: LABEL/ID_PMTABLE_NOT_FOUNDED_SAVED_DATA -msgid "The data from this case was saved in the database, but it was not saved in the PM Table, which it couldn't be found." -msgstr "The data from this case was saved in the database, but it was not saved in the PM Table, which it couldn't be found." +msgid "The data from this case was saved in the database, but it was not saved in the PM Table, because it couldn't be found." +msgstr "The data from this case was saved in the database, but it was not saved in the PM Table, because it couldn't be found." # TRANSLATION # LABEL/ID_PMTABLE_NOT_HAVE_ALL_CASELIST_FIELDS_WOULD_YOU_LIKE_CONTINUE @@ -22526,8 +22526,8 @@ msgstr "However, ProcessMaker still operates if your settings do not match the r # TRANSLATION # LABEL/ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_1 #: LABEL/ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_1 -msgid "In order for ProcessMaker to function correctly it needs to be able to access or write to certain files or directories." -msgstr "In order for ProcessMaker to function correctly it needs to be able to access or write to certain files or directories." +msgid "In order for ProcessMaker to function correctly, it needs to be able to access or write to certain files or directories." +msgstr "In order for ProcessMaker to function correctly, it needs to be able to access or write to certain files or directories." # TRANSLATION # LABEL/ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_2 @@ -22646,8 +22646,8 @@ msgstr "ProcessMaker was successfully installed
Workspace \" {0} \" # TRANSLATION # LABEL/ID_PROCESSMAKER_UI_NOT_INSTALL #: LABEL/ID_PROCESSMAKER_UI_NOT_INSTALL -msgid "The new ProcessMaker UI couldn't be applied on installation. You can enable it afterwards in ADMIN > Settings > System." -msgstr "The new ProcessMaker UI couldn't be applied on installation. You can enable it afterwards in ADMIN > Settings > System." +msgid "The new ProcessMaker UI couldn't be applied during installation. You can enable it afterwards in ADMIN > Settings > System." +msgstr "The new ProcessMaker UI couldn't be applied during installation. You can enable it afterwards in ADMIN > Settings > System." # TRANSLATION # LABEL/ID_PROCESSMAKER_USER_FIELD @@ -22664,14 +22664,14 @@ msgstr "Please insert a valid processmaker user name and password, in order to a # TRANSLATION # LABEL/ID_PROCESSMAKER_WRITE_CONFIG_INDEX #: LABEL/ID_PROCESSMAKER_WRITE_CONFIG_INDEX -msgid "ProcessMaker couldn't write on configuration file: {0}
" -msgstr "ProcessMaker couldn't write on configuration file: {0}
" +msgid "ProcessMaker couldn't write to configuration file: {0}
" +msgstr "ProcessMaker couldn't write to configuration file: {0}
" # TRANSLATION # LABEL/ID_PROCESSMAP_CALENDAR_CONFIRM_DELETE #: LABEL/ID_PROCESSMAP_CALENDAR_CONFIRM_DELETE -msgid "Are you sure you want to delete this calendar?" -msgstr "Are you sure you want to delete this calendar?" +msgid "Are you sure that you want to delete this calendar?" +msgstr "Are you sure that you want to delete this calendar?" # TRANSLATION # LABEL/ID_PROCESSMAP_DYNAFORMS @@ -22748,8 +22748,8 @@ msgstr "The process is already in the System and the value for importOption is n # TRANSLATION # LABEL/ID_PROCESS_CANNOT_BE_UPDATED_THERE_ARE_TASKS_WITH_ACTIVE_CASES #: LABEL/ID_PROCESS_CANNOT_BE_UPDATED_THERE_ARE_TASKS_WITH_ACTIVE_CASES -msgid "The process cannot be updated because there are tasks with active cases which are not presented in the new definition of the process, please verify that there are not active cases in those tasks before trying to import the process again." -msgstr "The process cannot be updated because there are tasks with active cases which are not presented in the new definition of the process, please verify that there are not active cases in those tasks before trying to import the process again." +msgid "The process cannot be updated because there are tasks with active cases which are not present in the new definition of the process. Please verify that there are no active cases in those tasks before trying to import the process again." +msgstr "The process cannot be updated because there are tasks with active cases which are not present in the new definition of the process. Please verify that there are no active cases in those tasks before trying to import the process again." # TRANSLATION # LABEL/ID_PROCESS_CANT_DELETE @@ -22778,8 +22778,8 @@ msgstr "The PROCESS_DEFINITION is required to complete the process." # TRANSLATION # LABEL/ID_PROCESS_DEF_PROBLEM #: LABEL/ID_PROCESS_DEF_PROBLEM -msgid "There is a problem in the process definition and/or an exception error occurred." -msgstr "There is a problem in the process definition and/or an exception error occurred." +msgid "There is a problem in the process definition and/or an exception occurred." +msgstr "There is a problem in the process definition and/or an exception occurred." # TRANSLATION # LABEL/ID_PROCESS_DELETE_ALL_LABEL @@ -22826,8 +22826,8 @@ msgstr "Process File Manager" # TRANSLATION # LABEL/ID_PROCESS_GROUP_MERGE_PREEXISTENT #: LABEL/ID_PROCESS_GROUP_MERGE_PREEXISTENT -msgid "Merge the imported groups, with the preexistent local groups (no changes will be made to the local groups)" -msgstr "Merge the imported groups, with the preexistent local groups (no changes will be made to the local groups)" +msgid "Merge the imported groups with the preexisting groups. (No changes will be made to the preexisting groups)" +msgstr "Merge the imported groups with the preexisting groups. (No changes will be made to the preexisting groups)" # TRANSLATION # LABEL/ID_PROCESS_GROUP_RENAME @@ -22874,8 +22874,8 @@ msgstr "No Category" # TRANSLATION # LABEL/ID_PROCESS_NOT_EXIST #: LABEL/ID_PROCESS_NOT_EXIST -msgid "The report table '{0}' is related to a process not present in the workspace, import the related process first. To relate the report table to other process, open the process in the designer and import from there. The report table can't be imported." -msgstr "The report table '{0}' is related to a process not present in the workspace, import the related process first. To relate the report table to other process, open the process in the designer and import from there. The report table can't be imported." +msgid "The report table '{0}' is related to a process which is not present in the workspace. Import the related process first. To relate the report table to other process, open the process in the designer and import it from there. The report table can't be imported." +msgstr "The report table '{0}' is related to a process which is not present in the workspace. Import the related process first. To relate the report table to other process, open the process in the designer and import it from there. The report table can't be imported." # TRANSLATION # LABEL/ID_PROCESS_NO_CATEGORY @@ -28844,8 +28844,8 @@ msgstr "Well Done!" # TRANSLATION # LABEL/ID_WEN #: LABEL/ID_WEN -msgid "Wen" -msgstr "Wen" +msgid "Wed" +msgstr "Wed" # TRANSLATION # LABEL/ID_WESTPANEL diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 5e94762a8..9d6cb801b 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -58378,7 +58378,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_FORGOT_PASSWORD_Q','en','Forgot Password?','2014-01-15') , ( 'LABEL','ID_FORMAT','en','Format','2014-01-15') , ( 'LABEL','ID_FORMAT_24_HOURS','en','Format 24 hrs. (HH:MM)','2014-10-30') , -( 'LABEL','ID_FORMS_HTML_CACHE','en','Forms Html templates cache','2014-01-15') , +( 'LABEL','ID_FORMS_HTML_CACHE','en','Forms HTML templates cache','2014-01-15') , ( 'LABEL','ID_FORMS_METADATA_CACHE','en','Forms metadata cache','2014-01-15') , ( 'LABEL','ID_FRI','en','Fri','2014-01-15') , ( 'LABEL','ID_FROM','en','From','2014-01-15') , @@ -60364,13 +60364,13 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_NO_MORE_INFORMATION','en','No more information to Load','2020-08-31') , ( 'LABEL','ID_NO_NEW_VERSIONS','en','No new versions available','2014-09-18') , ( 'LABEL','ID_NO_OLDER_SESSION_FILES','en','There are no older session files','2014-01-15') , -( 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED','en','You cannot open this case because on the reason below:
You do not have permission to see this case.
You have not participated in this case.
Case is already claimed.','2017-06-05') , +( 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED','en','You cannot open this case because of one of the following reasons:
You do not have permission to see this case.
You have not participated in this case.
Case is already claimed.','2017-06-05') , ( 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED_CASES','en','You do not have permission to see this case or you have not participated in it.','2021-10-04') , ( 'LABEL','ID_NO_PREVIOUS_USR_UID','en','The previous task doesn''t have any users.','2017-10-18') , ( 'LABEL','ID_NO_REASSIGN','en','Do not reassign','2014-01-15') , ( 'LABEL','ID_NO_RECORDS','en','No records','2014-01-15') , ( 'LABEL','ID_NO_RECORDS_FOUND','en','No records found','2014-01-15') , -( 'LABEL','ID_NO_RELATED_PROCESS','en','The related process does not exists','2015-05-25') , +( 'LABEL','ID_NO_RELATED_PROCESS','en','The related process does not exist','2015-05-25') , ( 'LABEL','ID_NO_REPORT_TABLE','en','The table ''{0}'' that you trying to import is not a report table.','2016-03-01') , ( 'LABEL','ID_NO_RESUME','en','The user doesn''t have a resume.','2014-01-15') , ( 'LABEL','ID_NO_SELECTED_FIELDS','en','No selected fields','2014-01-15') , @@ -60438,7 +60438,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_OUTPUT_DOCUMENT_CONFIG_NOT_SUPPORT_EXTENSION','en','The document in its configuration does not support this extension','2016-07-21') , ( 'LABEL','ID_OUTPUT_DOCUMENT_DOES_NOT_EXIST','en','The Output Document with {0}: {1} does not exist.','2014-05-20') , ( 'LABEL','ID_OUTPUT_DOCUMENT_INVALID_EXTENSION','en','Invalid extension','2016-07-21') , -( 'LABEL','ID_OUTPUT_DOCUMENT_ITS_ASSIGNED','en','The Output Document with {0}: {1} it''s assigned in "{2}".','2014-07-01') , +( 'LABEL','ID_OUTPUT_DOCUMENT_ITS_ASSIGNED','en','The Output Document with {0}: {1} is assigned in "{2}".','2014-07-01') , ( 'LABEL','ID_OUTPUT_DOCUMENT_TEMPLATE','en','Output Document Template','2014-01-15') , ( 'LABEL','ID_OUTPUT_GENERATE','en','Output Document to Generate','2014-01-15') , ( 'LABEL','ID_OUTPUT_INFO','en','Output Document Information','2014-01-15') , @@ -60453,7 +60453,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_OVERWRITE_EXIST','en','Overwrite if exists?','2014-01-15') , ( 'LABEL','ID_OVERWRITE_PMTABLE','en','The PMTable ''{0}'' already exists in the workspace, what do you want to do?','2016-03-08') , ( 'LABEL','ID_OVERWRITE_RELATED_PROCESS','en','The report table ''{0}'' that you want to import is related to other process, what do you want to do?','2016-03-08') , -( 'LABEL','ID_OVERWRITE_RPTABLE','en','The report table ''{0}'' already exist, what do you want to do?','2016-03-08') , +( 'LABEL','ID_OVERWRITE_RPTABLE','en','The report table ''{0}'' already exists. What do you want to do?','2016-03-08') , ( 'LABEL','ID_OVER_DUE','en','Inbox Status','2015-05-06') , ( 'LABEL','ID_OWNER','en','Owner','2014-01-15') , ( 'LABEL','ID_OWNER_INFORMATION','en','Owner Information','2015-03-09') , @@ -60547,20 +60547,20 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PLUGINS','en','Plugins','2014-01-15') , ( 'LABEL','ID_PLUGINS_DIRECTORY','en','Plugins Directory','2014-01-15') , ( 'LABEL','ID_PLUGINS_MANAGER','en','Plugins Manager','2014-01-15') , -( 'LABEL','ID_PLUGIN_CANT_DELETE','en','The plugin is activated, please deactivate first to remove it.','2014-01-15') , +( 'LABEL','ID_PLUGIN_CANT_DELETE','en','The plugin is activated. Please deactivate it first before deleting it.','2014-01-15') , ( 'LABEL','ID_PLUGIN_DEPENDENCE_PLUGIN','en','This plugin needs "{Dependence}" plugin','2014-01-15') , ( 'LABEL','ID_PLUGIN_FILE','en','Plugin file','2014-09-18') , -( 'LABEL','ID_PMDRIVE_DISABLE','en','Are you sure to disable the Google Drive Integration? If you do this, the input, output and file documents will be stored only in your ProcessMaker server.','2017-02-21') , +( 'LABEL','ID_PMDRIVE_DISABLE','en','Are you sure that you want to disable Google Drive Integration? If you do this, the Input and Output Documents and attached files will only be stored in your ProcessMaker server.','2017-02-21') , ( 'LABEL','ID_PMDRIVE_NO_CONTENT_IN_FILE','en','The file doesn''t have any content stored on Drive.','2015-12-09') , ( 'LABEL','ID_PMGMAIL','en','PM Gmail','2015-07-27') , -( 'LABEL','ID_PMGMAIL_DISABLE','en','Are you sure to disable the Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled.','2016-01-05') , +( 'LABEL','ID_PMGMAIL_DISABLE','en','Are you sure that you want to disable Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled.','2016-01-05') , ( 'LABEL','ID_PMGMAIL_GENERAL_ERROR','en','An error in processing Gmail requests occurred','2015-12-09') , ( 'LABEL','ID_PMGMAIL_SETTINGS','en','Settings for Processmaker Gmail','2015-07-27') , ( 'LABEL','ID_PMGMAIL_VALID','en','The Gmail token is not valid.','2015-09-11') , ( 'LABEL','ID_PMG_EMAIL','en','Service Account Email','2015-07-27') , ( 'LABEL','ID_PMG_FILE','en','Service Account Certificate','2015-12-09') , ( 'LABEL','ID_PMG_SELECT_FILE','en','Please select a json file to upload','2016-01-05') , -( 'LABEL','ID_PMG_TYPE_ACCEPT','en','Only accepts files in format json','2016-01-04') , +( 'LABEL','ID_PMG_TYPE_ACCEPT','en','Only accepts files in JSON format','2016-01-04') , ( 'LABEL','ID_PMPLUGIN_IMPORT_PLUGIN_IS_ENTERPRISE','en','The plugin "{0}" is a Enterprise Edition Plugin, please install the Enterprise Plugins Manager to use this plugin','2016-07-14') , ( 'LABEL','ID_PMTABLE','en','PM Table','2014-01-15') , ( 'LABEL','ID_PMTABLES','en','PM Tables','2014-01-15') , @@ -60569,15 +60569,15 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PMTABLES_ALERT3','en','Field Label for all columns is required.','2014-01-15') , ( 'LABEL','ID_PMTABLES_ALERT4','en','Please set a field type for','2014-01-15') , ( 'LABEL','ID_PMTABLES_ALERT5','en','Please set a field size for:','2014-01-15') , -( 'LABEL','ID_PMTABLES_ALERT6','en','At least one column must be set as Primary Key.','2014-10-21') , -( 'LABEL','ID_PMTABLES_ALERT7','en','Please set columns for this Report Table.','2014-10-21') , +( 'LABEL','ID_PMTABLES_ALERT6','en','At least one column must be set as a Primary Key.','2014-10-21') , +( 'LABEL','ID_PMTABLES_ALERT7','en','Please set the columns for this Report Table.','2014-10-21') , ( 'LABEL','ID_PMTABLES_ALERT8','en','Set a Physical Field Name for:','2014-10-21') , ( 'LABEL','ID_PMTABLES_CANT_EXPORT','en','There are no tables to export.','2014-10-22') , ( 'LABEL','ID_PMTABLES_NOTICE_EXPORT','en','From each table select at least one Schema/Data to export.','2014-10-21') , -( 'LABEL','ID_PMTABLES_RESERVED_FIELDNAME_WARNING','en','The word {0} is reserved by the database engine please set another one.','2014-01-15') , +( 'LABEL','ID_PMTABLES_RESERVED_FIELDNAME_WARNING','en','The word {0} is reserved by the database engine. Please use a different word.','2014-01-15') , ( 'LABEL','ID_PMTABLE_ALREADY_EXISTS','en','The table "{0}" already exits!','2014-01-15') , ( 'LABEL','ID_PMTABLE_CLASS_DOESNT_EXIST','en','ERROR: The class fie "{0}" doesn''t exist!','2014-01-15') , -( 'LABEL','ID_PMTABLE_DATA_EXISTS_WARNINIG','en','record(s) were found in this table. If you edit the structure all data will be lost.','2014-10-21') , +( 'LABEL','ID_PMTABLE_DATA_EXISTS_WARNINIG','en','record(s) were found in this table. If you edit the structure, all data will be lost.','2014-10-21') , ( 'LABEL','ID_PMTABLE_DATA_KEEP','en','Keep the records of the table','2014-01-15') , ( 'LABEL','ID_PMTABLE_DOES_NOT_EXIST','en','The PM Table with {0}: {1} does not exist.','2014-05-20') , ( 'LABEL','ID_PMTABLE_FIELD_IS_NOT_PRIMARY_KEY','en','The field {0}: {1}, is not a primary key field of the PM Table.','2014-05-20') , @@ -60585,10 +60585,10 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PMTABLE_IMPORT_WITH_ERRORS','en','File "{0}" imported but with errors:','2016-02-18') , ( 'LABEL','ID_PMTABLE_INVALID_FIELD_NAME','en','The following fields cannot be created because they contain the reserved words "{0}"','2014-10-21') , ( 'LABEL','ID_PMTABLE_INVALID_FIELD_NAME_VARIABLE','en','There is a conflict with some field names: "{0}", please rename them avoiding the use of numbers and considering that underscores are ignored when validating unique field names.','2018-04-03') , -( 'LABEL','ID_PMTABLE_INVALID_FILE','en','Invalid PM table(s) file, import aborted!','2014-01-15') , +( 'LABEL','ID_PMTABLE_INVALID_FILE','en','Invalid PM table(s) file. Import aborted!','2014-01-15') , ( 'LABEL','ID_PMTABLE_INVALID_NAME','en','Could not create the table with the name "{0}" because it is a reserved word.','2014-01-15') , ( 'LABEL','ID_PMTABLE_NOT_FOUND','en','The PM Table associated with this DynaForm could not be found.','2014-11-12') , -( 'LABEL','ID_PMTABLE_NOT_FOUNDED_SAVED_DATA','en','The data from this case was saved in the database, but it was not saved in the PM Table, which it couldn''t be found.','2014-11-12') , +( 'LABEL','ID_PMTABLE_NOT_FOUNDED_SAVED_DATA','en','The data from this case was saved in the database, but it was not saved in the PM Table, because it couldn''t be found.','2014-11-12') , ( 'LABEL','ID_PMTABLE_NOT_HAVE_ALL_CASELIST_FIELDS_WOULD_YOU_LIKE_CONTINUE','en','The PM Table {0} does not have all the Custom Case List fields for file {1}. Would you like continue?','2014-11-12') , ( 'LABEL','ID_PMTABLE_NOT_IMPORT_HAS_ERRORS','en','File "{0}" was not imported has errors:','2016-02-18') , ( 'LABEL','ID_PMTABLE_PRIMARY_KEY_FIELD_IS_MISSING_IN_ATTRIBUTE','en','The primary key field {0} of the PM Table is missing in the attribute {1}.','2014-05-20') , @@ -60666,7 +60666,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP1_2','en','Failure to do so could lead your ProcessMaker installation not functioning correctly.','2015-01-16') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP2_1','en','These settings are recommended for PHP in order to ensure full compatibility with ProcessMaker.','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP2_2','en','However, ProcessMaker still operates if your settings do not match the recommended.','2015-01-16') , -( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_1','en','In order for ProcessMaker to function correctly it needs to be able to access or write to certain files or directories.','2014-01-15') , +( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_1','en','In order for ProcessMaker to function correctly, it needs to be able to access or write to certain files or directories.','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_2','en','If you see "unwritable", change the permissions on the file or directory to allow ProcessMaker to write to it.','2015-01-16') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP4_1','en','ProcessMaker stores all of its data in a database. This screen gives the installation program the information needed to create this database.','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP4_2','en','If you are installing ProcessMaker on a remote web server, you will need to get this information from your Database Server.','2014-01-15') , @@ -60688,11 +60688,11 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_SOAP','en','Soap Support','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_SLOGAN1','en','This Business Process is Powered By ProcessMaker','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_SUCCESS_INSTALLED','en','ProcessMaker was successfully installed
Workspace " {0} " was installed correctly.','2014-01-15') , -( 'LABEL','ID_PROCESSMAKER_UI_NOT_INSTALL','en','The new ProcessMaker UI couldn''t be applied on installation. You can enable it afterwards in ADMIN > Settings > System.','2015-01-16') , +( 'LABEL','ID_PROCESSMAKER_UI_NOT_INSTALL','en','The new ProcessMaker UI couldn''t be applied during installation. You can enable it afterwards in ADMIN > Settings > System.','2015-01-16') , ( 'LABEL','ID_PROCESSMAKER_USER_FIELD','en','ProcessMaker User Field','2020-12-10') , ( 'LABEL','ID_PROCESSMAKER_VALIDATION','en','Please insert a valid processmaker user name and password, in order to assign the case to their respective owner.','2014-01-15') , -( 'LABEL','ID_PROCESSMAKER_WRITE_CONFIG_INDEX','en','ProcessMaker couldn''t write on configuration file: {0}
','2014-01-15') , -( 'LABEL','ID_PROCESSMAP_CALENDAR_CONFIRM_DELETE','en','Are you sure you want to delete this calendar?','2014-01-15') , +( 'LABEL','ID_PROCESSMAKER_WRITE_CONFIG_INDEX','en','ProcessMaker couldn''t write to configuration file: {0}
','2014-01-15') , +( 'LABEL','ID_PROCESSMAP_CALENDAR_CONFIRM_DELETE','en','Are you sure that you want to delete this calendar?','2014-01-15') , ( 'LABEL','ID_PROCESSMAP_DYNAFORMS','en','DynaForms','2014-01-15') , ( 'LABEL','ID_PROCESSMAP_EVALUATION','en','Evaluation','2014-01-15') , ( 'LABEL','ID_PROCESSMAP_MESSAGES','en','Messages','2014-01-15') , @@ -60705,12 +60705,12 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PROCESSNAME_ALREADY_EXISTS','en','The Process Name already exists!','2014-01-15') , ( 'LABEL','ID_PROCESSTITLE_ALREADY_EXISTS','en','The Process Title "{PRO_TITLE}" already exists!','2014-01-15') , ( 'LABEL','ID_PROCESS_ALREADY_IN_SYSTEM','en','The process is already in the System and the value for importOption is not specified.','2014-01-15') , -( 'LABEL','ID_PROCESS_CANNOT_BE_UPDATED_THERE_ARE_TASKS_WITH_ACTIVE_CASES','en','The process cannot be updated because there are tasks with active cases which are not presented in the new definition of the process, please verify that there are not active cases in those tasks before trying to import the process again.','2016-07-15') , +( 'LABEL','ID_PROCESS_CANNOT_BE_UPDATED_THERE_ARE_TASKS_WITH_ACTIVE_CASES','en','The process cannot be updated because there are tasks with active cases which are not present in the new definition of the process. Please verify that there are no active cases in those tasks before trying to import the process again.','2016-07-15') , ( 'LABEL','ID_PROCESS_CANT_DELETE','en','You can''t delete the process "{0}" because it has {1} cases.','2014-01-15') , ( 'LABEL','ID_PROCESS_CATEGORY','en','Process Categories','2014-01-15') , ( 'LABEL','ID_PROCESS_DEFINITION_INCOMPLETE','en','To create a new process all the process objects must be selected/included in the pmx2 file.','2016-07-05') , ( 'LABEL','ID_PROCESS_DEFINITION_NON_EXISTENT','en','The PROCESS_DEFINITION is required to complete the process.','2016-03-30') , -( 'LABEL','ID_PROCESS_DEF_PROBLEM','en','There is a problem in the process definition and/or an exception error occurred.','2014-01-15') , +( 'LABEL','ID_PROCESS_DEF_PROBLEM','en','There is a problem in the process definition and/or an exception occurred.','2014-01-15') , ( 'LABEL','ID_PROCESS_DELETE_ALL_LABEL','en','Do you want to delete all selected processes?','2014-01-15') , ( 'LABEL','ID_PROCESS_DELETE_LABEL','en','Do you want to delete the selected process?','2014-01-15') , ( 'LABEL','ID_PROCESS_DETAILS','en','Process Details','2014-01-15') , @@ -60718,7 +60718,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PROCESS_EFFICIENCE','en','Process Efficiency Index','2015-04-01') , ( 'LABEL','ID_PROCESS_EXIST_SOME_GROUP','en','Some of the groups that you are trying to import already exist. Please select one of the following options to continue.','2014-10-21') , ( 'LABEL','ID_PROCESS_FILE_MANAGER','en','Process File Manager','2014-01-15') , -( 'LABEL','ID_PROCESS_GROUP_MERGE_PREEXISTENT','en','Merge the imported groups, with the preexistent local groups (no changes will be made to the local groups)','2014-01-15') , +( 'LABEL','ID_PROCESS_GROUP_MERGE_PREEXISTENT','en','Merge the imported groups with the preexisting groups. (No changes will be made to the preexisting groups)','2014-01-15') , ( 'LABEL','ID_PROCESS_GROUP_RENAME','en','Rename the imported groups','2014-01-15') , ( 'LABEL','ID_PROCESS_ID','en','Process ID','2014-01-15') , ( 'LABEL','ID_PROCESS_INEFFICIENCE','en','Process Inefficiency Cost','2015-04-01') , @@ -60727,7 +60727,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PROCESS_MAP','en','Process Map','2014-01-15') , ( 'LABEL','ID_PROCESS_NAME','en','Process Name','2020-12-04') , ( 'LABEL','ID_PROCESS_NOCATEGORY','en','No Category','2014-01-15') , -( 'LABEL','ID_PROCESS_NOT_EXIST','en','The report table ''{0}'' is related to a process not present in the workspace, import the related process first. To relate the report table to other process, open the process in the designer and import from there. The report table can''t be imported.','2016-03-08') , +( 'LABEL','ID_PROCESS_NOT_EXIST','en','The report table ''{0}'' is related to a process which is not present in the workspace. Import the related process first. To relate the report table to other process, open the process in the designer and import it from there. The report table can''t be imported.','2016-03-08') , ( 'LABEL','ID_PROCESS_NO_CATEGORY','en','No Category','2014-01-15') , ( 'LABEL','ID_PROCESS_NONE_CATEGORY','en','- No Category -','2020-10-23') , ( 'LABEL','ID_PROCESS_NO_EXIST','en','Process doesn''t exist!','2014-01-15') , @@ -61797,7 +61797,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES ( 'LABEL','ID_WELL_DONE','en','Well Done!','2015-03-30') , -( 'LABEL','ID_WEN','en','Wen','2014-01-15') , +( 'LABEL','ID_WEN','en','Wed','2014-01-15') , ( 'LABEL','ID_WESTPANEL','en','westPanel','2014-01-15') , ( 'LABEL','ID_WEVE_MADE_IT_EASY_FOR_YOU','en',"We've made it easy for you to make the following requests",'2020-12-04') , ( 'LABEL','ID_WF_DATABASE_NAME','en','Workflow Database Name','2014-01-15') , diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TimerEvent.php b/workflow/engine/src/ProcessMaker/BusinessModel/TimerEvent.php index 1d8298aff..7c00e6c29 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TimerEvent.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TimerEvent.php @@ -1448,16 +1448,16 @@ class TimerEvent } if (!$flagRecord) { - $common->frontEndShow("TEXT", "Not exists any record to start a new case, on date \"$datetime (UTC +00:00)\""); + $common->frontEndShow("TEXT", "There are no records to start new cases, on date \"$datetime (UTC +00:00)\""); $action = "NO-RECORDS"; - $this->log($action, "Not exists any record to start a new case"); + $this->log($action, "There are no records to start new cases"); $aInfo = array( 'ip' => \G::getIpAddress() ,'action' => $action ,'timeZone' => $datetime ,'workspace'=> $sysSys ); - $message = 'Not exists any record to start a new case'; + $message = 'There are no records to start new cases'; $context = $aInfo; Log::channel(':TimerEventCron')->info($message, Bootstrap::context($context)); } @@ -1466,14 +1466,14 @@ class TimerEvent //Intermediate Catch Timer-Event (continue the case) /////////////////////////////////////////////////////// $action = "START-CONTINUE-CASES"; - $this->log($action, "Start continue the cases"); + $this->log($action, "Start continuing the cases"); $aInfo = array( 'ip' => \G::getIpAddress() ,'action' => $action ,'timeZone' => $datetime ,'workspace'=> $sysSys ); - $message = 'Start continue the cases'; + $message = 'Start continuing the cases'; $context = $aInfo; Log::channel(':TimerEventCron')->info($message, Bootstrap::context($context)); @@ -1719,16 +1719,16 @@ class TimerEvent } while ($flagNextRecord); if (!$flagRecord) { - $common->frontEndShow("TEXT", "No existing records to continue a case, on date \"$datetime (UTC +00:00)\""); + $common->frontEndShow("TEXT", "There are no records to continue cases, on date \"$datetime (UTC +00:00)\""); - $this->log("NO-RECORDS", "No existing records to continue a case"); + $this->log("NO-RECORDS", "There are no records to continue cases"); $aInfo = array( 'ip' => \G::getIpAddress() ,'action' => $action ,'timeZone' => $datetime ,'workspace'=> $sysSys ); - $message = 'No existing records to continue a case'; + $message = 'There are no records to continue cases'; $context = $aInfo; Log::channel(':TimerEventCron')->info($message, Bootstrap::context($context)); } diff --git a/workflow/engine/templates/admin/pmLogo.js b/workflow/engine/templates/admin/pmLogo.js index c4327afd1..f7155563c 100644 --- a/workflow/engine/templates/admin/pmLogo.js +++ b/workflow/engine/templates/admin/pmLogo.js @@ -192,7 +192,7 @@ Ext.onReady(function () { fn: function (dv, nodes) { var l = nodes.length; var s = l != 1 ? 's' : ''; - panelLeft.setTitle(_('PHOTO_GALLERY') + '(' + l + ' ' + _('ID_IMAGE') + s + ' ' + _('ID_SELECTED') + ')'); + panelLeft.setTitle(_('PHOTO_GALLERY') + ' (' + l + ' ' + _('ID_IMAGE') + s + ' ' + _('ID_SELECTED') + ')'); if (nodes.length > 0) { Ext.getCmp('tbarAply').enable(); Ext.getCmp('tbarDelete').enable(); @@ -220,7 +220,7 @@ Ext.onReady(function () { width: 520, autoHeight: true, layout: 'auto', - title: _('PHOTO_GALLERY') + '(0 ' + _('ID_IMAGES_SELECTED') + ')', + title: _('PHOTO_GALLERY') + ' (0 ' + _('ID_IMAGES_SELECTED') + ')', items: [tbar, datav] }); From 80012ed9c5fd9d0bd511cd2596b93a168ba71bd7 Mon Sep 17 00:00:00 2001 From: Fabio Guachalla Date: Fri, 14 Jan 2022 12:17:36 -0400 Subject: [PATCH 10/23] DRT-228:DRT new UI is not displaying correctly its screen when the browser has a resize --- resources/assets/js/home/LegacyFrame.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/resources/assets/js/home/LegacyFrame.vue b/resources/assets/js/home/LegacyFrame.vue index e65e2595f..4b4625eea 100644 --- a/resources/assets/js/home/LegacyFrame.vue +++ b/resources/assets/js/home/LegacyFrame.vue @@ -19,11 +19,12 @@ export default { pageUri: String, }, mounted() { - this.height = window.innerHeight - this.diffHeight; + this.height = `${window.innerHeight - this.diffHeight}px`; + window.addEventListener('resize', this.autoResizeFrame); }, data() { return { - height: "100%", + height: "0px", width: "100%", diffHeight: 10 }; @@ -32,6 +33,11 @@ export default { classBtn(cls) { return "btn v-btn-request " + cls; }, + autoResizeFrame(event) { + event.preventDefault(); + this.height = `${window.innerHeight - this.diffHeight}px`; + event.stopPropagation(); + }, }, }; From 93b12edb143940f4a17557e2b4e66699df969990 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 24 Jan 2022 10:14:55 -0400 Subject: [PATCH 11/23] PMCORE-3643 --- database/factories/OauthClientsFactory.php | 2 +- .../workflow/engine/src/ProcessMaker/TaskScheduler/TaskTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/database/factories/OauthClientsFactory.php b/database/factories/OauthClientsFactory.php index aa8406fa2..21e70c0e2 100644 --- a/database/factories/OauthClientsFactory.php +++ b/database/factories/OauthClientsFactory.php @@ -4,7 +4,7 @@ use Faker\Generator as Faker; $factory->define(\ProcessMaker\Model\OauthClients::class, function(Faker $faker) { return [ - "CLIENT_ID" => $faker->word, + "CLIENT_ID" => $faker->unique()->word(), "CLIENT_SECRET" => $faker->regexify("/[a-zA-Z]{6}/"), "CLIENT_NAME" => $faker->regexify("/[a-zA-Z]{6}/"), "CLIENT_DESCRIPTION" => $faker->text, diff --git a/tests/unit/workflow/engine/src/ProcessMaker/TaskScheduler/TaskTest.php b/tests/unit/workflow/engine/src/ProcessMaker/TaskScheduler/TaskTest.php index f2f846e49..558cf0fef 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/TaskScheduler/TaskTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/TaskScheduler/TaskTest.php @@ -547,7 +547,7 @@ class TaskTest extends TestCase //Gets the result $printing = ob_get_clean(); //Asserts the result is printing that there is no exisiting records to continue a case in the determined date - $this->assertRegExp('/No existing records to continue a case, on date "' . $date . '/', $printing); + $this->assertRegExp('/There are no records to start new cases, on date "' . $date . '/', $printing); } //assert asynchronous for job process if ($asynchronous === true) { From e25d58dd8cb8a6a32c2dcfd4101ac694d46219e7 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 24 Jan 2022 16:48:45 -0400 Subject: [PATCH 12/23] PMCORE-1194 --- workflow/engine/classes/WsBase.php | 4 +++- workflow/engine/controllers/pmTablesProxy.php | 4 +++- workflow/engine/methods/setup/mainAjax.php | 4 +++- .../src/ProcessMaker/BusinessModel/ReportTable.php | 12 +++++++++--- .../engine/src/ProcessMaker/BusinessModel/Table.php | 8 ++++++-- 5 files changed, 24 insertions(+), 8 deletions(-) diff --git a/workflow/engine/classes/WsBase.php b/workflow/engine/classes/WsBase.php index e437c3e78..64e219d30 100644 --- a/workflow/engine/classes/WsBase.php +++ b/workflow/engine/classes/WsBase.php @@ -1846,7 +1846,9 @@ class WsBase ob_start(); print_r($variables); $cdata = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } $up_case = $oCase->updateCase($caseId, $oldFields); $result = new WsResponse( diff --git a/workflow/engine/controllers/pmTablesProxy.php b/workflow/engine/controllers/pmTablesProxy.php index dc9fe8c0f..e009e986b 100644 --- a/workflow/engine/controllers/pmTablesProxy.php +++ b/workflow/engine/controllers/pmTablesProxy.php @@ -954,7 +954,9 @@ class pmTablesProxy extends HttpProxyController } //ob_end_clean is used to close the ob_start opening at the beginning of this method. - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } return $result; } diff --git a/workflow/engine/methods/setup/mainAjax.php b/workflow/engine/methods/setup/mainAjax.php index d3cb2c9fa..5b3c1fd6b 100644 --- a/workflow/engine/methods/setup/mainAjax.php +++ b/workflow/engine/methods/setup/mainAjax.php @@ -43,7 +43,9 @@ switch ($request) { } $x = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } /////// if ($_GET["menu"] == "plugins") { diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/ReportTable.php b/workflow/engine/src/ProcessMaker/BusinessModel/ReportTable.php index 27ce991aa..b66cd3518 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/ReportTable.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/ReportTable.php @@ -474,7 +474,9 @@ class ReportTable $buildResult = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } //Updating additional table struture information $addTabData = [ @@ -572,7 +574,9 @@ class ReportTable } catch (Exception $e) { $buildResult = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } $result->success = false; @@ -833,7 +837,9 @@ class ReportTable ob_start(); $pmTable->buildModelFor($dbsUid, $tables); $buildResult = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } $errors .= $pmTable->upgradeDatabaseFor($pmTable->getDataSource(), $tables); } diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Table.php b/workflow/engine/src/ProcessMaker/BusinessModel/Table.php index 6f155f7e1..5324306fa 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Table.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Table.php @@ -379,7 +379,9 @@ class Table } $pmTable->build(); $buildResult = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } unset($buildResult); // Updating additional table struture information @@ -586,7 +588,9 @@ class Table $pmTable->build(); $buildResult = ob_get_contents(); - ob_end_clean(); + if (ob_get_contents()) { + ob_end_clean(); + } unset($buildResult); $addTabData = [ From 6a1c1b25ec7c390d47bc2e48e3b0d2da7bbe018c Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 25 Jan 2022 10:49:54 -0400 Subject: [PATCH 13/23] PMCORE-2439 --- workflow/engine/classes/class.pmFunctions.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/workflow/engine/classes/class.pmFunctions.php b/workflow/engine/classes/class.pmFunctions.php index 515c4d625..5da34277b 100644 --- a/workflow/engine/classes/class.pmFunctions.php +++ b/workflow/engine/classes/class.pmFunctions.php @@ -1205,8 +1205,8 @@ function WSNewCaseImpersonate ($processId, $userId, $name1, $value1, $name2, $va * @label WS New Case * @link http://wiki.processmaker.com/index.php/ProcessMaker_Functions#WSNewCase.28.29 * - * @param string(32) | $processId | Process ID | The unique ID for the process. To use the current process, use the system variable @@PROCESS. - * @param string(32) | $userId | User ID | The unique ID for the user. To use the currently logged-in user, use the system variable @@USER_LOGGED. + * @param string(32) | $processId | Process ID | The unique ID for the process. To use the current process use the system variable @@PROCESS. + * @param string(32) | $taskId | Task ID | The unique ID for the task. To use the current task use the system variable @@TASK. * @param string(32) | $name1 | Name of the first variable | The name of the first variable to be sent to the created case. * @param string(32) | $value1 | Value of the first variable | The value of the first variable to be sent to the created case. * @param string(32) | $name2 | Name of the second variable | The name of the second variable to be sent to the created case. @@ -3144,6 +3144,8 @@ function PMFGetProcessUidByName($processName = '') /** * @method + * @deprecated Method deprecated in Release 3.6.x + * * The requested text in the specified language | If not found returns false * @name PMFGeti18nText * @label PMF Get i18n Text @@ -3275,6 +3277,8 @@ function PMFGetTaskName($taskUid, $lang = SYS_LANG) { /** * @method + * @deprecated Method deprecated in Release 3.6.x + * * Return the group title of the specified group uid | If not found returns false * @name PMFGetGroupName * @label PMF Get Group Title Text From 163ddcf8aa71435294e821796254f47b2e81a6b6 Mon Sep 17 00:00:00 2001 From: henry jordan Date: Tue, 25 Jan 2022 16:46:05 +0000 Subject: [PATCH 14/23] PMCORE-1968 --- workflow/engine/content/languages/translation.en | 2 +- .../engine/content/translations/english/processmaker.en.po | 4 ++-- workflow/engine/data/mysql/insert.sql | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index 0677888dd..ae344a753 100755 --- a/workflow/engine/content/languages/translation.en +++ b/workflow/engine/content/languages/translation.en @@ -1,5 +1,5 @@ A folder with same name already exist.
";s:17:"CANT_DEL_LANGUAGE";s:67:"This language cannot be deleted because it is currently being used.";s:5:"CASES";s:5:"Cases";s:9:"CHECK_ALL";s:9:"Check All";s:9:"COMPLETED";s:9:"Completed";s:10:"DATE_LABEL";s:4:"Date";s:18:"DBCONNECTIONS_MSGR";s:15:"Server Response";s:19:"DBCONNECTIONS_TITLE";s:37:"Testing database server configuration";s:17:"DBCONNECTIOS_MSG2";s:6:"FAILED";s:8:"DBS_NAME";s:15:"Connection Name";s:10:"DBS_REMOVE";s:49:"Database Connection has been removed successfully";s:5:"DRAFT";s:4:"High";s:23:"DYNAFIELD_ALREADY_EXIST";s:33:"The variable name already exists!";s:15:"DYNAFIELD_EMPTY";s:23:"The Field Name is empty";s:25:"DYNAFIELD_NODENAME_NUMBER";s:45:"The field name should not start with a number";s:31:"DYNAFIELD_PHPNAME_ALREADY_EXIST";s:212:"Name error encountered when creating the variable: {0}. Please rename the variable you are creating with a unique name. Avoid differentiating similarly-named variables with only capitalization and \'_\' characters.";s:12:"EMAIL_ENGINE";s:12:"Email Engine";s:21:"ESTABLISHING_CON_HOST";s:31:"Establishing connection to host";s:10:"HTML_FILES";s:48:"You can open only files with the .html extension";s:15:"ID_3DAYSMINIMUM";s:15:"3 days at least";s:23:"ID_ABE_ANSWER_SUBMITTED";s:41:"The answer has been submitted. Thank you.";s:23:"ID_ABE_CASE_NOTE_ANSWER";s:21:"Answer: {optionLabel}";s:24:"ID_ABE_CASE_NOTE_COMMENT";s:20:"Comment: {emailBody}";s:23:"ID_ABE_CASE_NOTE_HEADER";s:58:"{emailAccount} has completed a task from Actions by Email.";s:31:"ID_ABE_EMAIL_RESPONSE_BODY_NOTE";s:81:"Please add your comments above this section. Don\'t modify or delete this section.";s:26:"ID_ABE_FORM_ALREADY_FILLED";s:42:"The form has already been filled and sent.";s:28:"ID_ABE_INFORMATION_SUBMITTED";s:41:"The information was submitted. Thank you.";s:25:"ID_ABE_LOG_ALREADY_ROUTED";s:60:"The case was identified correctly but it was already routed.";s:31:"ID_ABE_LOG_CANNOT_BE_IDENTIFIED";s:30:"The case cannot be identified.";s:22:"ID_ABE_LOG_CANNOT_READ";s:55:"The application cannot read the email receiver account.";s:23:"ID_ABE_LOG_PROCESSED_OK";s:35:"The answer was processed correctly.";s:25:"ID_ABE_LOG_ROUTING_FAILED";s:69:"The case was identified correctly but the routing process has failed.";s:30:"ID_ABE_RESPONSE_ALREADY_ROUTED";s:100:"Your answer cannot be processed because the case was already routed or is no longer assigned to you.";s:36:"ID_ABE_RESPONSE_CANNOT_BE_IDENTIFIED";s:99:"Your answer cannot be processed, please try again and make sure to keep the subject code untouched.";s:30:"ID_ABE_RESPONSE_ROUTING_FAILED";s:138:"Your answer cannot be processed because there is an error in the flow definition, please notify to this issue to the system administrator.";s:20:"ID_ABE_RESPONSE_SENT";s:35:"The response has already been sent.";s:9:"ID_ACCEPT";s:6:"Accept";s:16:"ID_ACCESS_DENIED";s:14:"Access Denied!";s:10:"ID_ACCOUNT";s:7:"Account";s:33:"ID_ACCOUNT_DISABLED_CONTACT_ADMIN";s:50:"Disabled. Please contact the system administrator.";s:18:"ID_ACCOUNT_OPTIONS";s:15:"Account Options";s:9:"ID_ACTION";s:6:"Action";s:10:"ID_ACTIONS";s:7:"Actions";s:19:"ID_ACTIONS_BY_EMAIL";s:19:"actionsByEmail.html";s:39:"ID_ACTIONS_BY_EMAIL_LINK_TO_FILL_A_FORM";s:25:"Please complete this form";s:23:"ID_ACTIONS_BY_EMAIL_LOG";s:20:"Actions By Email Log";s:39:"ID_ACTION_DISABLED_TO_LOW_PERFORMANCE_1";s:124:"This action was disabled to prevent slow browser performance. There are more than 100 records in the column definition grid.";s:39:"ID_ACTION_DISABLED_TO_LOW_PERFORMANCE_2";s:64:"

Please perform this action with manual selection only.";s:16:"ID_ACTION_EXPORT";s:6:"Export";s:16:"ID_ACTION_IGNORE";s:6:"Ignore";s:11:"ID_ACTIVATE";s:8:"Activate";s:9:"ID_ACTIVE";s:6:"Active";s:15:"ID_ACTIVE_USERS";s:12:"Active Users";s:26:"ID_ACTIVITY_DOES_NOT_EXIST";s:42:"The activity with {0}: {1} does not exist.";s:31:"ID_ACTIVITY_DOES_NOT_HAVE_USERS";s:39:"The activity "{0}" does not have users.";s:50:"ID_ACTIVITY_INVALID_ASSIGNMENT_METHOD_FOR_ACTIVITY";s:73:"The activity {0}: "{1}", has an invalid assignment method for an activity";s:68:"ID_ACTIVITY_INVALID_ASSIGNMENT_METHOD_FOR_MULTIPLE_INSTANCE_ACTIVITY";s:87:"The activity {0}: "{1}", has an invalid assignment method for a multi-instance activity";s:69:"ID_ACTIVITY_INVALID_USER_DATA_VARIABLE_FOR_MULTIPLE_INSTANCE_ACTIVITY";s:119:"The activity {0}: "{1}", has an invalid user-data in "{2}" or this variable doesn\'t exist for a multi-instance activity";s:35:"ID_ACTIVITY_IS_NOT_INITIAL_ACTIVITY";s:43:"The activity "{0}" is not initial activity.";s:9:"ID_ACTORS";s:6:"Actors";s:30:"ID_ACTORS_ASSIGNED_SUCESSFULLY";s:52:"{0} Actors assign to task "{1}" successfully!";s:25:"ID_ACTOR_ALREADY_ASSIGNED";s:48:"The actor is already assigned to task {0}";s:29:"ID_ACTOR_ASSIGNED_SUCESSFULLY";s:65:"The actor was assigned to task "{tas_title}" successfully!";s:6:"ID_ADD";s:3:"Add";s:20:"ID_ADDITIONAL_FILTER";s:17:"Additional Filter";s:20:"ID_ADDITIONAL_TABLES";s:9:"PM Tables";s:10:"ID_ADDRESS";s:7:"Address";s:20:"ID_ADD_CUSTOM_COLUMN";s:17:"Add Custom Column";s:19:"ID_ADD_DATA_PMTABLE";s:20:"Add Data to PM table";s:12:"ID_ADD_FIELD";s:9:"Add field";s:11:"ID_ADD_FILE";s:8:"Add file";s:22:"ID_ADD_HORIZONTAL_LINE";s:19:"Add horizontal line";s:14:"ID_ADD_LICENSE";s:24:"Please add a new license";s:14:"ID_ADD_MESSAGE";s:11:"Add message";s:11:"ID_ADD_NOTE";s:8:"Add Note";s:25:"ID_ADD_PERMISSION_TO_ROLE";s:22:"Add Permission To Role";s:10:"ID_ADD_ROW";s:7:"Add Row";s:18:"ID_ADD_SUB_PROCESS";s:15:"Add Sub-Process";s:11:"ID_ADD_TASK";s:8:"Add Task";s:11:"ID_ADD_TEXT";s:8:"Add Text";s:18:"ID_ADD_TO_EXISTING";s:15:"Add to existing";s:19:"ID_ADD_USER_OF_TASK";s:25:"Last executor of the task";s:20:"ID_ADD_VERTICAL_LINE";s:17:"Add Vertical Line";s:19:"ID_ADHOC_ASSIGNMENT";s:17:"Ad Hoc Assignment";s:22:"ID_ADHOC_GROUPS_ACTORS";s:20:"Ad Hoc Groups Actors";s:21:"ID_ADHOC_USERS_ACTORS";s:19:"Ad hoc Users Actors";s:8:"ID_ADMIN";s:5:"Admin";s:34:"ID_ADMINISTRATOR_ROLE_CANT_CHANGED";s:49:"The role of the administrator can not be changed!";s:22:"ID_ADMINS_CANT_USE_UXS";s:53:"Administrators users cannot use this User Experience.";s:17:"ID_ADMIN_PASSWORD";s:22:"Confirm Admin Password";s:23:"ID_ADMIN_PASSWORD_LABEL";s:14:"Admin Password";s:19:"ID_ADMIN_PLUGIN_TIP";s:25:"Admin the selected plugin";s:17:"ID_ADMIN_USERNAME";s:14:"Admin Username";s:17:"ID_ADVANCEDSEARCH";s:15:"Advanced Search";s:16:"ID_AD_HOC_ACTORS";s:13:"Ad Hoc Actors";s:18:"ID_AFFECTED_GROUPS";s:15:"Affected Groups";s:8:"ID_AFTER";s:5:"After";s:19:"ID_AFTER_DERIVATION";s:13:"After Routing";s:23:"ID_AFTER_ROUTING_NOTIFY";s:47:"After routing notify the next assigned user(s).";s:8:"ID_AGREE";s:7:"I agree";s:28:"ID_AJAX_COMMUNICATION_FAILED";s:25:"Ajax communication failed";s:8:"ID_ALERT";s:5:"Alert";s:16:"ID_ALERT_MESSAGE";s:13:"Alert Message";s:6:"ID_ALL";s:3:"All";s:26:"ID_ALLOW_ARBITARY_TRANSFER";s:32:"Allow arbitary transfer (Ad hoc)";s:17:"ID_ALL_CATEGORIES";s:14:"All Categories";s:14:"ID_ALL_PROCESS";s:13:"All Processes";s:34:"ID_ALL_RECORDS_DELETED_SUCESSFULLY";s:37:"All records were successfully deleted";s:13:"ID_ALL_STATUS";s:12:"All Statuses";s:12:"ID_ALL_USERS";s:9:"All Users";s:16:"ID_ALL_VARIABLES";s:13:"All Variables";s:17:"ID_ALL_WORKSPACES";s:14:"All Workspaces";s:19:"ID_ALREADY_ASSIGNED";s:45:"This ID: {0} is already assigned to task: {1}";s:24:"ID_ALREADY_RELATED_TABLE";s:137:"The table is already related with the \'{0}\' process, do you want to continue? (Note: The table will be imported to the original process).";s:12:"ID_ANONYMOUS";s:9:"Anonymous";s:11:"ID_ANSWERED";s:8:"Answered";s:6:"ID_ANY";s:3:"Any";s:11:"ID_ANY_TASK";s:9:"All Tasks";s:17:"ID_APPCACHE_SETUP";s:23:"Case List Cache Builder";s:15:"ID_APPLICATIONS";s:8:"DESIGNER";s:24:"ID_APPLICATION_NOT_EXIST";s:47:"The application with {0}: \'{1}\' does not exist.";s:31:"ID_APPLICATION_OR_INDEX_MISSING";s:81:"Application ID or Delegation Index is missing!. The System can not open the case.";s:8:"ID_APPLY";s:5:"Apply";s:21:"ID_APPLY_AS_MAIN_LOGO";s:18:"Apply as main logo";s:16:"ID_APPLY_CHANGES";s:13:"Apply changes";s:15:"ID_APP_MSG_BODY";s:4:"Body";s:10:"ID_APP_UID";s:7:"App Uid";s:26:"ID_ARE_YOU_SURE_CLAIM_TASK";s:36:"Are you sure want to claim the task?";s:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";s:28:"ID_ARE_YOU_SURE_UNPAUSE_TASK";s:38:"Are you sure want to unpause the task?";s:24:"ID_ARRAY_VARIABLES_EMPTY";s:27:"Array of variables is empty";s:9:"ID_ASSIGN";s:6:"Assign";s:17:"ID_ASSIGNED_FIEDS";s:15:"ASSIGNED FIELDS";s:18:"ID_ASSIGNED_GROUPS";s:15:"ASSIGNED GROUPS";s:19:"ID_ASSIGNED_MEMBERS";s:7:"MEMBERS";s:23:"ID_ASSIGNED_PERMISSIONS";s:20:"ASSIGNED PERMISSIONS";s:27:"ID_ASSIGNED_PERMISSIONS_FOR";s:24:"ASSIGNED PERMISSIONS FOR";s:14:"ID_ASSIGNED_TO";s:11:"Assigned To";s:17:"ID_ASSIGNED_USERS";s:14:"ASSIGNED USERS";s:18:"ID_ASSIGNMENT_CASE";s:18:"Assignment case...";s:19:"ID_ASSIGNMENT_RULES";s:16:"Assignment Rules";s:20:"ID_ASSIGN_ALL_GROUPS";s:17:"Assign All Groups";s:21:"ID_ASSIGN_ALL_MEMBERS";s:18:"Assign All Members";s:25:"ID_ASSIGN_ALL_PERMISSIONS";s:22:"Assign All Permissions";s:19:"ID_ASSIGN_ALL_USERS";s:16:"Assign All Users";s:31:"ID_ASSIGN_AUTHENTICATION_SOURCE";s:28:"Assign Authentication Source";s:15:"ID_ASSIGN_GROUP";s:12:"Assign group";s:20:"ID_ASSIGN_GROUP_TASK";s:17:"Assign Group Task";s:18:"ID_ASSIGN_GROUP_TO";s:15:"Assign group to";s:32:"ID_ASSIGN_MANAGER_TO_DEPARTAMENT";s:28:"Assign Manager To Department";s:14:"ID_ASSIGN_ROLE";s:11:"Assign user";s:15:"ID_ASSIGN_RULES";s:152:"Error: There is a problem with the next tasks of this process. One of them has manual assignment. Manual assignment shouldn\'t be used with sub-processes";s:16:"ID_ASSIGN_SCREEN";s:13:"Assign Screen";s:29:"ID_ASSIGN_SUPERVISOR_DYNAFORM";s:26:"Assign Supervisor Dynaform";s:26:"ID_ASSIGN_SUPERVISOR_INPUT";s:23:"Assign Supervisor Input";s:14:"ID_ASSIGN_TASK";s:17:"Assign Task/Event";s:18:"ID_ASSIGN_THE_ROLE";s:15:"Assign the role";s:12:"ID_ASSIGN_TO";s:9:"Assign To";s:17:"ID_ASSIGN_TRIGGER";s:14:"Assign Trigger";s:18:"ID_ASSIGN_TRIGGERS";s:15:"Assign Triggers";s:20:"ID_ASSIGN_USERGROUPS";s:26:"Assign users group or user";s:15:"ID_ASSIGN_USERS";s:12:"Assign Users";s:19:"ID_ASSIGN_USER_TASK";s:16:"Assign User Task";s:29:"ID_ASSIGN_USER_TO_DEPARTAMENT";s:26:"Assign Users To Department";s:23:"ID_ASSIGN_USER_TO_GROUP";s:21:"Assign Users To Group";s:22:"ID_ASSIGN_USER_TO_ROLE";s:20:"Assign Users To Role";s:22:"ID_ASSIGN_VARIABLES_IN";s:19:"Assign Variables In";s:23:"ID_ASSIGN_VARIABLES_OUT";s:20:"Assign Variables Out";s:9:"ID_ATTACH";s:6:"Attach";s:14:"ID_ATTACHED_DB";s:8:"Attached";s:17:"ID_ATTACHED_FILES";s:14:"Attached files";s:14:"ID_ATTACH_FILE";s:11:"Attach file";s:13:"ID_ATTRIBUTES";s:10:"Attributes";s:36:"ID_ATTRIBUTE_HAS_INVALID_ELEMENT_KEY";s:59:"The attribute {0}, has an invalid element (incorrect keys).";s:10:"ID_AT_RISK";s:7:"At Risk";s:10:"ID_AT_TILL";s:17:"at ${0} Till ${1}";s:19:"ID_AUDITLOG_DISPLAY";s:9:"Audit Log";s:20:"ID_AUDIT_LOG_ACTIONS";s:17:"Audit Log Actions";s:22:"ID_AUDIT_LOG_DETAILS_1";s:87:"When this option is enabled, all changes made in the Admin tab are registered in a log.";s:22:"ID_AUDIT_LOG_DETAILS_2";s:84:"The user will be able to see those changes in the Audit Log option in the Logs menu.";s:21:"ID_AUDIT_LOG_DISABLED";s:27:"Audit Log has been disabled";s:20:"ID_AUDIT_LOG_ENABLED";s:26:"Audit Log has been enabled";s:17:"ID_AUTHENTICATION";s:14:"Authentication";s:20:"ID_AUTHENTICATION_DN";s:2:"DN";s:24:"ID_AUTHENTICATION_FAILED";s:21:"Authentication Failed";s:28:"ID_AUTHENTICATION_FORM_TITLE";s:32:"Authentication Source Assignment";s:24:"ID_AUTHENTICATION_SOURCE";s:21:"Authentication Source";s:36:"ID_AUTHENTICATION_SOURCE_INFORMATION";s:33:"Authentication Source Information";s:34:"ID_AUTHENTICATION_SOURCE_INF_TITLE";s:33:"Authentication Source Information";s:32:"ID_AUTHENTICATION_SOURCE_INVALID";s:46:"Authentication Source for this user is invalid";s:32:"ID_AUTHENTICATION_SUCCESS_DELETE";s:49:"Authentication source has been deleted correctly.";s:9:"ID_AUTHOR";s:6:"Author";s:15:"ID_AUTH_SOURCES";s:22:"Authentication Sources";s:30:"ID_AUTH_SOURCE_FEATURE_MISSING";s:105:"The feature related to this authentication source was disabled. Please consult your system administrator.";s:22:"ID_AUTH_SOURCE_MISSING";s:115:"The plugin related to this authentication source was removed or disabled. Please consult your system administrator.";s:17:"ID_AUTO_INCREMENT";s:14:"Auto Increment";s:14:"ID_AUTO_PREFIX";s:11:"Auto Prefix";s:35:"ID_AVAILABLE_AUTHENTICATION_SOURCES";s:32:"Available Authentication Sources";s:21:"ID_AVAILABLE_DATABASE";s:10:"Available.";s:15:"ID_AVAILABLE_DB";s:20:"Available DB Engines";s:19:"ID_AVAILABLE_FIELDS";s:16:"Available Fields";s:19:"ID_AVAILABLE_GROUPS";s:16:"AVAILABLE GROUPS";s:20:"ID_AVAILABLE_MEMBERS";s:17:"AVAILABLE MEMBERS";s:20:"ID_AVAILABLE_OFFLINE";s:17:"Available offline";s:44:"ID_AVAILABLE_OFFLINE_THE_MOBILE_APPLICATIONS";s:83:"Available offline, the mobile applications will download this table for offline use";s:24:"ID_AVAILABLE_PERMISSIONS";s:21:"AVAILABLE PERMISSIONS";s:21:"ID_AVAILABLE_TRIGGERS";s:18:"Available Triggers";s:18:"ID_AVAILABLE_USERS";s:15:"AVAILABLE USERS";s:7:"ID_BACK";s:4:"Back";s:24:"ID_BACK_PERMISSIONS_LIST";s:24:"Back to permissions list";s:21:"ID_BACK_TO_GROUP_LIST";s:19:"Back to user groups";s:21:"ID_BACK_TO_USERS_LIST";s:18:"Back to Users List";s:14:"ID_BAD_REQUEST";s:12:"Bad Request!";s:7:"ID_BARS";s:4:"Bars";s:10:"ID_BASE_DN";s:7:"Base DN";s:16:"ID_BATCH_ROUTING";s:13:"Batch Routing";s:30:"ID_BATCH_ROUTING_APPLY_CHANGES";s:44:"The modification will be applied to all rows";s:37:"ID_BATCH_ROUTING_TABLE_ALREADY_EXISTS";s:196:"The specified batch routing table already exists. The existing table will be used to store the batch routing information. Please be sure that the table has the correct batch routing configuration.";s:9:"ID_BEFORE";s:6:"Before";s:20:"ID_BEFORE_ASSIGNMENT";s:17:"Before Assignment";s:20:"ID_BEFORE_DERIVATION";s:14:"Before Routing";s:16:"ID_BEFORE_UPDATE";s:14:"Before Upgrade";s:12:"ID_BEHAVIOUR";s:9:"Behaviour";s:17:"ID_BLANK_DYNAFORM";s:14:"Blank Dynaform";s:8:"ID_BLOCK";s:5:"Block";s:14:"ID_BLOCKER_MSG";s:152:"Warning: Processmaker does not permit you to open multiple tabs in the same browser session because of security restrictions. -This page will be closed.";s:16:"ID_BOTTOM_MARGIN";s:13:"Bottom Margin";s:14:"ID_BPMN_EDITOR";s:18:"BPMN Editor (Beta)";s:27:"ID_BPMN_PROCESS_DEF_PROBLEM";s:85:"There is a problem in the BPMN process definition and/or an exception error occurred.";s:19:"ID_BREAK_DW_PROCESS";s:34:"were lost by a connection problem.";s:9:"ID_BROWSE";s:6:"Browse";s:24:"ID_BROWSER_NOT_SUPPORTED";s:30:"This browser is not supported.";s:17:"ID_BROWSE_LIBRARY";s:14:"Browse Library";s:14:"ID_BUILD_CACHE";s:11:"Build Cache";s:9:"ID_BUTTON";s:6:"Button";s:10:"ID_BUY_NOW";s:7:"Buy now";s:18:"ID_CACHE_BTN_BUILD";s:11:"Build Cache";s:26:"ID_CACHE_BTN_SETUP_PASSWRD";s:14:"Setup Password";s:26:"ID_CACHE_BTN_SETUP_SESSION";s:26:"Delete older session files";s:29:"ID_CACHE_BUILDER_CURRENT_USER";s:12:"Current User";s:25:"ID_CACHE_BUILDER_LANGUAGE";s:8:"Language";s:30:"ID_CACHE_BUILDER_MYSQL_VERSION";s:13:"MySQL Version";s:21:"ID_CACHE_BUILDER_ROWS";s:22:"Rows in APP_CACHE_VIEW";s:22:"ID_CACHE_BUILDER_TABLE";s:20:"Table APP_CACHE_VIEW";s:43:"ID_CACHE_BUILDER_TRIGGER_APPLICATION_DELETE";s:26:"Trigger APPLICATION DELETE";s:43:"ID_CACHE_BUILDER_TRIGGER_APPLICATION_UPDATE";s:26:"Trigger APPLICATION UPDATE";s:39:"ID_CACHE_BUILDER_TRIGGER_CONTENT_UPDATE";s:22:"Trigger CONTENT UPDATE";s:31:"ID_CACHE_BUILDER_TRIGGER_INSERT";s:29:"Trigger APP_DELEGATION INSERT";s:31:"ID_CACHE_BUILDER_TRIGGER_UPDATE";s:29:"Trigger APP_DELEGATION UPDATE";s:37:"ID_CACHE_BUILDER_USER_SUPER_PRIVILEGE";s:42:"The current user has SUPERUSER privileges.";s:17:"ID_CACHE_BUILDING";s:38:"Building Workflow Application Cache...";s:24:"ID_CACHE_DELETED_SUCCESS";s:39:"All cache data was deleted successfully";s:27:"ID_CACHE_DIR_ISNOT_WRITABLE";s:63:"The cache directory is not writable, change permissions please!";s:13:"ID_CACHE_FILE";s:11:"Cache file:";s:13:"ID_CACHE_HOST";s:4:"Host";s:17:"ID_CACHE_LANGUAGE";s:8:"Language";s:17:"ID_CACHE_PASSWORD";s:8:"Password";s:25:"ID_CACHE_SUBTITLE_REBUILD";s:34:"Rebuild Workflow Application Cache";s:26:"ID_CACHE_SUBTITLE_SETUP_DB";s:25:"Setup MySql Root Password";s:31:"ID_CACHE_SUBTITLE_SETUP_SESSION";s:19:"Session Maintenance";s:19:"ID_CACHE_TITLE_INFO";s:32:"Workflow Applications Cache Info";s:13:"ID_CACHE_USER";s:4:"User";s:11:"ID_CALENDAR";s:8:"Calendar";s:12:"ID_CALENDARS";s:9:"Calendars";s:32:"ID_CALENDAR_CREATED_SUCCESSFULLY";s:43:"Your calendar has been created successfully";s:22:"ID_CALENDAR_DEFINITION";s:19:"Calendar Definition";s:23:"ID_CALENDAR_DESCRIPTION";s:20:"Calendar Description";s:26:"ID_CALENDAR_DOES_NOT_EXIST";s:42:"The calendar with {0}: {1} does not exist.";s:24:"ID_CALENDAR_INVALID_NAME";s:33:"The calendar name already exists!";s:31:"ID_CALENDAR_NAME_ALREADY_EXISTS";s:49:"The calendar name with {0}: "{1}" already exists.";s:26:"ID_CALENDAR_SUCCESS_DELETE";s:36:"Calendar has been deleted correctly.";s:32:"ID_CALENDAR_UPDATED_SUCCESSFULLY";s:43:"Your calendar has been updated successfully";s:9:"ID_CANCEL";s:6:"Cancel";s:12:"ID_CANCELLED";s:8:"Canceled";s:13:"ID_CANCELLING";s:10:"Cancelling";s:14:"ID_CANCEL_CASE";s:11:"Cancel Case";s:18:"ID_CANCEL_NEW_NOTE";s:15:"Cancel New Note";s:40:"ID_CANCEL_PARTIAL_JOIN_MULTIPLE_INSTANCE";s:45:"Cancelling Partial Join for Multiple Instance";s:34:"ID_CANNOT_CHANGE_STATUS_ADMIN_USER";s:45:"Can\'t change the status of the Administrator!";s:27:"ID_CANNOT_DELETE_ADMIN_USER";s:31:"Can\'t delete the administrator!";s:16:"ID_CANNOT_IMPORT";s:13:"CANNOT IMPORT";s:37:"ID_CANNOT_REMOVE_TEMPLATE_EMAIL_EVENT";s:82:"You can not delete the template {0} because it has a relationship with Email Event";s:38:"ID_CANT_DELETE_DEPARTMENT_HAS_CHILDREN";s:74:"It is not possible to delete the department because it has subdepartments.";s:35:"ID_CANT_DELETE_DEPARTMENT_HAS_USERS";s:57:"Department cannot be deleted while it has assigned users.";s:27:"ID_CANT_RESOLVE_APPLICATION";s:49:"Can\'t resolve the Aplication ID for this request.";s:20:"ID_CANT_SAVE_TRIGGER";s:60:"A trigger with the same name already exists in this process.";s:19:"ID_CAN_NOT_BE_EMPTY";s:21:"{0}, can not be empty";s:18:"ID_CAN_NOT_BE_NULL";s:20:"{0}, can not be null";s:18:"ID_CAN_NOT_REMOVED";s:18:"Can not be removed";s:39:"ID_CAN_NOT_ROUTE_CASE_USING_WEBSERVICES";s:61:"Can not route a case with Manual Assignment using webservices";s:19:"ID_CAPS_LOCK_ALERT1";s:69:"Having Caps Lock on may cause you to enter your password incorrectly.";s:19:"ID_CAPS_LOCK_ALERT2";s:72:"You should press Caps Lock to turn it off before entering your password.";s:18:"ID_CAPS_LOCK_IS_ON";s:15:"Caps Lock is On";s:15:"ID_CAPTCHA_CODE";s:4:"Code";s:25:"ID_CAPTCHA_CODE_INCORRECT";s:29:"The Captcha Code is incorrect";s:21:"ID_CAPTCHA_INPUT_CODE";s:13:"Security Code";s:23:"ID_CAPTCHA_REFRESH_CODE";s:21:"Click to refresh code";s:7:"ID_CASE";s:4:"Case";s:13:"ID_CASECANCEL";s:35:"No actions available for this case.";s:11:"ID_CASEDEMO";s:9:"Case Demo";s:8:"ID_CASES";s:4:"HOME";s:9:"ID_CASES1";s:5:"Cases";s:29:"ID_CASESLIST_APP_CURRENT_USER";s:12:"Current User";s:26:"ID_CASESLIST_APP_DEL_INDEX";s:9:"Del Index";s:34:"ID_CASESLIST_APP_DEL_PREVIOUS_USER";s:7:"Sent by";s:28:"ID_CASESLIST_APP_FINISH_DATE";s:11:"Finish Date";s:23:"ID_CASESLIST_APP_NUMBER";s:1:"#";s:26:"ID_CASESLIST_APP_PRO_TITLE";s:7:"Process";s:23:"ID_CASESLIST_APP_STATUS";s:6:"Status";s:26:"ID_CASESLIST_APP_TAS_TITLE";s:4:"Task";s:29:"ID_CASESLIST_APP_THREAD_INDEX";s:12:"Thread Index";s:22:"ID_CASESLIST_APP_TITLE";s:4:"Case";s:20:"ID_CASESLIST_APP_UID";s:7:"Case Id";s:28:"ID_CASESLIST_APP_UPDATE_DATE";s:11:"Last Modify";s:22:"ID_CASESLIST_DEL_INDEX";s:10:"Case Index";s:25:"ID_CASESLIST_DEL_PRIORITY";s:8:"Priority";s:30:"ID_CASESLIST_DEL_TASK_DUE_DATE";s:8:"Due Date";s:27:"ID_CASESLIST_FIELD_COMPLETE";s:26:"Complete all system fields";s:30:"ID_CASESLIST_FIELD_COMPLETE_ID";s:64:"Complete all system fields with the label ID for its translation";s:30:"ID_CASESLIST_FIELD_LABEL_RESET";s:33:"Restart labels with system fields";s:33:"ID_CASESLIST_FIELD_LABEL_RESET_ID";s:78:"Restart labels with system fields with the ID of the label for its translation";s:24:"ID_CASESLIST_FIELD_RESET";s:41:"Restart everything with the system fields";s:27:"ID_CASESLIST_FIELD_RESET_ID";s:87:"Restart everything with the system fields, with the ID of the label for its translation";s:16:"ID_CASESREASSIGN";s:33:"You still have cases to reassign.";s:20:"ID_CASES_ASSIGNED_BY";s:23:"Cases to be Assigned by";s:18:"ID_CASES_DATE_MASK";s:11:"Date Format";s:27:"ID_CASES_DELETE_SUCCESFULLY";s:36:"All Cases were deleted successfully.";s:30:"ID_CASES_INCORRECT_INFORMATION";s:57:"Incorrect or unavailable information about this case: {0}";s:29:"ID_CASES_INPUT_DOES_NOT_EXIST";s:57:"This input document with app_doc_uid: {0} does not exist!";s:38:"ID_CASES_INPUT_FILENAME_DOES_NOT_EXIST";s:29:"This filename does not exist!";s:13:"ID_CASES_LIST";s:11:"Cases Lists";s:20:"ID_CASES_LIST_FIELDS";s:16:"Case List Fields";s:26:"ID_CASES_LIST_GRID_LOADING";s:34:"Loading Cases List, please wait...";s:19:"ID_CASES_LIST_SETUP";s:10:"Case Lists";s:19:"ID_CASES_MENU_ADMIN";s:18:"Process Supervisor";s:21:"ID_CASES_MENU_FOLDERS";s:5:"Cases";s:20:"ID_CASES_MENU_SEARCH";s:6:"Search";s:14:"ID_CASES_NOTES";s:10:"Case Notes";s:18:"ID_CASES_NOTES_ADD";s:12:"Add new note";s:21:"ID_CASES_NOTES_CANCEL";s:16:"Cancel this note";s:29:"ID_CASES_NOTES_NO_PERMISSIONS";s:52:"You do not have permission to access the cases notes";s:19:"ID_CASES_NOTES_POST";s:11:"Post a Note";s:21:"ID_CASES_NOTE_POSTING";s:14:"Posting a Note";s:24:"ID_CASES_NOTE_POST_ERROR";s:10:"Post Error";s:25:"ID_CASES_NOTE_POST_FAILED";s:23:"There is a server error";s:26:"ID_CASES_NOTE_POST_SUCCESS";s:24:"Note successfully posted";s:18:"ID_CASES_NOT_START";s:70:"You can\'t start a case because you don\'t have a starting task assigned";s:12:"ID_CASES_NUM";s:7:"# Cases";s:30:"ID_CASES_OUTPUT_DOES_NOT_EXIST";s:57:"This output document with app_doc_id: {0} does not exist!";s:19:"ID_CASES_ROW_NUMBER";s:23:"Number of Rows per Page";s:19:"ID_CASES_START_PAGE";s:11:"Start Pages";s:25:"ID_CASES_STATUS_CANCELLED";s:8:"Canceled";s:25:"ID_CASES_STATUS_COMPLETED";s:9:"Completed";s:21:"ID_CASES_STATUS_DRAFT";s:5:"Draft";s:22:"ID_CASES_STATUS_PAUSED";s:6:"Paused";s:21:"ID_CASES_STATUS_TO_DO";s:5:"To Do";s:14:"ID_CASES_STEPS";s:11:"Cases Steps";s:16:"ID_CASES_SUMMARY";s:13:"Cases Summary";s:30:"ID_CASES_TO_REASSIGN_TASK_LIST";s:29:"Cases to reassign - Task List";s:24:"ID_CASE_ALREADY_CANCELED";s:34:"The case \'{0}\' is already canceled";s:25:"ID_CASE_ALREADY_DERIVATED";s:19:"Case already routed";s:29:"ID_CASE_ASSIGNED_ANOTHER_USER";s:37:"This case is assigned to another user";s:17:"ID_CASE_CANCELLED";s:27:"The case {0} was cancelled!";s:26:"ID_CASE_CANCELLED_PARALLEL";s:104:"To cancel a case, no parallel threads must be active. Only cases with one active thread can be canceled.";s:25:"ID_CASE_CANCEL_LABEL_NOTE";s:29:"The case was canceled due to:";s:21:"ID_CASE_CANCEL_REASON";s:32:"Reason why the case was canceled";s:12:"ID_CASE_CODE";s:9:"Case Code";s:28:"ID_CASE_COULD_NOT_REASSIGNED";s:33:"The case could not be reassigned.";s:15:"ID_CASE_CREATED";s:12:"Case created";s:33:"ID_CASE_DELEGATION_ALREADY_CLOSED";s:56:"This case delegation is already closed or does not exist";s:28:"ID_CASE_DELETED_SUCCESSFULLY";s:47:"The Case {APP_NUMBER} was deleted successfully!";s:26:"ID_CASE_DELETE_SUCCESFULLY";s:34:"The Case was deleted successfully.";s:32:"ID_CASE_DEL_INDEX_DOES_NOT_EXIST";s:47:"The case {0}: {1} with {2}: {3} does not exist.";s:19:"ID_CASE_DESCRIPTION";s:16:"Case Description";s:22:"ID_CASE_DOES_NOT_EXIST";s:33:"Case {CASE_NUMBER} does not exist";s:23:"ID_CASE_DOES_NOT_EXIST2";s:38:"The case with {0}: {1} does not exist.";s:23:"ID_CASE_DOES_NOT_EXISTS";s:24:"This case does not exist";s:25:"ID_CASE_DOES_NOT_EXIST_JS";s:23:"Case {0} does not exist";s:13:"ID_CASE_FIELD";s:10:"Case Field";s:15:"ID_CASE_HISTORY";s:12:"Case History";s:17:"ID_CASE_IN_STATUS";s:22:"This case is in status";s:19:"ID_CASE_IS_CANCELED";s:26:"The case \'{0}\' is canceled";s:20:"ID_CASE_IS_COMPLETED";s:28:"The case "{0}" is completed.";s:38:"ID_CASE_IS_CURRENTLY_WITH_ANOTHER_USER";s:44:"The case is currently opened by another user";s:14:"ID_CASE_LABELS";s:11:"Case Labels";s:12:"ID_CASE_LIST";s:9:"Case List";s:12:"ID_CASE_NOTE";s:9:"Case Note";s:19:"ID_CASE_NOTES_EMPTY";s:19:"No notes to Display";s:23:"ID_CASE_NOTES_HINT_SEND";s:57:"A copy of this note will be sent to all Case Participants";s:24:"ID_CASE_NOTES_LABEL_SEND";s:30:"Send email (Case Participants)";s:21:"ID_CASE_NOTES_LOADING";s:16:"Loading Notes...";s:18:"ID_CASE_NOTES_MORE";s:15:"Show more notes";s:18:"ID_CASE_NOT_EXISTS";s:23:"The case does not exist";s:16:"ID_CASE_NOT_OPEN";s:21:"This case is not open";s:18:"ID_CASE_NOT_PAUSED";s:27:"Case with "{0}" not paused.";s:23:"ID_CASE_NOT_YET_STARTED";s:20:"Case not started yet";s:51:"ID_CASE_NO_CURRENT_TASKS_BECAUSE_CASE_ITS_COMPLETED";s:69:"There are no current tasks because case {0}: {1} has COMPLETED status";s:14:"ID_CASE_NUMBER";s:11:"Case number";s:26:"ID_CASE_NUMBER_CAPITALIZED";s:11:"Case Number";s:38:"ID_CASE_OUTPUT_DOCUMENT_DOES_NOT_EXIST";s:50:"This output document with {0}: {1} does not exist.";s:27:"ID_CASE_PAUSED_SUCCESSFULLY";s:92:"The Case {APP_NUMBER} was paused successfully and it will be unpaused on date {UNPAUSE_DATE}";s:24:"ID_CASE_PAUSE_LABEL_NOTE";s:27:"The case was paused due to:";s:20:"ID_CASE_PAUSE_REASON";s:24:"Reason to pause the case";s:23:"ID_CASE_PROPERTIES_SAVE";s:42:"Case Tracker Properties Saved Successfully";s:32:"ID_CASE_REACTIVATED_SUCCESSFULLY";s:51:"The case {APP_NUMBER} was reactivated successfully!";s:30:"ID_CASE_RESPONSE_NOT_AVAILABLE";s:57:"No response available, please review the case information";s:17:"ID_CASE_ROUTED_TO";s:14:"Case routed to";s:17:"ID_CASE_SCHEDULER";s:14:"Case Scheduler";s:25:"ID_CASE_SCHEDULER_CLASSIC";s:34:"Case Scheduler (classic processes)";s:32:"ID_CASE_SCHEDULER_DOES_NOT_EXIST";s:53:"This case scheduler with sch_uid: {0} does not exist!";s:27:"ID_CASE_SCHEDULER_DUPLICATE";s:29:"Duplicate Case Scheduler name";s:23:"ID_CASE_SCHEDULER_SAVED";s:32:"Case Scheduler Saved Sucessfully";s:25:"ID_CASE_SCHEDULER_SUMMARY";s:22:"Case Scheduler Summary";s:32:"ID_CASE_SCHEDULER_VALIDATE_ALERT";s:26:"User or password is empty.";s:13:"ID_CASE_START";s:10:"Start Case";s:23:"ID_CASE_STOPPED_TRIGGER";s:44:"The case has not stopped due to its trigger.";s:13:"ID_CASE_TITLE";s:10:"Case Title";s:16:"ID_CASE_TRACKERS";s:13:"Case trackers";s:37:"ID_CASE_TRACKER_OBJECT_DOES_NOT_EXIST";s:53:"The case tracker object with {0}: {1} does not exist.";s:16:"ID_CASE_UNARHIVE";s:13:"Case Unarhive";s:29:"ID_CASE_UNPAUSED_SUCCESSFULLY";s:48:"The Case {APP_NUMBER} was unpaused successfully!";s:32:"ID_CASE_USER_INVALID_CANCEL_CASE";s:50:"The user with "{0}" is invalid to cancel the Case.";s:32:"ID_CASE_USER_INVALID_PAUSED_CASE";s:49:"The user with "{0}" is invalid to pause the case.";s:33:"ID_CASE_USER_INVALID_UNPAUSE_CASE";s:51:"The user with "{0}" is invalid to Unpause the Case.";s:32:"ID_CASE_USER_NOT_HAVE_PERMISSION";s:67:"The user with "{0}" did not have permission to perform this action.";s:31:"ID_CASE_VARIABLE_ALREADY_EXISTS";s:51:"The Variable with {0}: "{1}" already exists in Case";s:31:"ID_CASE_VARIABLE_DOES_NOT_EXIST";s:51:"The Variable with {0}: "{1}" does not exist in Case";s:11:"ID_CATEGORY";s:8:"Category";s:18:"ID_CATEGORY_EXISTS";s:29:"Category name already exists.";s:16:"ID_CATEGORY_NAME";s:13:"Category Name";s:31:"ID_CATEGORY_NAME_ALREADY_EXISTS";s:49:"The category name with {0}: "{1}" already exists.";s:21:"ID_CATEGORY_NOT_EXIST";s:44:"The category with {0}: \'{1}\' does not exist.";s:26:"ID_CATEGORY_SUCCESS_DELETE";s:44:"Process category has been deleted correctly.";s:23:"ID_CATEGORY_SUCCESS_NEW";s:44:"Process category has been created correctly.";s:26:"ID_CATEGORY_SUCCESS_UPDATE";s:44:"Process category has been updated correctly.";s:9:"ID_CENTER";s:6:"center";s:16:"ID_CHANGES_SAVED";s:13:"Changes saved";s:23:"ID_CHANGE_DATABASE_NAME";s:20:"Change database name";s:18:"ID_CHANGE_PASSWORD";s:15:"Change Password";s:16:"ID_CHANGE_STATUS";s:13:"Change Status";s:14:"ID_CHANGE_VIEW";s:11:"Change view";s:8:"ID_CHECK";s:5:"Check";s:11:"ID_CHECKING";s:11:"Checking...";s:14:"ID_CHECK_AGAIN";s:11:"Check again";s:12:"ID_CHECK_ALL";s:9:"Check All";s:24:"ID_CHECK_FIELDS_MARK_RED";s:38:"Please check the fields marked in red.";s:13:"ID_CHECK_PORT";s:13:"Checking port";s:20:"ID_CHECK_PORT_FAILED";s:46:"Error Testing Connection: Checking port failed";s:16:"ID_CHECK_UPDATES";s:60:"Check for updates (you need to be connected to the Internet)";s:32:"ID_CHECK_WORKSPACE_CONFIGURATION";s:29:"Check Workspace Configuration";s:16:"ID_CHOOSE_OPTION";s:16:"Choose an option";s:18:"ID_CHOOSE_PROVIDER";s:22:"Please select provider";s:14:"ID_CHOOSE_TIME";s:13:"Choose a time";s:8:"ID_CLAIM";s:5:"Claim";s:17:"ID_CLASSIC_EDITOR";s:14:"Classic Editor";s:23:"ID_CLASS_ALREADY_EXISTS";s:20:"Class already exists";s:27:"ID_CLASS_TABLE_DOESNT_EXIST";s:31:"This Class Table doesn\'t exist!";s:19:"ID_CLEAN_WEBENTRIES";s:17:"Clean web-entries";s:24:"ID_CLEAN_WEBENTRIES_DESC";s:17:"Clean web-entries";s:8:"ID_CLEAR";s:5:"Clear";s:14:"ID_CLEAR_CACHE";s:11:"Clear Cache";s:23:"ID_CLEAR_CACHE_CONFIRM1";s:26:"Clear all cache files now?";s:19:"ID_CLEAR_CACHE_MSG1";s:26:"All cache data was deleted";s:19:"ID_CLEAR_CACHE_MSG2";s:28:"The cache directory is empty";s:13:"ID_CLEAR_CRON";s:10:"Clear Cron";s:12:"ID_CLEAR_LOG";s:9:"Clear Log";s:13:"ID_CLICK_LOCK";s:31:"Click the lock to make changes.";s:15:"ID_CLICK_UNLOCK";s:42:"Click the lock to prevent further changes.";s:12:"ID_CLIENT_ID";s:9:"Client ID";s:16:"ID_CLIENT_SECRET";s:13:"Client Secret";s:8:"ID_CLOSE";s:5:"Close";s:15:"ID_CLOSE_EDITOR";s:12:"Close Editor";s:7:"ID_CODE";s:4:"Code";s:13:"ID_CODE_CRYPT";s:5:"Code:";s:15:"ID_COLLAPSE_ALL";s:12:"Collapse All";s:32:"ID_COLOSA_AND_CERTIFIED_PARTNERS";s:129:"Supplied free of charge with no support, certification, warranty, maintenance nor indemnity by Colosa and its Certified Partners.";s:10:"ID_COLUMNS";s:7:"columns";s:32:"ID_COMMAND_EXECUTED_SUCCESSFULLY";s:29:"Command executed successfully";s:31:"ID_COMMAND_EXECUTED_SUCCESSFULY";s:29:"command executed successfully";s:11:"ID_COMMENTS";s:8:"Comments";s:12:"ID_COMPLETED";s:9:"Completed";s:20:"ID_COMPLETED_BY_USER";s:17:"Completed By User";s:18:"ID_COMPLETED_CASES";s:15:"Completed Cases";s:17:"ID_COMPLETED_TASK";s:14:"Completed Task";s:19:"ID_COMPLETE_VARCHAR";s:31:"Complete the Varchar field size";s:12:"ID_CONDITION";s:9:"Condition";s:20:"ID_CONDITIONS_EDITOR";s:17:"Conditions editor";s:29:"ID_CONDITIONS_EDITOR_DYNAFORM";s:37:"Updated conditions editor in dynaform";s:16:"ID_CONFIGURATION";s:13:"Configuration";s:12:"ID_CONFIGURE";s:9:"Configure";s:19:"ID_CONFIG_DIRECTORY";s:16:"Config Directory";s:10:"ID_CONFIRM";s:7:"Confirm";s:25:"ID_CONFIRM_ADHOCUSER_CASE";s:31:"Are you sure you want to do it?";s:24:"ID_CONFIRM_ASSIGNED_GRID";s:59:"Do you want to delete the data in the row you just created?";s:22:"ID_CONFIRM_CANCEL_CASE";s:42:"Are you sure you want to cancel this case?";s:32:"ID_CONFIRM_DELETE_AUTHENTICATION";s:57:"Do you want to delete the selected authentication source?";s:26:"ID_CONFIRM_DELETE_CALENDAR";s:44:"Do you want to delete the selected calendar?";s:22:"ID_CONFIRM_DELETE_CASE";s:42:"Are you sure you want to delete this case?";s:32:"ID_CONFIRM_DELETE_CASE_SCHEDULER";s:45:"Do you want to delete current Case Scheduler?";s:26:"ID_CONFIRM_DELETE_CATEGORY";s:44:"Do you want to delete the selected category?";s:27:"ID_CONFIRM_DELETE_DASHBOARD";s:55:"Are you sure you want to delete the selected Dashboard?";s:33:"ID_CONFIRM_DELETE_DASHBOARD_OWNER";s:42:"Are you sure you want to delete this user?";s:34:"ID_CONFIRM_DELETE_DASHLET_INSTANCE";s:44:"Do you want to delete this Dashlet Instance?";s:28:"ID_CONFIRM_DELETE_DEPARTMENT";s:46:"Do you want to delete the selected department?";s:25:"ID_CONFIRM_DELETE_ELEMENT";s:30:"Approval of consolidated tasks";s:35:"ID_CONFIRM_DELETE_INPUT_AND_HISTORY";s:65:"This action will delete the current document and all its versions";s:27:"ID_CONFIRM_DELETE_INPUT_DOC";s:50:"Do you want to delete the selected Input Document?";s:24:"ID_CONFIRM_DELETE_PLUGIN";s:49:"Are you sure that you want to remove this plugin?";s:32:"ID_CONFIRM_DELETE_PLUGIN_WARNING";s:52:"Uninstalling the plugin can affect other workspaces.";s:26:"ID_CONFIRM_DELETE_PM_TABLE";s:42:"Do you want to delete the selected tables?";s:22:"ID_CONFIRM_DELETE_SKIN";s:40:"Do you want to delete the selected skin?";s:27:"ID_CONFIRM_DELETE_WEB_ENTRY";s:40:"Do you want to delete current web entry?";s:26:"ID_CONFIRM_DISCARD_CHANGES";s:28:"Do you want discard changes?";s:26:"ID_CONFIRM_IMPORT_DYNAFORM";s:125:"If the selected form is imported, you may lose the information in the current form. Are you sure you want to import the form?";s:19:"ID_CONFIRM_PASSWORD";s:16:"Confirm Password";s:26:"ID_CONFIRM_REACTIVATE_CASE";s:46:"Are you sure you want to reactivate this case?";s:23:"ID_CONFIRM_REMOVE_FIELD";s:40:"Do you want to remove the selected rows?";s:24:"ID_CONFIRM_REMOVE_FIELDS";s:35:"Do you want to remove these fields?";s:18:"ID_CONFIRM_ROUTING";s:15:"Confirm Routing";s:22:"ID_CONFIRM_TO_REASSIGN";s:77:"There are cases which were not reassigned to a user. Do you want to continue?";s:23:"ID_CONFIRM_UNPAUSE_CASE";s:43:"Are you sure you want to unpause this case?";s:13:"ID_CONNECTING";s:13:"Connecting...";s:32:"ID_CONNECTING_TO_DATABASE_FAILED";s:49:"Error Testing Connection: Opening database failed";s:21:"ID_CONNECTING_TO_HOST";s:18:"Connecting to host";s:28:"ID_CONNECTING_TO_HOST_FAILED";s:51:"Error Testing Connection: Connecting to host failed";s:19:"ID_CONNECTION_ERROR";s:21:"Connection Error: {0}";s:29:"ID_CONNECTION_ERROR_PRIVILEGE";s:112:"Connection Error: User "{0}" can\'t create databases and users.
Please, provide a user with SUPER privileges.";s:33:"ID_CONNECTION_ERROR_SECURITYADMIN";s:146:"Connection Error: User "{0}" can\'t create databases and Users
Please provide an user with sysadmin role or dbcreator and securityadmin roles.";s:15:"ID_CONNECT_HOST";s:25:"Trying to connect to host";s:20:"ID_CONNECT_TO_SERVER";s:47:"Connected to server {0} :{1} using user: \'{2}\'";s:25:"ID_CONSOLIDATED_CASE_LIST";s:22:"Consolidated Case List";s:33:"ID_CONSOLIDATED_DYNAFORM_REQUIRED";s:73:"The process has no type template Dynaform grid, this Dynaform is required";s:16:"ID_CONTACT_ADMIN";s:40:"Please contact your system administrator";s:11:"ID_CONTINUE";s:8:"Continue";s:23:"ID_CONTINUE_WITH_OPTION";s:20:"Continue with option";s:27:"ID_CONVERT_NATIVE_REP_TABLE";s:30:"Convert to native Report Table";s:24:"ID_CONVERT_SIMPLE_REPORT";s:24:"Convert to Simple Report";s:7:"ID_COPY";s:4:"Copy";s:12:"ID_COPYRIGHT";s:58:"Copyright © 2003-2011 Colosa, Inc. All rights reserved.";s:16:"ID_COPYRIGHT_COL";s:32:"Colosa, Inc. All rights reserved";s:17:"ID_COPYRIGHT_FROM";s:22:"Copyright © 2003-";s:10:"ID_COPY_OF";s:7:"Copy of";s:8:"ID_COSTS";s:5:"Costs";s:15:"ID_COST_BY_HOUR";s:12:"Cost by hour";s:10:"ID_COUNTRY";s:7:"Country";s:13:"ID_COUNT_DAYS";s:13:"Count Days by";s:9:"ID_CREATE";s:6:"Create";s:10:"ID_CREATED";s:7:"Created";s:13:"ID_CREATED_BY";s:10:"Created By";s:22:"ID_CREATED_CASE_STATUS";s:19:"Created Case Status";s:21:"ID_CREATE_AUTH_SOURCE";s:28:"Create Authentication Source";s:18:"ID_CREATE_CALENDAR";s:15:"Create Calendar";s:24:"ID_CREATE_CASE_SCHEDULER";s:25:"Create new Case Scheduler";s:18:"ID_CREATE_CATEGORY";s:15:"Create Category";s:26:"ID_CREATE_DASHLET_INSTANCE";s:23:"Create Dashlet Instance";s:29:"ID_CREATE_DATABASE_CONNECTION";s:30:"Create New Database connection";s:14:"ID_CREATE_DATE";s:11:"Create Date";s:21:"ID_CREATE_DEPARTAMENT";s:17:"Create Department";s:18:"ID_CREATE_DYNAFORM";s:15:"Create Dynaform";s:22:"ID_CREATE_EMAIL_SERVER";s:19:"Create Email Server";s:24:"ID_CREATE_EMAIL_SETTINGS";s:21:"Create Email Settings";s:16:"ID_CREATE_FOLDER";s:17:"Create New Folder";s:28:"ID_CREATE_FOLDER_NAME_FOLDER";s:4:"Name";s:28:"ID_CREATE_FOLDER_PATH_FOLDER";s:4:"Path";s:15:"ID_CREATE_GROUP";s:16:"Create New Group";s:21:"ID_CREATE_GROUP_TITLE";s:16:"Create New Group";s:24:"ID_CREATE_INPUT_DOCUMENT";s:25:"Create New Input Document";s:26:"ID_CREATE_LOG_INSTALLATION";s:37:"Could not create the installation log";s:13:"ID_CREATE_NEW";s:10:"Create new";s:21:"ID_CREATE_NEW_ACCOUNT";s:20:"Create a New Account";s:25:"ID_CREATE_NEW_PROCESS_UID";s:49:"Do you wish to create a new UID for this process?";s:25:"ID_CREATE_OUTPUT_DOCUMENT";s:26:"Create new Output Document";s:17:"ID_CREATE_PMTABLE";s:15:"Create PM Table";s:18:"ID_CREATE_PM_TABLE";s:22:"Create from a PM Table";s:17:"ID_CREATE_PROCESS";s:14:"Create Process";s:14:"ID_CREATE_ROLE";s:15:"Create New Role";s:20:"ID_CREATE_ROLE_TITLE";s:15:"Create New Role";s:14:"ID_CREATE_SKIN";s:11:"Create Skin";s:25:"ID_CREATE_SUB_DEPARTAMENT";s:21:"Create Sub Department";s:17:"ID_CREATE_TRIGGER";s:18:"Create New trigger";s:14:"ID_CREATE_USER";s:11:"Create User";s:11:"ID_CREATING";s:14:"Creating : {0}";s:17:"ID_CREATING_TABLE";s:30:"Creating table, please wait...";s:21:"ID_CREATING_WORKSPACE";s:22:"Creating workspace {0}";s:19:"ID_CREDENTIAL_ERROR";s:17:"Credentials Error";s:15:"ID_CRON_ACTIONS";s:4:"Cron";s:19:"ID_CRON_ACTIONS_LOG";s:16:"Cron Actions Log";s:36:"ID_CRON_GRID_PAGE_DISPLAYING_MESSAGE";s:35:"Displaying actions {0} - {1} of {2}";s:12:"ID_CRON_INFO";s:16:"Cron Information";s:17:"ID_CRON_LOG_CLEAR";s:35:"Are you sure to clear the cron log?";s:14:"ID_CRON_STATUS";s:11:"Cron status";s:21:"ID_CRON_STATUS_ACTIVE";s:6:"Active";s:23:"ID_CRON_STATUS_INACTIVE";s:8:"Inactive";s:11:"ID_CSV_FILE";s:8:"CSV File";s:22:"ID_CURLFUN_ISUNDEFINED";s:83:"The process was not downloaded, because the curl extension for php is not installed";s:33:"ID_CURRENT_ASSING_TYPE_WITH_CASES";s:52:"The current activity has cases and cannot be deleted";s:32:"ID_CURRENT_BROWSER_NOT_SUPPORTED";s:173:"Your browser is not supported. See the list of supported browsers. List of supported browsers is a link to the wiki page: http://wiki.processmaker.com/3.0/Supported_Browsers";s:18:"ID_CURRENT_LICENSE";s:15:"Current license";s:15:"ID_CURRENT_USER";s:12:"Current User";s:16:"ID_CURRENT_USERS";s:13:"Current Users";s:17:"ID_CURRENT_VALUES";s:14:"Current Values";s:18:"ID_CURRENT_VERSION";s:15:"Current version";s:20:"ID_CURRENT_WORKSPACE";s:17:"Current Workspace";s:21:"ID_CUSTOM_CASES_LISTS";s:16:"Custom Case List";s:27:"ID_CUSTOM_SCHEDULE_SETTINGS";s:24:"Custom schedule settings";s:18:"ID_CUSTOM_SETTINGS";s:15:"Custom settings";s:17:"ID_CUSTOM_TRIGGER";s:14:"Custom Trigger";s:29:"ID_CUSTOM_TRIGGER_DESCRIPTION";s:14:"Custom Trigger";s:20:"ID_CYCLIC_ASSIGNMENT";s:17:"Cyclic Assignment";s:12:"ID_DASHBOARD";s:10:"Dashboards";s:24:"ID_DASHBOARD_BTNCOLUMNS1";s:10:"One Column";s:24:"ID_DASHBOARD_BTNCOLUMNS2";s:11:"Two columns";s:24:"ID_DASHBOARD_BTNCOLUMNS3";s:13:"Three columns";s:34:"ID_DASHBOARD_INDICATOR_INFORMATION";s:21:"Indicator Information";s:33:"ID_DASHBOARD_OWNER_SUCCESS_DELETE";s:43:"Owner Dashboard has been deleted correctly.";s:27:"ID_DASHBOARD_SUCCESS_DELETE";s:37:"Dashboard has been deleted correctly.";s:18:"ID_DASHBOARD_TITLE";s:15:"Dashboard Title";s:10:"ID_DASHLET";s:7:"Dashlet";s:21:"ID_DASHLETS_INSTANCES";s:17:"Dashlet Instances";s:19:"ID_DASHLET_INSTANCE";s:16:"Dashlet Instance";s:33:"ID_DASHLET_INSTANCE_CONFIGURATION";s:30:"Dashlet Instance Configuration";s:25:"ID_DASHLET_SUCCESS_DELETE";s:37:"Dashlet instance deleted sucessfully.";s:23:"ID_DASHLET_TITLE_EXISTS";s:29:"Dashlet title already exists.";s:21:"ID_DASH_CLICK_TO_VIEW";s:117:"You can click on one of the dashboards to view the data or click on the favorite icon to make it your main dashboard.";s:15:"ID_DASH_COMPARE";s:7:"Compare";s:26:"ID_DASH_COMPARE_END_PERIOD";s:4:"with";s:27:"ID_DASH_COMPARE_INIT_PERIOD";s:18:"Compare this month";s:21:"ID_DASH_COMPARE_MONTH";s:23:"Compare this month with";s:25:"ID_DASH_HELP_INBOX_STATUS";s:100:"Percentage of cases that are in Overdue (red), At Risk (yellow), On Time (green) in the user Inbox.";s:24:"ID_DASH_HELP_IND_COMPARE";s:75:"Indicator\'s absolute and porcentual variation compared with the last month.";s:21:"ID_DASH_HELP_IND_COST";s:87:"Amount of money savings or costs generated by the process or task in the current month.";s:27:"ID_DASH_HELP_IND_EFFICIENCY";s:39:"Indicator\'s value in the current month.";s:26:"ID_DASH_HELP_IND_TASK_COST";s:85:"Amount of money savings or costs generated by the group or user in the current month.";s:32:"ID_DASH_HELP_IND_TASK_EFFICIENCY";s:46:"Group or user efficiency in the current month.";s:22:"ID_DASH_HELP_IND_VALUE";s:39:"Indicator\'s value in the current month.";s:28:"ID_DASH_HELP_SYMBOL_SELECTOR";s:53:"Indicator\'s trend in comparision with the last month.";s:7:"ID_DATA";s:4:"Data";s:11:"ID_DATABASE";s:9:"Data Base";s:25:"ID_DATABASE_CONFIGURATION";s:22:"Database Configuration";s:18:"ID_DATABASE_ENGINE";s:15:"Database Engine";s:28:"ID_DATABASE_EXISTS_OVERWRITE";s:95:"Database already exists, check "Delete Databases if exists" to overwrite the exiting databases.";s:16:"ID_DATABASE_NAME";s:13:"Database Name";s:19:"ID_DATABASE_OPTIONS";s:16:"Database Options";s:18:"ID_DATABASE_SERVER";s:16:"Data Base Server";s:15:"ID_DATA_CORRECT";s:29:"The configuration is correct.";s:37:"ID_DATA_LIST_NOT_AVAILABLE_FOR_OLDVER";s:43:"Data List is not available for old version.";s:7:"ID_DATE";s:4:"DATE";s:14:"ID_DATE_FORMAT";s:11:"Date Format";s:16:"ID_DATE_FORMAT_1";s:11:"Y-m-d H:i:s";s:17:"ID_DATE_FORMAT_10";s:8:"D d M, Y";s:17:"ID_DATE_FORMAT_11";s:6:"D M, Y";s:17:"ID_DATE_FORMAT_12";s:6:"d M, Y";s:17:"ID_DATE_FORMAT_13";s:6:"d m, Y";s:17:"ID_DATE_FORMAT_14";s:5:"d.m.Y";s:17:"ID_DATE_FORMAT_15";s:6:"M d, Y";s:17:"ID_DATE_FORMAT_16";s:6:"m D, Y";s:17:"ID_DATE_FORMAT_17";s:52:"dd de M de Y (Date format only for Spanish language)";s:16:"ID_DATE_FORMAT_2";s:5:"d/m/Y";s:16:"ID_DATE_FORMAT_3";s:5:"m/d/Y";s:16:"ID_DATE_FORMAT_4";s:5:"Y/d/m";s:16:"ID_DATE_FORMAT_5";s:5:"Y/m/d";s:16:"ID_DATE_FORMAT_6";s:13:"F j, Y, g:i a";s:16:"ID_DATE_FORMAT_7";s:5:"m.d.y";s:16:"ID_DATE_FORMAT_8";s:7:"j, n, Y";s:16:"ID_DATE_FORMAT_9";s:15:"D M j G:i:s T Y";s:13:"ID_DATE_LABEL";s:4:"Date";s:17:"ID_DATE_NOT_VALID";s:57:"The value \'{0}\' is not a valid date for the format \'{1}\'.";s:6:"ID_DAY";s:3:"Day";s:7:"ID_DAYS";s:4:"Days";s:11:"ID_DAY_DAYS";s:6:"Day(s)";s:14:"ID_DBCNN_TITLE";s:29:"Checking server configuration";s:12:"ID_DBC_CHECK";s:26:"Checking server parameters";s:21:"ID_DBC_DBNAME_INVALID";s:64:"The database connection with dbs_database_name: \'{0}\' is invalid";s:21:"ID_DBC_ENCODE_INVALID";s:57:"The database connection with dbs_encode: \'{0}\' is invalid";s:16:"ID_DBC_NOT_EXIST";s:55:"The database connection with {0}: \'{1}\' does not exist.";s:19:"ID_DBC_PORT_INVALID";s:55:"The database connection with dbs_port: \'{0}\' is invalid";s:21:"ID_DBC_SERVER_INVALID";s:58:"The database connection with dbs_server: \'{0}\', is invalid";s:19:"ID_DBC_TYPE_INVALID";s:55:"The database connection with dbs_type: \'{0}\' is invalid";s:22:"ID_DBS_CONNECTION_EDIT";s:30:"Connection Edited Successfully";s:22:"ID_DBS_CONNECTION_SAVE";s:29:"Connection Saved Successfully";s:22:"ID_DBS_CONNECTION_TEST";s:30:"Connection Tested Successfully";s:11:"ID_DBS_EDIT";s:32:"Edit the current Database Source";s:11:"ID_DBS_LIST";s:20:"Database Source List";s:13:"ID_DBS_SOURCE";s:23:"Add New Database Source";s:16:"ID_DB_CONNECTION";s:13:"DB Connection";s:17:"ID_DB_CONNECTIONS";s:20:"Database Connections";s:25:"ID_DB_CONNECTION_NO_EXIST";s:28:"DB Connection doesn\'t exist!";s:13:"ID_DEACTIVATE";s:10:"Deactivate";s:10:"ID_DEATACH";s:6:"Detach";s:8:"ID_DEBUG";s:8:"Debugger";s:16:"ID_DEBUG_MESSAGE";s:14:"Debug Messages";s:13:"ID_DEBUG_MODE";s:10:"Debug Mode";s:20:"ID_DEBUG_PANEL_TITLE";s:21:"ProcessMaker Debugger";s:19:"ID_DEFAULT_CALENDAR";s:16:"Default Calendar";s:28:"ID_DEFAULT_CASES_MENU_OPTION";s:25:"Default Cases Menu option";s:26:"ID_DEFAULT_EXPIRATION_YEAR";s:32:"Default User Expiry Date (Years)";s:35:"ID_DEFAULT_EXPIRATION_YEAR_VALIDATE";s:58:"Default Expiration Year value has to be a positive integer";s:19:"ID_DEFAULT_LANGUAGE";s:16:"Default Language";s:27:"ID_DEFAULT_MAIN_MENU_OPTION";s:24:"Default Main Menu Option";s:17:"ID_DEFAULT_SET_TO";s:55:"(Default set to (&(!(objectClass=organizationalUnit))))";s:15:"ID_DEFAULT_SKIN";s:12:"Default Skin";s:13:"ID_DEFINITION";s:10:"Definition";s:14:"ID_DELAY_FIELD";s:11:"Delay Field";s:21:"ID_DELEGATE_DATE_FROM";s:9:"Date from";s:19:"ID_DELEGATE_DATE_TO";s:2:"to";s:16:"ID_DELEGATE_USER";s:14:"Delegated User";s:18:"ID_DELEGATION_DATE";s:15:"Delegation Date";s:9:"ID_DELETE";s:6:"Delete";s:10:"ID_DELETED";s:7:"Deleted";s:23:"ID_DELETED_SUCCESSFULLY";s:20:"Deleted Successfully";s:16:"ID_DELETE_ACTION";s:11:"Delete case";s:20:"ID_DELETE_ALL_FIELDS";s:33:"Do you want to delete all fields?";s:26:"ID_DELETE_ALL_REPORT_TABLE";s:40:"Do you want to delete all report tables?";s:21:"ID_DELETE_AUTH_SOURCE";s:28:"Delete Authentication Source";s:18:"ID_DELETE_CALENDAR";s:15:"Delete Calendar";s:15:"ID_DELETE_CASES";s:12:"Delete Cases";s:23:"ID_DELETE_CASE_NO_OWNER";s:61:"You can\'t delete the case because you didn\'t create the case.";s:24:"ID_DELETE_CASE_NO_STATUS";s:85:"You can\'t delete the case because it\'s not in Draft status and was already derivated.";s:24:"ID_DELETE_CASE_SCHEDULER";s:21:"Delete Case Scheduler";s:18:"ID_DELETE_CATEGORY";s:15:"Delete Category";s:20:"ID_DELETE_CONNECTION";s:22:"Delete the connection?";s:26:"ID_DELETE_DASHLET_INSTANCE";s:23:"Delete Dashlet Instance";s:19:"ID_DELETE_DATABASES";s:28:"Delete database if it exists";s:29:"ID_DELETE_DATABASE_CONNECTION";s:26:"Delete Database Connection";s:22:"ID_DELETE_DATA_PMTABLE";s:25:"Delete Data from PM Table";s:21:"ID_DELETE_DEPARTAMENT";s:17:"Delete Department";s:18:"ID_DELETE_DOCUMENT";s:44:"Do you want to delete the selected document?";s:18:"ID_DELETE_DYNAFORM";s:15:"Delete Dynaform";s:22:"ID_DELETE_EMAIL_SERVER";s:19:"Delete Email Server";s:16:"ID_DELETE_FIELDS";s:42:"Do you want to delete the selected fields?";s:20:"ID_DELETE_FIELD_SURE";s:43:"Are you sure you want to delete this field?";s:15:"ID_DELETE_GROUP";s:12:"Remove Group";s:20:"ID_DELETE_GROUP_TASK";s:17:"Delete Group Task";s:24:"ID_DELETE_INDICATOR_SURE";s:47:"Are you sure you want to delete this Indicator?";s:31:"ID_DELETE_INPUTDOCUMENT_CONFIRM";s:81:"The item will be deleted the day of the work hour’s list. Do you want continue?";s:24:"ID_DELETE_INPUT_DOCUMENT";s:21:"Delete Input Document";s:17:"ID_DELETE_LAGUAGE";s:15:"Delete Language";s:18:"ID_DELETE_LANGUAGE";s:6:"Remove";s:26:"ID_DELETE_LANGUAGE_CONFIRM";s:51:"Are you sure you want to delete the language "{0}"?";s:26:"ID_DELETE_LANGUAGE_WARNING";s:57:"To delete a language, first select an item from the list.";s:14:"ID_DELETE_LINE";s:11:"Delete Line";s:15:"ID_DELETE_LINES";s:16:"Delete All Lines";s:14:"ID_DELETE_LOGO";s:11:"Delete Logo";s:17:"ID_DELETE_MANAGER";s:31:"You cannot unassign the manager";s:25:"ID_DELETE_OUTPUT_DOCUMENT";s:22:"Delete Output Document";s:20:"ID_DELETE_PERMISSION";s:45:"Do you want to deleted the permission of {0}?";s:21:"ID_DELETE_PERMISSIONS";s:18:"Delete Permissions";s:28:"ID_DELETE_PERMISSION_TO_ROLE";s:25:"Delete Permission To Role";s:17:"ID_DELETE_PMTABLE";s:15:"Delete PM Table";s:17:"ID_DELETE_PROCESS";s:14:"Delete Process";s:23:"ID_DELETE_PROCESS_CASES";s:74:"Are you sure you want to delete all the cases of the selected process(es)?";s:22:"ID_DELETE_REPORT_TABLE";s:49:"Do you want to delete the selected report tables?";s:14:"ID_DELETE_ROLE";s:11:"Delete Role";s:16:"ID_DELETE_ROUTES";s:13:"Delete Routes";s:24:"ID_DELETE_SELECTED_ITEMS";s:43:"Do you want to deleted selected({0}) items?";s:23:"ID_DELETE_SELECTED_LOGO";s:40:"Do you want to delete the selected logo?";s:14:"ID_DELETE_SKIN";s:11:"Delete Skin";s:21:"ID_DELETE_SUB_PROCESS";s:18:"Delete Sub-Process";s:20:"ID_DELETE_SUPERVISOR";s:34:"You cannot unassign the supervisor";s:26:"ID_DELETE_TABLE_COLLECTION";s:38:"Do you want to delete this collection?";s:14:"ID_DELETE_TASK";s:11:"Delete Task";s:14:"ID_DELETE_TEXT";s:11:"Delete Text";s:22:"ID_DELETE_TRANSLATIONS";s:33:"Delete the selected translations?";s:17:"ID_DELETE_TRIGGER";s:14:"Delete Trigger";s:14:"ID_DELETE_USER";s:11:"Delete User";s:19:"ID_DELETE_USER_TASK";s:16:"Delete User Task";s:22:"ID_DELETE_USER_TO_ROLE";s:20:"Delete Users To Role";s:16:"ID_DELETING_CASE";s:16:"Deleting case...";s:20:"ID_DELETING_ELEMENTS";s:33:"Deleting elements, please wait...";s:24:"ID_DELETION_SUCCESSFULLY";s:21:"DELETION SUCCESSFULLY";s:15:"ID_DELIMITED_BY";s:12:"Delimited by";s:12:"ID_DEL_INDEX";s:9:"Del Index";s:20:"ID_DEL_THREAD_STATUS";s:13:"Thread Status";s:20:"ID_DEPARTAMENT_USERS";s:11:"Departments";s:13:"ID_DEPARTMENT";s:10:"Department";s:14:"ID_DEPARTMENTS";s:11:"Departments";s:26:"ID_DEPARTMENTS_SYNCHRONIZE";s:23:"Synchronize Departments";s:20:"ID_DEPARTMENTS_USERS";s:11:"Departments";s:37:"ID_DEPARTMENT_CHECK_PARENT_DEPARTMENT";s:78:"It\'s necessary to check the parent-department: {0} for the sub-department: {1}";s:34:"ID_DEPARTMENT_CREATED_SUCCESSFULLY";s:81:"{DEPARTMENT_NAME}, {PARENT_UID} Department {DEPARTMENT_NAME} created successfully";s:26:"ID_DEPARTMENT_ERROR_CREATE";s:25:"Error creating department";s:20:"ID_DEPARTMENT_EXISTS";s:31:"Department name already exists.";s:27:"ID_DEPARTMENT_MANAGER_EXIST";s:42:"The user: {0} is other department manager.";s:18:"ID_DEPARTMENT_NAME";s:15:"Department Name";s:27:"ID_DEPARTMENT_NAME_REQUIRED";s:27:"Department name is required";s:23:"ID_DEPARTMENT_NOT_EXIST";s:46:"The department with {0}: \'{1}\' does not exist.";s:35:"ID_DEPARTMENT_NOT_REGISTERED_SYSTEM";s:51:"Department {DEP_ID} is not registered in the system";s:28:"ID_DEPARTMENT_SUCCESS_DELETE";s:38:"Department has been deleted correctly.";s:25:"ID_DEPARTMENT_SUCCESS_NEW";s:38:"Department has been created correctly.";s:28:"ID_DEPARTMENT_SUCCESS_UPDATE";s:38:"Department has been updated correctly.";s:34:"ID_DEPARTMENT_TITLE_ALREADY_EXISTS";s:52:"The department title with {0}: "{1}" already exists.";s:12:"ID_DERIVATED";s:6:"Routed";s:16:"ID_DERIVATION_DB";s:10:"Derivation";s:21:"ID_DERIVATION_HISTORY";s:15:"Routing History";s:20:"ID_DERIVATION_RESULT";s:17:"Derivation Result";s:18:"ID_DERIVATION_RULE";s:15:"Derivation Rule";s:10:"ID_DERIVED";s:4:"Sent";s:14:"ID_DESCRIPTION";s:11:"Description";s:11:"ID_DESIGNER";s:8:"Designer";s:40:"ID_DESIGNER_PROCESS_DESIGNER_IS_DISABLED";s:48:"The designer of this type of process is disabled";s:14:"ID_DESTINATION";s:11:"Destination";s:19:"ID_DESTINATION_PATH";s:16:"Destination Path";s:9:"ID_DETAIL";s:6:"Detail";s:10:"ID_DETAILS";s:7:"Details";s:22:"ID_DETAILS_WEBSERVICES";s:7:"Details";s:14:"ID_DETAIL_CASE";s:11:"Detail Case";s:12:"ID_DE_ASSIGN";s:6:"Remove";s:30:"ID_DIAGRAM_VALIDATED_CORRECTLY";s:37:"Diagram has been validated correctly.";s:12:"ID_DIRECTION";s:9:"Direction";s:27:"ID_DIRECTORIES_NOT_WRITABLE";s:56:"Some directories and/or files inside it are not writable";s:12:"ID_DIRECTORY";s:9:"Directory";s:28:"ID_DIRECTORY_FILE_PERMISSION";s:16:"File Permissions";s:38:"ID_DIRECTORY_NAME_EXISTS_ENTER_ANOTHER";s:52:"The name "{0}" already exists, please enter another.";s:10:"ID_DISABLE";s:7:"Disable";s:11:"ID_DISABLED";s:8:"Disabled";s:30:"ID_DISABLED_CODE_CODE_AND_LINE";s:15:"{0} (Lines {1})";s:23:"ID_DISABLED_CODE_PLUGIN";s:72:"The plugin has the following unwanted code (this code should be removed)";s:24:"ID_DISABLED_CODE_PROCESS";s:84:"The process "{0}" has the following unwanted code (this code should be removed): {1}";s:24:"ID_DISABLED_CODE_TRIGGER";s:78:"The trigger has the following unwanted code (this code should be removed): {0}";s:35:"ID_DISABLED_CODE_TRIGGER_TO_EXECUTE";s:79:"The following triggers has unwanted code (these triggers are not executed): {0}";s:17:"ID_DISABLE_ACTION";s:14:"Disable Action";s:20:"ID_DISABLE_AUDIT_LOG";s:17:"Disable Audit Log";s:16:"ID_DISABLE_DEBUG";s:18:"Disable Debug Mode";s:26:"ID_DISABLE_FORGOT_PASSWORD";s:28:"Forgot password was disabled";s:21:"ID_DISABLE_HEART_BEAT";s:18:"Disable Heart Beat";s:17:"ID_DISABLE_PLUGIN";s:14:"Disable Plugin";s:21:"ID_DISABLE_PLUGIN_TIP";s:27:"Disable the selected plugin";s:15:"ID_DISABLE_USER";s:12:"Disable User";s:20:"ID_DISABLE_WORKSPACE";s:17:"Disable Workspace";s:17:"ID_DISB_WORKSPACE";s:21:"This site is disabled";s:18:"ID_DISCARD_CHANGES";s:15:"Discard Changes";s:23:"ID_DISPATCH_PARAMS_BODY";s:40:"Invalid Request, multipart without body.";s:24:"ID_DISPATCH_PARAMS_CALLS";s:46:"Invalid Request, multipart body without calls.";s:27:"ID_DISPLAYING_DB_CONNECTION";s:41:"Displaying DB Connection {0} - {1} of {2}";s:16:"ID_DISPLAY_EMPTY";s:16:"Displaying Empty";s:16:"ID_DISPLAY_ITEMS";s:30:"Display Items {0} - {1} of {2}";s:13:"ID_DISPLAY_OF";s:2:"of";s:20:"ID_DISPLAY_PROCESSES";s:37:"Displaying Processes {0} - {1} of {2}";s:16:"ID_DISPLAY_TOTAL";s:9:"Total {2}";s:21:"ID_DISTINGUISHED_NAME";s:18:"Distinguished Name";s:10:"ID_DOCLICK";s:22:"Double click to insert";s:16:"ID_DOCUMENT_TYPE";s:7:"PM Type";s:20:"ID_DOES NOT_DYNAFORM";s:69:"This id for dyn_uid: {0} does not correspond to a registered Dynaform";s:26:"ID_DOES NOT_INPUT_DOCUMENT";s:79:"This id for inp_doc_uid: {0} does not correspond to a registered Input Document";s:22:"ID_DOES_NOT_CORRESPOND";s:52:"This id: {0} does not correspond to a registered {1}";s:17:"ID_DOES_NOT_EXIST";s:14:"does not exist";s:38:"ID_DOES_NOT_EXIST_AVAILABLE_CONNECTION";s:38:"Does not exist an available connection";s:7:"ID_DONE";s:4:"Done";s:23:"ID_DONT_MODIFY_PK_VALUE";s:57:"You can not modify the primary key value for "{0}" field.";s:7:"ID_DOWN";s:4:"Down";s:11:"ID_DOWNLOAD";s:8:"Download";s:19:"ID_DOWNLOADING_FILE";s:16:"Downloading file";s:22:"ID_DOWNLOADING_UPGRADE";s:20:"Downloading upgrade:";s:20:"ID_DOWNLOAD_MANUALLY";s:33:"You can download it manually here";s:15:"ID_DOWN_TRIGGER";s:12:"Down Trigger";s:8:"ID_DRAFT";s:5:"Draft";s:20:"ID_DRIVE_HELP_ENABLE";s:128:"When this option is enabled, all input, output and attached documents generated in your processes can be stored in Google Drive.";s:23:"ID_DROP_DATABASE_EXISTS";s:23:"Drop database if exists";s:11:"ID_DUE_DATE";s:8:"Due Date";s:32:"ID_DUPLICATE_CASE_SCHEDULER_NAME";s:30:"Duplicate Case Scheduler name.";s:26:"ID_DUPLICATE_CATEGORY_NAME";s:24:"Duplicate category name.";s:30:"ID_DUPLICATE_ENTRY_PRIMARY_KEY";s:31:"Duplicate entry for primary key";s:19:"ID_DYANFORM_CREATED";s:38:"Dynaform has been created successfully";s:18:"ID_DYANFORM_REMOVE";s:51:"Dynaform has been removed successfully from Process";s:10:"ID_DYNADOC";s:27:"My Case Forms and Documents";s:11:"ID_DYNAFORM";s:8:"DynaForm";s:12:"ID_DYNAFORMS";s:9:"DynaForms";s:18:"ID_DYNAFORM_ASSIGN";s:52:"Dynaform has been successfully assigned to a Process";s:25:"ID_DYNAFORM_ASSIGN_FAILED";s:47:"Failed saving DynaForm assigned to the process.";s:16:"ID_DYNAFORM_COPY";s:20:"Copy/Import Dynaform";s:25:"ID_DYNAFORM_COPY_REQUIRED";s:44:"Select the dynaform you want to copy/import.";s:26:"ID_DYNAFORM_DOES_NOT_EXIST";s:42:"The DynaForm with {0}: {1} does not exist.";s:18:"ID_DYNAFORM_EDITOR";s:15:"DynaForm Editor";s:30:"ID_DYNAFORM_EDITOR_LOGIN_AGAIN";s:89:"You have lost your session and you have to login to continue. Please enter your password.";s:31:"ID_DYNAFORM_EDITOR_SAVE_CHANGES";s:28:"Do you want to save changes?";s:17:"ID_DYNAFORM_FIELD";s:14:"Dynaform Field";s:18:"ID_DYNAFORM_FIELDS";s:15:"Dynaform Fields";s:26:"ID_DYNAFORM_HASNOSUBMITBTN";s:94:"Warning: This DynaForm does not include a [Submit] or [Button] field to save any entered data.";s:19:"ID_DYNAFORM_HISTORY";s:10:"Change Log";s:23:"ID_DYNAFORM_INFORMATION";s:20:"Dynaform Information";s:39:"ID_DYNAFORM_IS_NOT_ASSIGNED_TO_ACTIVITY";s:53:"The DynaForm "{0}" is not assigned to activity "{1}".";s:23:"ID_DYNAFORM_IS_NOT_GRID";s:40:"The DynaForm with {0}: {1}, is not grid.";s:50:"ID_DYNAFORM_IT_IS_TRYING_CREATE_BY_SEVERAL_METHODS";s:88:"It is trying to create a DynaForm by "{0}", please send only one attribute for creation.";s:21:"ID_DYNAFORM_NOT_EXIST";s:44:"The dynaform with {0}: \'{1}\' does not exist.";s:19:"ID_DYNAFORM_REMOVED";s:38:"Dynaform has been removed successfully";s:24:"ID_DYNAFORM_SAVE_CHANGES";s:28:"Do you want to save changes?";s:32:"ID_DYNAFORM_TITLE_ALREADY_EXISTS";s:50:"The DynaForm title with {0}: "{1}" already exists.";s:26:"ID_DYNAFORM_TITLE_REQUIRED";s:23:"Dynaform Title Required";s:29:"ID_DYN_UID_PARAMETER_IS_EMPTY";s:31:"The DYN_UID parameter is empty.";s:12:"ID_EASTPANEL";s:9:"eastPanel";s:7:"ID_EDIT";s:4:"Edit";s:19:"ID_EDITING_DYNAFORM";s:20:"Editing the dynaform";s:14:"ID_EDIT_ACTION";s:11:"Edit Action";s:12:"ID_EDIT_BPMN";s:9:"Edit BPMN";s:16:"ID_EDIT_CATEGORY";s:21:"Edit Process Category";s:26:"ID_EDIT_CONDITIONS_OF_STEP";s:20:"Edit step conditions";s:11:"ID_EDIT_DBC";s:24:"Edit Database Connection";s:18:"ID_EDIT_DEPARTMENT";s:15:"Edit Department";s:16:"ID_EDIT_DYNAFORM";s:13:"Edit DynaForm";s:13:"ID_EDIT_EVENT";s:10:"Edit Event";s:13:"ID_EDIT_FIELD";s:10:"Edit Field";s:19:"ID_EDIT_GROUP_TITLE";s:10:"Edit Group";s:17:"ID_EDIT_INPUTDOCS";s:19:"Edit Input Document";s:16:"ID_EDIT_MEMBEROF";s:14:"Edit Member Of";s:15:"ID_EDIT_MEMBERS";s:12:"Edit Members";s:19:"ID_EDIT_PERMISSIONS";s:16:"Edit Permissions";s:15:"ID_EDIT_PROCESS";s:14:"Process Edited";s:20:"ID_EDIT_REPORT_TABLE";s:17:"Edit Report Table";s:18:"ID_EDIT_ROLE_TITLE";s:9:"Edit Role";s:16:"ID_EDIT_TRIGGERS";s:12:"Edit Trigger";s:13:"ID_EDIT_USERS";s:10:"Edit Users";s:23:"ID_EDIT_VIEW_USER_GROUP";s:16:"View user groups";s:17:"ID_EDIT_WEB_ENTRY";s:14:"Edit Web Entry";s:43:"ID_EEPLUGIN_IMPORT_PLUGIN_NOT_IS_ENTERPRISE";s:51:"The plugin "{0}" not is a Enterprise Edition Plugin";s:18:"ID_EFFICIENCY_COST";s:15:"Efficiency cost";s:19:"ID_EFFICIENCY_INDEX";s:16:"Efficiency Index";s:18:"ID_EFFICIENCY_USER";s:15:"User Efficiency";s:8:"ID_EMAIL";s:5:"Email";s:9:"ID_EMAILS";s:6:"Emails";s:32:"ID_EMAIL_DOES_NOT_MATCH_FOR_USER";s:33:"The email doesn\'t match for user:";s:30:"ID_EMAIL_ENGINE_IS_NOT_ENABLED";s:86:"The "Email Notifications" is not enabled, please contact to your System Administrator.";s:20:"ID_EMAIL_ENTER_VALID";s:35:"Please enter a valid email address.";s:34:"ID_EMAIL_EVENT_CONFIGURATION_EMAIL";s:104:"Email event: {0}, in process: {1}, cannot send any mail because its configuration needs to be completed.";s:40:"ID_EMAIL_EVENT_DEFINITION_DOES_NOT_EXIST";s:42:"The email event definition does not exist.";s:27:"ID_EMAIL_MORE_THAN_ONE_USER";s:80:"This email is assigned to more than one user. Please contact your administrator.";s:18:"ID_EMAIL_MORE_USER";s:80:"This email is assigned to more than one user. Please contact your administrator.";s:30:"ID_EMAIL_NOT_CORRESPONDS_TOKEN";s:55:"The email does not corresponds to the token gmail user.";s:18:"ID_EMAIL_RESENT_TO";s:23:"The email was resend to";s:28:"ID_EMAIL_SERVER_ACCOUNT_FROM";s:12:"From Account";s:30:"ID_EMAIL_SERVER_CONFIRM_DELETE";s:39:"Do you want to delete the Email Server?";s:23:"ID_EMAIL_SERVER_DEFAULT";s:7:"Default";s:27:"ID_EMAIL_SERVER_DELETE_DATA";s:14:"Delete data...";s:38:"ID_EMAIL_SERVER_DELETE_WARNING_MESSAGE";s:123:"Are you sure you want to delete this Email Server? the components that were using it will now use the default email server.";s:30:"ID_EMAIL_SERVER_DOES_NOT_EXIST";s:46:"The email server with {0}: {1} does not exist.";s:20:"ID_EMAIL_SERVER_EDIT";s:17:"Edit Email Server";s:31:"ID_EMAIL_SERVER_FROM_MAIL_EMPTY";s:147:"The email has not been sent because configuration email in the Email Server Settings (admin/settings/email) is empty. Please fill this information.";s:27:"ID_EMAIL_SERVER_INSERT_DATA";s:14:"Insert data...";s:26:"ID_EMAIL_SERVER_IS_DEFAULT";s:42:"The email server with {0}: {1} is default.";s:19:"ID_EMAIL_SERVER_NEW";s:16:"New Email Server";s:20:"ID_EMAIL_SERVER_PORT";s:4:"Port";s:30:"ID_EMAIL_SERVER_RESULT_TESTING";s:27:"Result Testing Email Server";s:23:"ID_EMAIL_SERVER_TESTING";s:20:"Testing Email Server";s:42:"ID_EMAIL_SERVER_TEST_CONNECTION_CHECK_PORT";s:18:"Checking port: {0}";s:53:"ID_EMAIL_SERVER_TEST_CONNECTION_ESTABLISHING_CON_HOST";s:36:"Establishing connection to host: {0}";s:37:"ID_EMAIL_SERVER_TEST_CONNECTION_LOGIN";s:32:"Login as: {0} On {1} SMTP Server";s:46:"ID_EMAIL_SERVER_TEST_CONNECTION_RESOLVING_NAME";s:24:"Resolving Host Name: {0}";s:45:"ID_EMAIL_SERVER_TEST_CONNECTION_SENDING_EMAIL";s:27:"Sending a test mail to: {0}";s:46:"ID_EMAIL_SERVER_TEST_CONNECTION_VERIFYING_MAIL";s:30:"Verifying Mail Transport Agent";s:25:"ID_EMAIL_SERVER_TEST_DATA";s:12:"Test data...";s:45:"ID_EMAIL_SERVER_THIS_CONFIGURATION_IS_DEFAULT";s:28:"Set as default configuration";s:21:"ID_EMAIL_SERVER_TITLE";s:13:"Email Servers";s:29:"ID_EMAIL_SERVER_TITLE_TESTING";s:20:"Testing Email Server";s:27:"ID_EMAIL_SERVER_UPDATE_DATA";s:14:"Update data...";s:11:"ID_EMPLOYEE";s:9:"Next User";s:22:"ID_EMPLYEE_EFFICIENCIE";s:25:"Employee Efficience Index";s:8:"ID_EMPTY";s:5:"empty";s:13:"ID_EMPTY_CASE";s:14:"Search Case...";s:17:"ID_EMPTY_LANGUAGE";s:17:"Select a Language";s:17:"ID_EMPTY_NODENAME";s:23:"The name field is empty";s:16:"ID_EMPTY_PMTABLE";s:20:"Select a PM Table...";s:18:"ID_EMPTY_PROCESSES";s:19:"Select a Process...";s:12:"ID_EMPTY_ROW";s:29:"You can\'t leave an empty row.";s:15:"ID_EMPTY_SEARCH";s:10:"Search ...";s:13:"ID_EMPTY_TYPE";s:13:"Select a Type";s:14:"ID_EMPTY_USERS";s:16:"Select a User...";s:9:"ID_ENABLE";s:6:"Enable";s:10:"ID_ENABLED";s:7:"Enabled";s:14:"ID_ENABLED_TLS";s:11:"Enabled TLS";s:16:"ID_ENABLE_ACTION";s:13:"Enable Action";s:19:"ID_ENABLE_AUDIT_LOG";s:16:"Enable Audit Log";s:28:"ID_ENABLE_AUTOMATIC_REGISTER";s:25:"Enable automatic register";s:15:"ID_ENABLE_DEBUG";s:17:"Enable Debug Mode";s:28:"ID_ENABLE_EMAIL_NOTIFICATION";s:26:"Enable Email Notifications";s:25:"ID_ENABLE_FORGOT_PASSWORD";s:27:"Forgot password was enabled";s:25:"ID_ENABLE_FOTGOT_PASSWORD";s:24:"Enable Password Recovery";s:20:"ID_ENABLE_HEART_BEAT";s:79:"Contribute to the ProcessMaker project enabling heart beat anonymous usage data";s:16:"ID_ENABLE_PLUGIN";s:13:"Enable Plugin";s:20:"ID_ENABLE_PLUGIN_TIP";s:26:"Enable the selected add-on";s:17:"ID_ENABLE_PMDRIVE";s:20:"Enable Google Drive.";s:17:"ID_ENABLE_PMGMAIL";s:15:"Enable PM Gmail";s:14:"ID_ENABLE_USER";s:11:"Enable User";s:20:"ID_ENABLE_VERSIONING";s:17:"Enable Versioning";s:26:"ID_ENABLE_VIRTUAL_KEYBOARD";s:44:"Enable Virtual Keyboard (Only uxmodern skin)";s:19:"ID_ENABLE_WORKSPACE";s:16:"Enable Workspace";s:9:"ID_ENCODE";s:6:"Encode";s:14:"ID_ENDING_TIME";s:11:"Ending time";s:11:"ID_END_DATE";s:8:"End Date";s:19:"ID_END_DATE_GREATER";s:42:"End date should be greater than Start date";s:15:"ID_END_DATE_MDY";s:18:"End Date ("m/d/Y")";s:21:"ID_END_DATE_NOT_VALID";s:62:"The end date provided is not valid, please enter a valid date.";s:12:"ID_END_HH_MM";s:10:"End(hh:mm)";s:20:"ID_END_MESSAGE_EVENT";s:33:"End Message Event (Message Event)";s:17:"ID_END_OF_PROCESS";s:14:"End of process";s:9:"ID_ENGINE";s:6:"Engine";s:22:"ID_ENTERPRISE_FEATURES";s:19:"Enterprise Features";s:23:"ID_ENTERPRISE_INSTALLED";s:47:"Enterprise Plugin has been correctly installed.";s:30:"ID_ENTERPRISE_PACK_CANT_UPLOAD";s:121:"The Enterprise plugin pack can\'t be uploaded from this administrator, upload it from: ADMIN -> Plugins -> Plugins Manager";s:21:"ID_ENTERPRISE_PLUGINS";s:18:"Enterprise Plugins";s:24:"ID_ENTER_SEARCH_CRITERIA";s:40:"Enter a search criteria and press search";s:20:"ID_ENTER_SEARCH_TERM";s:9:"Search...";s:18:"ID_ENTER_VALID_URL";s:74:"Enter a valid URL to redirect the browser after the web entry is completed";s:14:"ID_ENVIRONMENT";s:11:"Environment";s:23:"ID_ENVIRONMENT_SETTINGS";s:11:"Environment";s:29:"ID_ENVIRONMENT_SETTINGS_MSG_1";s:41:"You should select a format from the list.";s:8:"ID_ERROR";s:5:"ERROR";s:31:"ID_ERROR_CHANGE_SEQUENCE_NUMBER";s:85:"Unable to generate a numerical sequence. Another user is performing the same request.";s:30:"ID_ERROR_CHECK_FOR_UPDATE_DONE";s:80:"An error has occurred, press "OK" to check whether the system has been upgraded.";s:21:"ID_ERROR_CREATE_TABLE";s:21:"Error creating table:";s:26:"ID_ERROR_CREATING_NEW_CASE";s:25:"Error creating a new Case";s:18:"ID_ERROR_DISABLING";s:15:"Error disabling";s:14:"ID_ERROR_EMAIL";s:5:"Error";s:17:"ID_ERROR_ENABLING";s:14:"Error enabling";s:23:"ID_ERROR_FILE_NOT_EXIST";s:170:"The file \'{filename}\' does not exist. Possibly the system failed to generate the file or the file was not moved correctly if the process was migrated from another server.";s:25:"ID_ERROR_HOST_NAME_FAILED";s:52:"Error Testing Connection: Resolving Host Name Failed";s:20:"ID_ERROR_INSERT_LINE";s:31:"Error trying to insert the line";s:25:"ID_ERROR_INSTALLING_ADDON";s:43:"There was a problem installing this add-on.";s:18:"ID_ERROR_IN_SERVER";s:15:"Error in server";s:21:"ID_ERROR_IN_THE_QUERY";s:18:"Error in the query";s:25:"ID_ERROR_JS_NOT_AVAILABLE";s:177:"Your browser doesn\'t support JavaScript or it may be disabled. Please use a different browser or enable JavaScript. Dynaforms won\'t entirely work because JavaScript is required.";s:16:"ID_ERROR_MESSAGE";s:13:"Error Message";s:26:"ID_ERROR_OBJECT_NOT_EXISTS";s:29:"Error: Object does not exist.";s:19:"ID_ERROR_REGISTERED";s:18:"Errors registered:";s:27:"ID_ERROR_SEND_NOTIFICATIONS";s:71:"The following error has occurred when trying to send the notifications:";s:23:"ID_ERROR_STREAMING_FILE";s:99:"doesn\'t exist. It should be saved by a plugin to a different place. Please review the configuration";s:18:"ID_ERROR_TASK_SAVE";s:31:"Error in saving Task Properties";s:22:"ID_ERROR_TRYING_INSERT";s:24:"Error trying insert into";s:20:"ID_ERROR_UNISTALLING";s:18:"Error uninstalling";s:25:"ID_ERROR_UPGRADING_SYSTEM";s:23:"Error upgrading System.";s:27:"ID_ERROR_UPLOADING_FILENAME";s:166:"There was an error uploading the file. The file size is probably greater than the upload_max_filesize parameter in php.ini. Please check this parameter and try again.";s:29:"ID_ERROR_UPLOADING_IMAGE_TYPE";s:38:"Error uploading image, wrong file type";s:25:"ID_ERROR_UPLOADING_PLUGIN";s:26:"Error uploading the plugin";s:34:"ID_ERROR_UPLOADING_PLUGIN_FILENAME";s:166:"There was an error uploading the file. The file size is probably greater than the upload_max_filesize parameter in php.ini. Please check this parameter and try again.";s:42:"ID_ERROR_UPLOAD_FILE_CONTACT_ADMINISTRATOR";s:76:"An error occurred when uploading the file. Please contact the administrator.";s:28:"ID_ERROR_URL_PROCESS_INVALID";s:95:"Error the url {DOWNLOAD_URL} is invalid or the process in {LOCAL_PATH}{NEW_FILENAME} is invalid";s:6:"ID_ESC";s:30:"@@ Replace the value in quotes";s:8:"ID_ESCJS";s:77:"@@ It replaces the value in quotation marks to use it in JavaScript sentences";s:9:"ID_ESCSJS";s:85:"@@ It replaces the value in single quotation marks to use it in JavaScript sentences.";s:26:"ID_ESTIMATED_TASK_DURATION";s:23:"Estimated Task duration";s:31:"ID_ESTIMATED_TASK_DURATION_DAYS";s:31:"Estimated Task duration in Days";s:7:"ID_EURL";s:74:"@% It replaces the value for the assignment with a GET variable in the URL";s:7:"ID_EVAL";s:43:"@! It evaluates the value, then replaces it";s:20:"ID_EVALUATION_RESULT";s:27:"[Success] Evaluation result";s:9:"ID_EVENTS";s:6:"Events";s:17:"ID_EVENTS_CLASSIC";s:26:"Events (classic processes)";s:15:"ID_EVENT_ACTION";s:10:"Event Type";s:20:"ID_EVENT_ACTION_DATE";s:11:"Action Date";s:20:"ID_EVENT_ADD_CURRENT";s:21:"Add current task user";s:20:"ID_EVENT_ADD_DYNAVAR";s:11:"Add dynavar";s:18:"ID_EVENT_ADD_GROUP";s:10:"Add groups";s:18:"ID_EVENT_ADD_USERS";s:9:"Add users";s:20:"ID_EVENT_CONDITIONAL";s:17:"Event Conditional";s:16:"ID_EVENT_DELETED";s:13:"Event deleted";s:20:"ID_EVENT_DESCRIPTION";s:17:"Event Description";s:36:"ID_EVENT_EVENT_NOT_BELONG_TO_PROJECT";s:59:"The event {0}: "{1}" does not belong to project {2}: "{3}".";s:28:"ID_EVENT_LAST_EXECUTION_DATE";s:14:"Last Execution";s:13:"ID_EVENT_LIST";s:13:"Log of events";s:16:"ID_EVENT_MESSAGE";s:13:"Event Message";s:17:"ID_EVENT_MULTIPLE";s:14:"Event Multiple";s:18:"ID_EVENT_NOT_EXIST";s:41:"The event with {0}: \'{1}\' does not exist.";s:29:"ID_EVENT_NOT_IS_MESSAGE_EVENT";s:47:"The event with {0}: {1} not is "Message event".";s:27:"ID_EVENT_NOT_IS_START_EVENT";s:47:"The event with {0}: {1} is not a "Start Event".";s:27:"ID_EVENT_NOT_IS_TIMER_EVENT";s:47:"The event with {0}: "{1}" not is "Timer event".";s:24:"ID_EVENT_REMOVE_SELECTED";s:15:"Remove selected";s:14:"ID_EVENT_TIMER";s:11:"Event Timer";s:8:"ID_EVERY";s:15:"every ${0} ${1}";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:13:"ID_EVERY_HOUR";s:10:"Every hour";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:12:"ID_EXCEPTION";s:9:"Exception";s:25:"ID_EXCEPTION_LOG_INTERFAZ";s:95:"An internal error occurred #{0}. Please contact your system administrator for more information.";s:11:"ID_EXECUTED";s:8:"executed";s:18:"ID_EXECUTE_TRIGGER";s:15:"Execute Trigger";s:12:"ID_EXECUTION";s:9:"Execution";s:17:"ID_EXECUTION_DATE";s:14:"Execution Date";s:17:"ID_EXECUTION_HOUR";s:14:"Execution Hour";s:19:"ID_EXECUTION_STATUS";s:16:"Execution Status";s:17:"ID_EXECUTION_TIME";s:14:"Execution Time";s:22:"ID_EXECUTION_TIME_DAYS";s:22:"Execution time in days";s:26:"ID_EXECUTION_TIME_INTERVAL";s:23:"Execution time Interval";s:8:"ID_EXIST";s:5:"Exist";s:14:"ID_EXISTS_FILE";s:29:"The file: {0} already exists.";s:15:"ID_EXISTS_FILES";s:16:"The file exists.";s:17:"ID_EXIST_DYNAFORM";s:77:"Can not save, because there is a DynaForm with the same name in this process.";s:14:"ID_EXIT_EDITOR";s:11:"Exit Editor";s:13:"ID_EXPAND_ALL";s:10:"Expand All";s:18:"ID_EXPIRATION_DATE";s:15:"Expiration Date";s:10:"ID_EXPIRES";s:14:"Expires (days)";s:13:"ID_EXPIRES_IN";s:10:"Expires in";s:9:"ID_EXPORT";s:6:"Export";s:13:"ID_EXPORT_CSV";s:10:"CSV Export";s:18:"ID_EXPORT_DATA_CSV";s:25:"Export Data from CSV file";s:18:"ID_EXPORT_LANGUAGE";s:15:"Export Language";s:17:"ID_EXPORT_PROCESS";s:14:"Export Process";s:25:"ID_EXPORT_PROCESS_OBJECTS";s:22:"Export Process Objects";s:14:"ID_EXPORT_SKIN";s:11:"Export Skin";s:15:"ID_EXPORT_TABLE";s:12:"Export Table";s:20:"ID_EXTENDED_FEATURES";s:17:"Extended Features";s:16:"ID_EXTERNAL_FILE";s:8:"External";s:24:"ID_EXTERNAL_REGISTRATION";s:21:"External Registration";s:24:"ID_EXTERNAL_STEP_MISSING";s:114:"The plugin related to the step {plugin} was removed or disabled. Please contact your system administrator.";s:9:"ID_FAILED";s:6:"Failed";s:28:"ID_FAILED_DASHBOARD INSTANCE";s:36:"Dashboard Instance registered failed";s:24:"ID_FAILED_IMPORT_PLUGINS";s:80:"Failed to import the file {filename} . It is an invalid file or is not a plugin.";s:16:"ID_FAILED_RECORD";s:15:"Failed Records:";s:26:"ID_FAILED_SAVE_PERMISSIONS";s:41:"Failed saving Permission of Simple Report";s:20:"ID_FAILED_STORE_DATA";s:20:"Failed to store data";s:30:"ID_FAILED_VALIDATIONS_IN_CLASS";s:35:"Failed Validation in class {CLASS}.";s:26:"ID_FAILED_VALIDATION_CLASS";s:26:"Failed Validation in class";s:29:"ID_FAILED_VALIDATION_IN_CLASS";s:26:"Failed Validation in class";s:30:"ID_FAILED_VALIDATION_IN_CLASS1";s:35:"Failed Validation in class {CLASS}.";s:10:"ID_FAILURE";s:7:"Failure";s:8:"ID_FALSE";s:5:"FALSE";s:9:"ID_FIELDS";s:6:"Fields";s:24:"ID_FIELDS_CHANGED_NUMBER";s:14:"Fields changed";s:14:"ID_FIELDS_LIST";s:14:"Fields handler";s:30:"ID_FIELD_CANNOT_BE_PRIMARY_KEY";s:47:"The type of field \'TEXT\' can\'t be a primary key";s:24:"ID_FIELD_DYNAFORM_BUTTON";s:6:"button";s:26:"ID_FIELD_DYNAFORM_CHECKBOX";s:8:"checkbox";s:28:"ID_FIELD_DYNAFORM_CHECKGROUP";s:10:"checkgroup";s:26:"ID_FIELD_DYNAFORM_CURRENCY";s:8:"currency";s:26:"ID_FIELD_DYNAFORM_DROPDOWN";s:8:"dropdown";s:22:"ID_FIELD_DYNAFORM_FILE";s:4:"file";s:22:"ID_FIELD_DYNAFORM_GRID";s:4:"grid";s:24:"ID_FIELD_DYNAFORM_HIDDEN";s:6:"hidden";s:28:"ID_FIELD_DYNAFORM_JAVASCRIPT";s:10:"javascript";s:22:"ID_FIELD_DYNAFORM_LINK";s:4:"link";s:25:"ID_FIELD_DYNAFORM_LISTBOX";s:7:"listbox";s:26:"ID_FIELD_DYNAFORM_PASSWORD";s:8:"password";s:28:"ID_FIELD_DYNAFORM_PERCENTAGE";s:10:"percentage";s:28:"ID_FIELD_DYNAFORM_RADIOGROUP";s:10:"radiogroup";s:23:"ID_FIELD_DYNAFORM_RESET";s:5:"reset";s:24:"ID_FIELD_DYNAFORM_SUBMIT";s:6:"submit";s:26:"ID_FIELD_DYNAFORM_SUBTITLE";s:8:"subtitle";s:25:"ID_FIELD_DYNAFORM_SUGGEST";s:7:"suggest";s:37:"ID_FIELD_DYNAFORM_SUGGEST_INPUT_TITLE";s:99:"If the entered value does not exist, a new registry will be inserted when the ENTER key is pressed.";s:42:"ID_FIELD_DYNAFORM_SUGGEST_MESSAGE_TEMPORAL";s:31:"New value inserted in the table";s:22:"ID_FIELD_DYNAFORM_TEXT";s:4:"text";s:26:"ID_FIELD_DYNAFORM_TEXTAREA";s:8:"textarea";s:23:"ID_FIELD_DYNAFORM_TITLE";s:5:"title";s:23:"ID_FIELD_DYNAFORM_YESNO";s:5:"yesno";s:22:"ID_FIELD_FOREIGN_TABLE";s:25:"Field "table" is required";s:30:"ID_FIELD_HANDLER_ACTION_DELETE";s:36:"Are you sure you want to remove this";s:22:"ID_FIELD_HANDLER_HELP1";s:17:"About the feature";s:22:"ID_FIELD_HANDLER_HELP2";s:43:"Drag & Drop to move and reorder the fields.";s:22:"ID_FIELD_HANDLER_HELP3";s:103:"Hover the mouse pointer over the tool icons and the corresponding options (Edit, Delete) will be shown.";s:16:"ID_FIELD_INVALID";s:13:"Field Invalid";s:18:"ID_FIELD_KEY_TABLE";s:52:"Please select one or more fields to be primary keys.";s:14:"ID_FIELD_LABEL";s:11:"Field Label";s:13:"ID_FIELD_NAME";s:10:"Field Name";s:17:"ID_FIELD_NAME_FOR";s:14:"Field Name for";s:22:"ID_FIELD_NAME_REQUIRED";s:22:"Field name is required";s:34:"ID_FIELD_NOT_EMPTY_OR_SPECIAL_CHAR";s:45:"cannot be empty or contain special characters";s:18:"ID_FIELD_NOT_FOUND";s:15:"Field not found";s:17:"ID_FIELD_REQUIRED";s:26:"The field {0} is required.";s:18:"ID_FIELD_REQUIRED2";s:39:"There are {0} fields that are required.";s:17:"ID_FIELD_SIZE_FOR";s:14:"Field size for";s:22:"ID_FIELD_SIZE_REQUIRED";s:22:"Field size is required";s:7:"ID_FILE";s:4:"File";s:11:"ID_FILENAME";s:8:"Filename";s:21:"ID_FILENAME_GENERATED";s:18:"Filename generated";s:20:"ID_FILENAME_REQUIRED";s:25:"The filename is required.";s:32:"ID_FILES_INVALID_PLUGIN_FILENAME";s:101:"the uploaded files are invalid, expected \'application/octect-stream mime type file ({pluginFilename})";s:35:"ID_FILES_MANAGER_EDITOR_LOGIN_AGAIN";s:102:"You have lost your session and you have to login to continue. Please enter your username and password.";s:28:"ID_FILE_CONTAIN_CLASS_PLUGIN";s:54:"The file {filename} doesn\'t contain class: {className}";s:29:"ID_FILE_IMPORTED_SUCCESSFULLY";s:33:"File "{0}" imported successfully.";s:19:"ID_FILE_LOG_CREATED";s:10:"Created on";s:16:"ID_FILE_LOG_SIZE";s:9:"File size";s:12:"ID_FILE_NAME";s:9:"File Name";s:21:"ID_FILE_NOT_WRITEABLE";s:81:"File \'{0}\' is not writable. Please, check the file permissions before continuing.";s:18:"ID_FILE_NUM_RECORD";s:21:"PO File num. records:";s:25:"ID_FILE_PLUGIN_NOT_EXISTS";s:34:"File \'{pluginFile}\' does not exist";s:17:"ID_FILE_PROCESSED";s:34:"File: {0} processed in {1} seconds";s:15:"ID_FILE_TOO_BIG";s:30:"The file is too big to upload!";s:34:"ID_FILE_UPLOAD_INCORRECT_EXTENSION";s:76:"The file has an incorrect extension. Please check the file and upload again.";s:20:"ID_FILL_PRIMARY_KEYS";s:38:"Please fill all the primary key fields";s:9:"ID_FILTER";s:6:"Filter";s:12:"ID_FILTER_BY";s:9:"Filter By";s:27:"ID_FILTER_BY_DELEGATED_DATE";s:6:"Filter";s:22:"ID_FILTER_CURRENT_VIEW";s:19:"Filter current view";s:25:"ID_FILTER_TO_SEARCH_USERS";s:22:"Filter to search users";s:17:"ID_FIND_A_PROCESS";s:14:"Find a Process";s:9:"ID_FINISH";s:6:"Finish";s:11:"ID_FINISHED";s:8:"Finished";s:39:"ID_FINISHED_REFRESH_VIEW_SEE_SLOPE_WORK";s:88:"You are now finished. Please refresh your view to see if you have any more work pending.";s:12:"ID_FINISHING";s:12:"Finishing...";s:14:"ID_FINISH_DATE";s:11:"Finish Date";s:17:"ID_FINISH_EDITION";s:14:"Finish Edition";s:14:"ID_FINISH_USER";s:11:"Finish user";s:21:"ID_FINISH_WITH_OPTION";s:18:"Finish with option";s:8:"ID_FIRST";s:5:"First";s:12:"ID_FIRSTNAME";s:10:"First Name";s:15:"ID_FIRST_FIGURE";s:11:"First Graph";s:13:"ID_FIRST_NAME";s:10:"First Name";s:8:"ID_FLOAT";s:5:"FLOAT";s:10:"ID_FOLDERS";s:9:"Documents";s:18:"ID_FORGOT_PASSWORD";s:15:"Forgot Password";s:20:"ID_FORGOT_PASSWORD_Q";s:16:"Forgot Password?";s:9:"ID_FORMAT";s:6:"Format";s:18:"ID_FORMAT_24_HOURS";s:22:"Format 24 hrs. (HH:MM)";s:19:"ID_FORMS_HTML_CACHE";s:26:"Forms Html templates cache";s:23:"ID_FORMS_METADATA_CACHE";s:20:"Forms metadata cache";s:6:"ID_FRI";s:3:"Fri";s:7:"ID_FROM";s:4:"From";s:13:"ID_FROM_EMAIL";s:12:"Sender Email";s:12:"ID_FROM_NAME";s:11:"Sender Name";s:23:"ID_FTP_MONITOR_SETTINGS";s:20:"FTP Monitor Settings";s:12:"ID_FULL_NAME";s:9:"Full Name";s:19:"ID_FULL_TEXT_SEARCH";s:16:"Full Text Search";s:11:"ID_FUNCTION";s:64:"@function() It evaluates the value, then executes a PHP function";s:10:"ID_GENERAL";s:7:"General";s:26:"ID_GENERAL_PROCESS_NUMBERS";s:23:"General Process Numbers";s:11:"ID_GENERATE";s:8:"Generate";s:22:"ID_GENERATED_DOCUMENTS";s:19:"Generated Documents";s:24:"ID_GENERATE_BPMN_PROJECT";s:21:"Generate BPMN Project";s:16:"ID_GENERATE_INFO";s:19:"General Information";s:24:"ID_GENERATE_INFO_SUPPORT";s:143:"A file with information about your System will be generated. It will help the support team provide better support for any issue that may occur.";s:26:"ID_GENERATE_WEB_ENTRY_PAGE";s:23:"Generate Web Entry Page";s:20:"ID_GET_EXTERNAL_FILE";s:3:"Get";s:9:"ID_GLOBAL";s:6:"Global";s:21:"ID_GLOBAL_DATE_FORMAT";s:18:"Global Date Format";s:19:"ID_GLOBAL_DATE_MASK";s:16:"Global date mask";s:20:"ID_GMAIL_HELP_ENABLE";s:148:"When this option is enabled, users will be able to use the Gmail extension that allows interaction with ProcessMaker from the user\'s Gmail web page.";s:20:"ID_GMAIL_NEED_SERVER";s:58:"The ProcessMaker address must be passed, it can\'t be empty";s:12:"ID_GOAL_HELP";s:12:"(Goal value)";s:20:"ID_GOOGLEINTEGRATION";s:18:"Google Integration";s:27:"ID_GOOGLE_CERTIFICATE_ERROR";s:90:"Google\'s JSON account certificate does not exist. Please contact the system administrator.";s:18:"ID_GRANULAR_EXPORT";s:6:"Custom";s:16:"ID_GREEN_ENDS_IN";s:13:"Green Ends In";s:18:"ID_GREEN_STARTS_IN";s:15:"Green Starts In";s:7:"ID_GRID";s:4:"Grid";s:34:"ID_GRID_DOES_NOT_EXIST_IN_DYNAFORM";s:51:"The Grid with {0}: "{1}" does not exist in DynaForm";s:28:"ID_GRID_DOES_NOT_HAVE_FIELDS";s:53:"The Grid with {0}: "{1}" does not have fields defined";s:14:"ID_GRID_FIELDS";s:11:"Grid Fields";s:23:"ID_GRID_FIELDS_REQUIRED";s:25:"Grid Fields are required.";s:28:"ID_GRID_FIELD_DOES_NOT_EXIST";s:40:"The Field with {0}: "{1}" does not exist";s:16:"ID_GRID_NO_EXIST";s:19:"Grid doesn\'t exist!";s:37:"ID_GRID_PAGE_DISPLAYING_0WNER_MESSAGE";s:34:"Displaying Owners {0} - {1} of {2}";s:46:"ID_GRID_PAGE_DISPLAYING_AUTHENTICATION_MESSAGE";s:50:"Displaying authentication sources {0} - {1} of {2}";s:40:"ID_GRID_PAGE_DISPLAYING_CALENDAR_MESSAGE";s:37:"Displaying calendars {0} - {1} of {2}";s:40:"ID_GRID_PAGE_DISPLAYING_CATEGORY_MESSAGE";s:38:"Displaying categories {0} - {1} of {2}";s:41:"ID_GRID_PAGE_DISPLAYING_DASHBOARD_MESSAGE";s:38:"Displaying Dashboards {0} - {1} of {2}";s:39:"ID_GRID_PAGE_DISPLAYING_DASHLET_MESSAGE";s:46:"Displaying dashlets instances {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_EMAIL_MESSAGE";s:34:"Displaying emails {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_EVENT_MESSAGE";s:34:"Displaying events {0} - {1} of {2}";s:33:"ID_GRID_PAGE_DISPLAYING_FILE_LOGS";s:37:"Displaying log files {0} - {1} of {2}";s:38:"ID_GRID_PAGE_DISPLAYING_GROUPS_MESSAGE";s:34:"Displaying groups {0} - {1} of {2}";s:29:"ID_GRID_PAGE_DISPLAYING_ITEMS";s:33:"Displaying items {0} - {1} of {2}";s:40:"ID_GRID_PAGE_DISPLAYING_PMTABLES_MESSAGE";s:37:"Displaying PM Tables {0} - {1} of {2}";s:43:"ID_GRID_PAGE_DISPLAYING_REPORTABLES_MESSAGE";s:41:"Displaying Report Tables {0} - {1} of {2}";s:50:"ID_GRID_PAGE_DISPLAYING_REPORT_PERMISSIONS_MESSAGE";s:54:"Displaying Permissions Simple Reports {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_ROLES_MESSAGE";s:33:"Displaying roles {0} - {1} of {2}";s:36:"ID_GRID_PAGE_DISPLAYING_ROWS_MESSAGE";s:32:"Displaying rows {0} - {1} of {2}";s:36:"ID_GRID_PAGE_DISPLAYING_SKIN_MESSAGE";s:33:"Displaying skins {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_USERS_MESSAGE";s:33:"Displaying users {0} - {1} of {2}";s:38:"ID_GRID_PAGE_NO_AUTHENTICATION_MESSAGE";s:36:"No authentication sources to display";s:32:"ID_GRID_PAGE_NO_CALENDAR_MESSAGE";s:23:"No calendars to display";s:32:"ID_GRID_PAGE_NO_CATEGORY_MESSAGE";s:24:"No categories to display";s:33:"ID_GRID_PAGE_NO_DASHBOARD_MESSAGE";s:24:"No Dashboards to display";s:31:"ID_GRID_PAGE_NO_DASHLET_MESSAGE";s:33:"No dashlets instances to display.";s:29:"ID_GRID_PAGE_NO_EMAIL_MESSAGE";s:20:"No Emails to display";s:29:"ID_GRID_PAGE_NO_EVENT_MESSAGE";s:20:"No Events to display";s:30:"ID_GRID_PAGE_NO_GROUPS_MESSAGE";s:20:"No groups to display";s:29:"ID_GRID_PAGE_NO_OWNER_MESSAGE";s:20:"No Owners to display";s:35:"ID_GRID_PAGE_NO_PERMISSIONS_MESSAGE";s:25:"No Permissions to display";s:32:"ID_GRID_PAGE_NO_PMTABLES_MESSAGE";s:23:"No PM Tables to display";s:29:"ID_GRID_PAGE_NO_ROLES_MESSAGE";s:19:"No roles to display";s:28:"ID_GRID_PAGE_NO_ROWS_MESSAGE";s:18:"No rows to display";s:28:"ID_GRID_PAGE_NO_SKIN_MESSAGE";s:19:"No skins to display";s:29:"ID_GRID_PAGE_NO_USERS_MESSAGE";s:19:"No users to display";s:27:"ID_GRID_VARIABLE_NAME_ERROR";s:144:"A valid variable starts with a letter or underscore, followed by any number of letters, numbers, or underscores. Variables with wrong names: {0}";s:14:"ID_GRID_WIZARD";s:24:"ProcessMaker Grid Wizard";s:8:"ID_GROUP";s:5:"Group";s:9:"ID_GROUPS";s:6:"Groups";s:16:"ID_GROUPS_ACTORS";s:12:"Group Actors";s:24:"ID_GROUPS_SUCCESS_DELETE";s:38:"Your group has been deleted correctly.";s:21:"ID_GROUPS_SUCCESS_NEW";s:33:"Group has been created correctly.";s:24:"ID_GROUPS_SUCCESS_UPDATE";s:33:"Group has been updated correctly.";s:21:"ID_GROUPS_SYNCHRONIZE";s:18:"Synchronize Groups";s:45:"ID_GROUP_CANNOT_DELETE_WHILE_ASSIGNED_TO_TASK";s:53:"Group cannot be deleted while it\'s assigned to a task";s:14:"ID_GROUP_CHART";s:11:"Group Chart";s:29:"ID_GROUP_CREATED_SUCCESSFULLY";s:39:"Group {GROUP_NAME} created successfully";s:23:"ID_GROUP_DOES_NOT_EXIST";s:39:"The group with {0}: {1} does not exist.";s:17:"ID_GROUP_INACTIVE";s:14:"Group inactive";s:13:"ID_GROUP_NAME";s:10:"Group Name";s:22:"ID_GROUP_NAME_REQUIRED";s:22:"Group name is required";s:18:"ID_GROUP_NOT_EXIST";s:41:"The group with {0}: \'{1}\' does not exist.";s:30:"ID_GROUP_NOT_REGISTERED_SYSTEM";s:34:"Group not registered in the system";s:29:"ID_GROUP_TITLE_ALREADY_EXISTS";s:47:"The group title with {0}: "{1}" already exists.";s:14:"ID_GROUP_USERS";s:14:"Group or Users";s:33:"ID_GROUP_USER_IS_ALREADY_ASSIGNED";s:56:"The user with {0}: {1} is already assigned to the group.";s:29:"ID_GROUP_USER_IS_NOT_ASSIGNED";s:52:"The user with {0}: {1} is not assigned to the group.";s:30:"ID_G_SUITE_CONFIGURATION_SAVED";s:27:"G Suite Configuration Saved";s:18:"ID_G_SUITE_CONNECT";s:26:"Request G Suite connection";s:21:"ID_G_SUITE_DISCONNECT";s:18:"Disconnect G Suite";s:22:"ID_G_SUITE_LOAD_GROUPS";s:21:"Update G Suite groups";s:21:"ID_G_SUITE_SYNC_USERS";s:13:"Syncing Users";s:19:"ID_HAS_BEEN_DELETED";s:16:"Has been deleted";s:15:"ID_HEADER_ALIGN";s:5:"Align";s:20:"ID_HEADER_FIELD_NAME";s:10:"Field Name";s:20:"ID_HEADER_FIELD_TYPE";s:10:"Field Type";s:15:"ID_HEADER_LABEL";s:5:"Label";s:16:"ID_HEADER_NUMBER";s:1:"#";s:15:"ID_HEADER_WIDTH";s:5:"Width";s:19:"ID_HEARTBEAT_CONFIG";s:10:"Heart Beat";s:20:"ID_HEARTBEAT_DISPLAY";s:10:"Heart Beat";s:23:"ID_HEART_BEAT_DETAILS_1";s:138:"The usage statistics will help the development team to better understand user requirements and prioritize improvements in future releases.";s:23:"ID_HEART_BEAT_DETAILS_2";s:110:"We cannot and will not reverse-engineer that collected data to find specific details concerning your projects.";s:22:"ID_HEART_BEAT_DISABLED";s:28:"Heart beat has been disabled";s:21:"ID_HEART_BEAT_ENABLED";s:27:"Heart beat has been enabled";s:7:"ID_HELP";s:4:"Help";s:7:"ID_HIDE";s:4:"Hide";s:12:"ID_HIDE_DIRS";s:9:"Hide Dirs";s:19:"ID_HIDE_PROCESS_INF";s:24:"Hide Process Information";s:10:"ID_HISTORY";s:15:"My Case History";s:19:"ID_HISTORY_MESSAGES";s:18:"My Message History";s:23:"ID_HISTORY_MESSAGE_CASE";s:16:"Messages History";s:11:"ID_HOLIDAYS";s:8:"Holidays";s:7:"ID_HOME";s:4:"Home";s:28:"ID_HOME_COLLAPSE_RIGHT_PANEL";s:40:"Collapse right panel when a Case is open";s:25:"ID_HOME_LISTS_DATE_FORMAT";s:20:"Date format on Lists";s:27:"ID_HOME_LISTS_ROWS_PER_PAGE";s:22:"Rows per page on Lists";s:16:"ID_HOME_SETTINGS";s:13:"Home Settings";s:18:"ID_HORIZONTAL_LINE";s:15:"Horizontal Line";s:7:"ID_HOST";s:4:"Host";s:12:"ID_HOST_NAME";s:19:"Resolving Host Name";s:18:"ID_HOST_NAME_LABEL";s:9:"Host Name";s:19:"ID_HOST_UNREACHABLE";s:28:"Destination Host Unreachable";s:7:"ID_HOUR";s:4:"Hour";s:9:"ID_HOURLY";s:6:"Hourly";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:8:"ID_HOURS";s:5:"Hours";s:18:"ID_HOUR_ABBREVIATE";s:5:"Hr(s)";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:7:"ID_HTML";s:4:"HTML";s:25:"ID_IDENTIFIER_IMPORT_USER";s:31:"Identifier for an imported user";s:8:"ID_IMAGE";s:5:"Image";s:18:"ID_IMAGES_SELECTED";s:15:"images selected";s:9:"ID_IMPORT";s:6:"Import";s:11:"ID_IMPORTED";s:8:"IMPORTED";s:24:"ID_IMPORTED_SUCCESSFULLY";s:21:"Imported Successfully";s:38:"ID_IMPORTER_BPMN_DEFINITION_IS_MISSING";s:27:"BPMN Definition is missing.";s:52:"ID_IMPORTER_BPMN_PROJECT_TABLE_DEFINITION_IS_MISSING";s:72:"BPMN table: "Project", definition is missing or has multiple definition.";s:58:"ID_IMPORTER_COULD_NOT_FIND_SPECIFIED_SOURCE_IN_PHP_GLOBALS";s:52:"Couldn\'t find specified source "{0}" in PHP Globals.";s:51:"ID_IMPORTER_ERROR_FILE_INVALID_TYPE_OR_CORRUPT_DATA";s:55:"Error, Invalid file type or the file have corrupt data.";s:38:"ID_IMPORTER_ERROR_WHILE_UPLOADING_FILE";s:44:"Error while uploading file. Error code: {0}.";s:49:"ID_IMPORTER_FILE_DEFINITION_SECTION_IS_INCOMPLETE";s:33:"Definition section is incomplete.";s:46:"ID_IMPORTER_FILE_DEFINITION_SECTION_IS_MISSING";s:30:"Definition section is missing.";s:31:"ID_IMPORTER_FILE_DOES_NOT_EXIST";s:40:"The file with {0}: "{1}" does not exist.";s:37:"ID_IMPORTER_FILE_EXTENSION_IS_NOT_PMX";s:32:"The file extension is not "pmx".";s:60:"ID_IMPORTER_FILE_INVALID_DOCUMENT_FORMAT_METADATA_IS_CORRUPT";s:57:"Invalid Document format, metadata information is corrupt.";s:60:"ID_IMPORTER_FILE_INVALID_DOCUMENT_FORMAT_METADATA_IS_MISSING";s:81:"Invalid Document format, metadata section is missing or has multiple definitions.";s:56:"ID_IMPORTER_FILE_PROCESSMAKER_PROJECT_VERSION_IS_MISSING";s:55:"ProcessMaker Project version is missing on file source.";s:55:"ID_IMPORTER_GROUP_ALREADY_EXISTS_SET_ACTION_TO_CONTINUE";s:83:"Group already exists. You need set an action to continue. Available actions: [{0}].";s:57:"ID_IMPORTER_PROJECT_ALREADY_EXISTS_SET_ACTION_TO_CONTINUE";s:76:"Project already exists. Set an action to continue. Available actions: [{0}].";s:18:"ID_IMPORTING_ERROR";s:15:"Importing Error";s:18:"ID_IMPORTING_USERS";s:18:"Importing Users...";s:24:"ID_IMPORT_ALREADY_EXISTS";s:108:"The process you are trying to import already exists. Please select one of the following options to continue:";s:29:"ID_IMPORT_ALREADY_EXISTS_BPMN";s:129:"A process with the same name already exists!. Do you want to overwrite the existing process or you want to create a new process?.";s:34:"ID_IMPORT_ALREADY_EXISTS_BPMN_NOTE";s:81:"Note that your changes will be lost in your existing process if you overwrite it.";s:14:"ID_IMPORT_BPMN";s:11:"Import BPMN";s:13:"ID_IMPORT_CSV";s:10:"CSV Import";s:18:"ID_IMPORT_DATA_CSV";s:25:"Import Data from CSV file";s:17:"ID_IMPORT_LICENSE";s:14:"Import license";s:13:"ID_IMPORT_PMT";s:15:"Import PM Table";s:17:"ID_IMPORT_PROCESS";s:14:"Import Process";s:25:"ID_IMPORT_PROCESS_OBJECTS";s:22:"Import Process Objects";s:16:"ID_IMPORT_RESULT";s:13:"IMPORT RESULT";s:12:"ID_IMPORT_RT";s:19:"Import Report Table";s:14:"ID_IMPORT_SKIN";s:11:"Import Skin";s:15:"ID_IMPORT_TABLE";s:12:"Import Table";s:15:"ID_IMPORT_USERS";s:12:"Import Users";s:5:"ID_IN";s:2:"in";s:11:"ID_INACTIVE";s:8:"Inactive";s:8:"ID_INBOX";s:5:"Inbox";s:14:"ID_INBOX_EMPTY";s:22:"Your Inbox is empty...";s:18:"ID_INCOMING_SERVER";s:15:"Incoming Server";s:18:"ID_INCORRECT_EMAIL";s:33:"Your E-mail address is not valid.";s:30:"ID_INCORRECT_USERNAME_PASSWORD";s:30:"Incorrect username or password";s:25:"ID_INCORRECT_VALUE_ACTION";s:35:"The value for $action is incorrect.";s:8:"ID_INDEX";s:5:"Index";s:21:"ID_INDEX_FILE_UPDATED";s:52:"Index File updated {0} with lang: {{1}}, skin: {{2}}";s:22:"ID_INDEX_NOT_WRITEABLE";s:74:"The index file is not writable.
Please give write permission to file:";s:12:"ID_INDICATOR";s:9:"Indicator";s:17:"ID_INDICATOR_GOAL";s:4:"Goal";s:29:"ID_INDICATOR_PROCESS_REQUIRED";s:49:"The field Process of indicator "{0}" is required.";s:18:"ID_INDICATOR_TITLE";s:15:"Indicator Title";s:27:"ID_INDICATOR_TITLE_REQUIRED";s:47:"The field Title of indicator "{0}" is required.";s:17:"ID_INDICATOR_TYPE";s:14:"Indicator Type";s:26:"ID_INDICATOR_TYPE_REQUIRED";s:46:"The field Type of indicator "{0}" is required.";s:20:"ID_INEFFICIENCY_COST";s:16:"Costs or Savings";s:7:"ID_INFO";s:4:"Info";s:14:"ID_INFORMATION";s:11:"Information";s:20:"ID_INFORMATION_EMPTY";s:30:"The information sent is empty!";s:38:"ID_INFORMATION_WAS_STORED_SUCCESSFULLY";s:35:"information was stored successfully";s:19:"ID_INITIAL_DYNAFORM";s:16:"Initial Dynaform";s:15:"ID_INITIAL_TASK";s:12:"Initial Task";s:12:"ID_INIT_DATE";s:9:"Init Date";s:12:"ID_INIT_USER";s:9:"Init user";s:15:"ID_INPUT_ASSIGN";s:58:"Input Document has been successfully assigned to a Process";s:15:"ID_INPUT_CREATE";s:44:"Input document has been created successfully";s:11:"ID_INPUT_DB";s:5:"Input";s:17:"ID_INPUT_DOCUMENT";s:14:"Input Document";s:32:"ID_INPUT_DOCUMENT_DOES_NOT_EXIST";s:48:"The Input Document with {0}: {1} does not exist.";s:30:"ID_INPUT_DOCUMENT_ITS_ASSIGNED";s:56:"The Input Document with {0}: {1} it\'s assigned in "{2}".";s:38:"ID_INPUT_DOCUMENT_TITLE_ALREADY_EXISTS";s:56:"The Input Document title with {0}: "{1}" already exists.";s:19:"ID_INPUT_DOC_ACCESS";s:21:"Input Document Access";s:25:"ID_INPUT_DOC_DOESNT_EXIST";s:30:"Input Document does not exist!";s:34:"ID_INPUT_DOC_MAX_FILESIZE_REQUIRED";s:40:"Maximum file size parameter is required.";s:27:"ID_INPUT_DOC_SUCCESS_DELETE";s:42:"Input Document has been deleted correctly.";s:24:"ID_INPUT_DOC_SUCCESS_NEW";s:42:"Input Document has been created correctly.";s:27:"ID_INPUT_DOC_SUCCESS_UPDATE";s:42:"Input Document has been updated correctly.";s:27:"ID_INPUT_DOC_TITLE_REQUIRED";s:33:"Input Document Title is required.";s:31:"ID_INPUT_DOC_TYPE_FILE_REQUIRED";s:77:"You must specify the allowed file extensions, use *.* to allow any extension.";s:14:"ID_INPUT_ERROR";s:11:"Input Error";s:15:"ID_INPUT_FAILED";s:48:"Failed saving Input Document Assigned to process";s:13:"ID_INPUT_INFO";s:26:"Input Document Information";s:17:"ID_INPUT_MAX_SIZE";s:71:"The maximum file size exceeds the \'php.ini\' max upload file size value.";s:18:"ID_INPUT_NOT_EXIST";s:41:"The input with {0}: \'{1}\' does not exist.";s:17:"ID_INPUT_NOT_SAVE";s:80:"Not saved because there is an Input Document with the same name in this process.";s:15:"ID_INPUT_REMOVE";s:57:"Input Document has been removed successfully from Process";s:20:"ID_INPUT_UNAVAILABLE";s:81:"No Input Documents are available. All Input Documents have already been assigned.";s:15:"ID_INPUT_UPDATE";s:44:"Input document has been updated successfully";s:16:"ID_INPUT_WARNING";s:66:"Input document assigned to a process supervisors cannot be deleted";s:24:"ID_INSTALLATION_FILE_LOG";s:21:"Installation log file";s:19:"ID_INSTALLATION_LOG";s:17:"Installation log:";s:12:"ID_INSTALLED";s:9:"Installed";s:13:"ID_INSTALLING";s:10:"Installing";s:20:"ID_INSTALLING_PLUGIN";s:20:"Installing plugin...";s:23:"ID_INSTALLING_WORKSPACE";s:23:"Installing workspace...";s:20:"ID_INSTALL_BUT_ERROR";s:47:"Errors during installation. Couldn\'t update {0}";s:16:"ID_INSTALL_ERROR";s:13:"Install Error";s:20:"ID_INSTALL_FROM_FILE";s:17:"Install from file";s:31:"ID_INSTALL_FROM_FILE_PLUGIN_TIP";s:20:"Upload a plugin file";s:18:"ID_INSTALL_MESSAGE";s:57:"Please follow these instructions to complete installation";s:14:"ID_INSTALL_NOW";s:11:"Install now";s:17:"ID_INSTALL_PLUGIN";s:14:"Install Plugin";s:16:"ID_INSTALL_STEPS";s:13:"Install Steps";s:17:"ID_INSTALL_SUCESS";s:36:"Installation completed successfully.";s:27:"ID_INSTALL_USE_CURRENT_USER";s:93:"The MySQL user from the previous step will be the database owner. (Do not create a new user.)";s:15:"ID_INSTRUCTIONS";s:12:"Instructions";s:20:"ID_INSTRUCTIONS_TEXT";s:152:"To assign a case, first select the case in the list. Then enter a user name in the \'Search\' field and select a user to whom the case will be reassigned.";s:35:"ID_INSUFFICIENT_PRIVILEGES_FUNCTION";s:48:"Insufficient privileges to execute this function";s:6:"ID_INT";s:3:"INT";s:35:"ID_INTERMEDIATE_CATCH_MESSAGE_EVENT";s:42:"Untitled - Intermediate Send Message Event";s:33:"ID_INTERMEDIATE_CATCH_TIMER_EVENT";s:35:"Untitled - Intermediate Timer Event";s:29:"ID_INTERMEDIATE_MESSAGE_EVENT";s:48:"Intermediate Message Events (Task Notifications)";s:30:"ID_INTERMEDIATE_MESSAGE_EVENTS";s:48:"Intermediate Message Events (Task Notifications)";s:33:"ID_INTERMEDIATE_THROW_EMAIL_EVENT";s:35:"Untitled - Intermediate Email Event";s:35:"ID_INTERMEDIATE_THROW_MESSAGE_EVENT";s:45:"Untitled - Intermediate Receive Message Event";s:27:"ID_INTERMEDIATE_TIMER_EVENT";s:41:"Intermediate Timer Event (Multiple Event)";s:28:"ID_INTERMEDIATE_TIMER_EVENTS";s:41:"Intermediate Timer Event (Multiple Event)";s:16:"ID_INTERNATIONAL";s:13:"International";s:29:"ID_INVALID_APPLICATION_ID_MSG";s:162:"An invalid application ID was stored for the session.
This could have happened if you opened another case in a new tab or window.
Please {0} the case.";s:29:"ID_INVALID_APPLICATION_NUMBER";s:41:"You have set a invalid Application Number";s:32:"ID_INVALID_CASE_DELEGATION_INDEX";s:43:"Invalid Case Delegation index for this user";s:15:"ID_INVALID_DATA";s:12:"Invalid data";s:20:"ID_INVALID_END_HOURS";s:41:"The following end hours rows are invalid:";s:20:"ID_INVALID_EXTENSION";s:23:"Invalid file extension!";s:15:"ID_INVALID_FILE";s:12:"Invalid FIle";s:16:"ID_INVALID_LIMIT";s:33:"Invalid value specified for limit";s:24:"ID_INVALID_MAX_PERMITTED";s:70:"Invalid value for \'{0}\'. The maximum allowed length is {1} characters.";s:15:"ID_INVALID_NAME";s:13:"Invalid name!";s:22:"ID_INVALID_ORIGIN_USER";s:19:"Invalid origin user";s:19:"ID_INVALID_PRF_PATH";s:69:"Invalid value specified for prf_path. Expecting templates/ or public/";s:18:"ID_INVALID_PROCESS";s:15:"Invalid process";s:23:"ID_INVALID_PROCESS_NAME";s:62:"Invalid process name, please just use alphanumeric characters.";s:24:"ID_INVALID_PROCESS_NAME2";s:62:"Invalid process name, please just use alphanumeric characters.";s:16:"ID_INVALID_QUERY";s:14:"Invalid query.";s:15:"ID_INVALID_ROLE";s:21:"Invalid role \'{ROLE}\'";s:23:"ID_INVALID_SCH_END_DATE";s:97:"Invalid value specified for sch_end_date. Expecting date in YYYY-MM-DD format, such as 2014-01-01";s:21:"ID_INVALID_SCH_REPEAT";s:76:"Invalid value specified for sch_repeat_every. Expecting time in HH.MM format";s:25:"ID_INVALID_SCH_START_DATE";s:99:"Invalid value specified for sch_start_date. Expecting date in YYYY-MM-DD format, such as 2014-01-01";s:26:"ID_INVALID_SCH_START_DAY_1";s:73:"Invalid value specified for sch_start_day_opt_1. Must be between 1 and 31";s:25:"ID_INVALID_SCH_START_TIME";s:115:"Invalid value specified for sch_start_time. Expecting time in HH:MM format (The time can not be greater than 23:59)";s:16:"ID_INVALID_START";s:33:"Invalid value specified for start";s:24:"ID_INVALID_STARTING_TIME";s:13:"Starting time";s:22:"ID_INVALID_START_HOURS";s:43:"The following start hours rows are invalid:";s:18:"ID_INVALID_TRIGGER";s:33:"Invalid trigger \'{TRIGGER_INDEX}\'";s:16:"ID_INVALID_VALUE";s:24:"Invalid value for "{0}".";s:22:"ID_INVALID_VALUE_ARRAY";s:45:"Invalid value for \'{0}\'. It must be an array.";s:24:"ID_INVALID_VALUE_BOOLEAN";s:46:"Invalid value for \'{0}\'. It must be a boolean.";s:33:"ID_INVALID_VALUE_CAN_NOT_BE_EMPTY";s:45:"Invalid value for "{0}". It can not be empty.";s:43:"ID_INVALID_VALUE_EXPECTING_POSITIVE_DECIMAL";s:63:"Invalid value for "{0}". Please enter a positive decimal value.";s:43:"ID_INVALID_VALUE_EXPECTING_POSITIVE_INTEGER";s:58:"Invalid value for "{0}". Expecting positive integer value.";s:20:"ID_INVALID_VALUE_FOR";s:32:"Invalid value specified for: {0}";s:24:"ID_INVALID_VALUE_INTEGER";s:47:"Invalid value for \'{0}\'. It must be an integer.";s:25:"ID_INVALID_VALUE_IS_EMPTY";s:25:"The field \'{0}\' is empty.";s:36:"ID_INVALID_VALUE_ONLY_ACCEPTS_VALUES";s:55:"Invalid value for "{0}". It only accepts values: "{1}".";s:23:"ID_INVALID_VALUE_STRING";s:45:"Invalid value for \'{0}\'. It must be a string.";s:35:"ID_INVALID_VALUE_THIS_MUST_BE_ARRAY";s:53:"Invalid value for "{0}". This value must be an array.";s:14:"ID_IN_PROGRESS";s:11:"In Progress";s:5:"ID_IP";s:9:"IP Client";s:15:"ID_ISNT_LICENSE";s:31:"This isn\'t the correct license.";s:25:"ID_ISO8601_INVALID_FORMAT";s:58:"Invalid value for "{0}", this has not the format ISO 8601.";s:12:"ID_ISSUED_TO";s:9:"Issued to";s:20:"ID_IS_NOT_REGISTERED";s:18:"is not registered!";s:14:"ID_IS_REQUIRED";s:11:"is required";s:6:"ID_IUD";s:1:"#";s:14:"ID_JAVASCRIPTS";s:11:"JavaScripts";s:19:"ID_JAVASCRIPT_CACHE";s:16:"Javascript cache";s:7:"ID_JUMP";s:4:"Jump";s:19:"ID_KEEP_PROCESS_UID";s:25:"Keep imported process UID";s:6:"ID_KPI";s:26:"Key Performance Indicators";s:8:"ID_LABEL";s:5:"Label";s:12:"ID_LANGUAGES";s:8:"Language";s:23:"ID_LANGUAGE_CANT_DELETE";s:70:"There is {0} cases started with this language, delete action canceled!";s:33:"ID_LANGUAGE_CANT_DELETE_CURRENTLY";s:61:"The language the system is currently using cannot be deleted.";s:31:"ID_LANGUAGE_CANT_DELETE_DEFAULT";s:38:"You can\'t delete the default language.";s:32:"ID_LANGUAGE_DELETED_SUCCESSFULLY";s:30:"Language deleted successfully!";s:21:"ID_LANGUAJE_DIRECTORY";s:18:"Language Directory";s:22:"ID_LANG_INSTALL_UPDATE";s:16:"Install / Update";s:14:"ID_LAN_COUNTRY";s:7:"Country";s:11:"ID_LAN_FILE";s:4:"File";s:23:"ID_LAN_FILE_WATER_LABEL";s:25:"Select a translation file";s:15:"ID_LAN_LANGUAGE";s:8:"Language";s:13:"ID_LAN_LOCALE";s:6:"Locale";s:18:"ID_LAN_NUM_RECORDS";s:9:"# Records";s:15:"ID_LAN_REV_DATE";s:13:"Revision Date";s:17:"ID_LAN_TRANSLATOR";s:10:"Translator";s:18:"ID_LAN_UPDATE_DATE";s:12:"Date Updated";s:19:"ID_LAN_UPLOAD_TITLE";s:23:"Upload translation file";s:14:"ID_LAN_VERSION";s:7:"Version";s:7:"ID_LAST";s:4:"Last";s:11:"ID_LASTNAME";s:9:"Last Name";s:16:"ID_LAST_EMPLOYEE";s:13:"Last Employee";s:13:"ID_LAST_LOGIN";s:10:"Last Login";s:14:"ID_LAST_MODIFY";s:13:"Last Modified";s:12:"ID_LAST_NAME";s:9:"Last Name";s:16:"ID_LAST_RUN_TIME";s:13:"Last Run Time";s:17:"ID_LATEST_VERSION";s:14:"Latest version";s:24:"ID_LDAP_ACCOUNT_DISABLED";s:34:"The account is currently disabled.";s:23:"ID_LDAP_ACCOUNT_EXPIRED";s:31:"The user\'s account has expired.";s:24:"ID_LDAP_ERROR_CONNECTION";s:17:"Error connection.";s:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:43:"ID_LDAP_NOT_PERMITTED_TO_LOGON_AT_THIS_TIME";s:49:"The user is not permitted to log on at this time.";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:24:"ID_LDAP_PASSWORD_EXPIRED";s:27:"User\'s account has expired.";s:39:"ID_LDAP_RESTRICTED_TO_SPECIFIC_MACHINES";s:55:"The user is not permitted to log on from this computer.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";s:32:"ID_LDAP_USER_MUST_RESET_PASSWORD";s:69:"The user\'s password must be changed before logging on the first time.";s:30:"ID_LDAP_USER_NOT_FOUND_INVALID";s:24:"The username is invalid.";s:7:"ID_LECA";s:60:"Your license has expired. Please contact your administrator.";s:7:"ID_LEFT";s:4:"left";s:14:"ID_LEFT_MARGIN";s:11:"Left Margin";s:12:"ID_LESS_THAN";s:9:"less than";s:25:"ID_LIBRARY_DOES_NOT_EXIST";s:43:"The library with {0}: "{1}" does not exist.";s:34:"ID_LIBRARY_FUNCTION_DOES_NOT_EXIST";s:59:"The function with {0}: "{1}" does not exist in the library.";s:22:"ID_LICENCE_LOGIN_TITLE";s:7:"License";s:16:"ID_LICENSE_EMPTY";s:24:"Can not find any license";s:15:"ID_LICENSE_FILE";s:12:"License file";s:17:"ID_LICENSE_SERVER";s:14:"License server";s:20:"ID_LIFETIME_VALIDATE";s:47:"Max Lifetime value has to be a positive integer";s:7:"ID_LINE";s:4:"Line";s:8:"ID_LINES";s:5:"Lines";s:10:"ID_LOADING";s:23:"Loading, please wait...";s:15:"ID_LOADING_GRID";s:10:"Loading...";s:14:"ID_LOAD_FAILED";s:11:"Load Failed";s:17:"ID_LOAD_FROM_FILE";s:14:"Load from file";s:12:"ID_LOAD_MORE";s:9:"Load More";s:9:"ID_LOCALE";s:6:"Locale";s:11:"ID_LOCATION";s:8:"Location";s:9:"ID_LOGGED";s:9:"Logged on";s:8:"ID_LOGIN";s:5:"Login";s:14:"ID_LOGIN_AGAIN";s:55:"You have lost your session and you have to login again.";s:16:"ID_LOGIN_LIBRARY";s:31:"Login into ProcessMaker Library";s:17:"ID_LOGIN_SETTINGS";s:14:"Login Settings";s:14:"ID_LOGIN_TITLE";s:35:"Please enter your credentials below";s:26:"ID_LOGIN_TO_SEE_OUTPUTDOCS";s:39:"You must be logged to see the documents";s:22:"ID_LOGIN_WITH_FACEBOOK";s:21:"Login with Facebook!!";s:7:"ID_LOGO";s:4:"Logo";s:9:"ID_LOGOUT";s:6:"Logout";s:7:"ID_LOGS";s:4:"Logs";s:12:"ID_LOG_AGAIN";s:40:"Please login again to apply the changes.";s:21:"ID_LOG_CASE_SCHEDULER";s:18:"Case Scheduler Log";s:11:"ID_LOG_INFO";s:15:"Log Information";s:40:"ID_MAFE_0015b7e51c1ca4293041c429985ca323";s:56:"The specified subform could not be found in the process.";s:40:"ID_MAFE_0025301679e9722c3abd5914cfbc7dd7";s:39:"Database connection edited successfully";s:40:"ID_MAFE_004d33be4d12eb8c0ae00703e7c70f61";s:11:"Pick Second";s:40:"ID_MAFE_004fa281c757ed0c2ed3ca2b19dc26f4";s:30:"Please select a file to upload";s:40:"ID_MAFE_0095a9fa74d1713e43e370a7d7846224";s:6:"Export";s:40:"ID_MAFE_00d23a76e43b46dae9ec7aa9dcbebb32";s:7:"Enabled";s:40:"ID_MAFE_011306a5e88efff7332299ca7d8e4515";s:81:"Invalid flow between elements. Please delete the flow and reconnect the elements.";s:40:"ID_MAFE_014bd6f385cb5aec29ec9714b8106ccb";s:10:"Search ...";s:40:"ID_MAFE_018987001347cd85be2f30fcaac4ec7f";s:17:"Reassign my cases";s:40:"ID_MAFE_01bc6f8efa4202821e95f4fdf6298b30";s:5:"clear";s:40:"ID_MAFE_01d9ea29b533da28fc3a3dc45826530b";s:59:"Fields marked with an asterisk (%%ASTERISK%%) are required.";s:40:"ID_MAFE_01e314c524834917a79de8eb706d379a";s:20:"Available users list";s:40:"ID_MAFE_021f59e0a7f72f582a58baad7d315f83";s:40:"Execute a trigger when a case is created";s:40:"ID_MAFE_0266e5e196c710628bce171dc00a8d4e";s:17:"Available Objects";s:40:"ID_MAFE_02c99274ed000da347819e732fe05bfa";s:18:"Regular Expression";s:40:"ID_MAFE_02edd93949f6d3c57d9822691b59f649";s:3:"The";s:40:"ID_MAFE_02f5a8943b70bb7ee70ec52a58090caa";s:35:"The key and label must be supplied.";s:40:"ID_MAFE_033db172e7506126611760711854d755";s:10:"Next Month";s:40:"ID_MAFE_03727ac48595a24daed975559c944a44";s:3:"Day";s:40:"ID_MAFE_03937134cedab9078be39a77ee3a48a0";s:5:"Group";s:40:"ID_MAFE_03b62516184fb6ef591f45bd4974b753";s:7:"refresh";s:40:"ID_MAFE_03b94d355b5045f081bd898e4d664900";s:12:"display mode";s:40:"ID_MAFE_03c2e7e41ffc181a4e84080b4710e81e";s:3:"New";s:40:"ID_MAFE_03de5d2d75b7dd914fbc5c775bf21b63";s:48:"Input Document*:";s:40:"ID_MAFE_03df896fc71cd516fdcf44aa699c4933";s:9:"Variables";s:40:"ID_MAFE_0422899c4397e3d67ffc16045df065bd";s:58:"Please configure cron to create cases in base to a signal.";s:40:"ID_MAFE_0459c698b4236e6e2bcdd7dfe0d5f58b";s:12:"Web controls";s:40:"ID_MAFE_045ee0bdd04f6173c47edf74fd6d51b3";s:13:"Message Field";s:40:"ID_MAFE_04a7590947b0fb78f977e095bf71fdd0";s:22:"Script Task Properties";s:40:"ID_MAFE_0544ceae853cfdbfd84515d140e2c233";s:9:"User Task";s:40:"ID_MAFE_0557fa923dcee4d0f86b1409f5c2167f";s:4:"Back";s:40:"ID_MAFE_056fa3d840f48b7bfbbd68c19a4797b3";s:9:"Terminate";s:40:"ID_MAFE_0598c093f5b72986e4742a2d307e835b";s:35:"
  • YYYY MM DD >> "Valid date"
  • ";s:40:"ID_MAFE_0610123bdd4ffc191a3ea05a847e1307";s:5:"Press";s:40:"ID_MAFE_06393d06d72234311af1c99b3479bb02";s:43:"Redirect to custom URL and clear login info";s:40:"ID_MAFE_064626e308f7d6587778df2924ea847c";s:12:"← Back";s:40:"ID_MAFE_06502cb888fb850e36367519eb1fc54c";s:13:"Vertical line";s:40:"ID_MAFE_06b1e0de70757f590a02c49ed6643dbd";s:16:"Parallel Gateway";s:40:"ID_MAFE_06b98656cf4847f3e0479124bbbbd4d4";s:112:"Wo1st 2nd ... 52nd 53rdWW01 02 ... 52 53";s:40:"ID_MAFE_06d4cd63bde972fc66a0aed41d2f5c51";s:7:"comment";s:40:"ID_MAFE_07052d86b58157929b39588cd04bf868";s:15:"Receive Message";s:40:"ID_MAFE_070acc9c521d0db8d0620a1435a36207";s:8:"Wait for";s:40:"ID_MAFE_07463a98d573b3749d9230c9c02c38d0";s:34:"Accepted Values is an empty string";s:40:"ID_MAFE_07501edbc1f9fd2f7d0f0d71712b11cf";s:33:"Case Tracker updated successfully";s:40:"ID_MAFE_075ae3d2fc31640504f814f60e5ef713";s:8:"disabled";s:40:"ID_MAFE_07603125709811efbdbcd69161b42527";s:12:"Save process";s:40:"ID_MAFE_076bbf458415eb4b6684ebad6c6094c0";s:14:"Variable Name:";s:40:"ID_MAFE_0778b522479c97b0c98fb221e86f8054";s:54:"Invalid operation, please delete elements individually";s:40:"ID_MAFE_07a61978b92831579bbbb72fdf2a3b58";s:9:"useStrict";s:40:"ID_MAFE_085fea7abdc5d904fe69a3081efd7398";s:6:"Signal";s:40:"ID_MAFE_087fb8756d4add87f2d162304ccd486b";s:16:"No records found";s:40:"ID_MAFE_08898cf72a0c0bab1fd5a011cb430875";s:18:"Filename generated";s:40:"ID_MAFE_089fcbec3033fdeb0d653252c287545a";s:36:"Do you want to delete this variable?";s:40:"ID_MAFE_08a7d6fab0acef5396b8e564b32f48f8";s:69:"Supported Controls: text, textarea, dropdown, radio, suggest, hidden.";s:40:"ID_MAFE_08e81084a29cd23cc305864758f6b006";s:24:"validation error message";s:40:"ID_MAFE_0998e1a350726e6469268a260a83a2dc";s:17:"toolbar placement";s:40:"ID_MAFE_09ac9c2ebfa317b7baa510b9b93127bb";s:22:"(HH:MM) Format 24 hrs.";s:40:"ID_MAFE_0a10134c1999989ce854ac519eb97249";s:34:"Web Entry Anonymous Authentication";s:40:"ID_MAFE_0a33cdf242201623275b9897d8b4d8c4";s:13:"Html Template";s:40:"ID_MAFE_0a52da7a03a6de3beefe54f8c03ad80d";s:8:"Original";s:40:"ID_MAFE_0a7d55be9d12a369a6a8da0fb517fba4";s:6:"minute";s:40:"ID_MAFE_0af63899fb5342f6d1882ea16af864c1";s:72:"Allows date selection after this date
    (in YYYY-MM-DD HH:MM:SS format)";s:40:"ID_MAFE_0b27918290ff5323bea1e3b78a9cf04e";s:4:"File";s:40:"ID_MAFE_0b3d5609ee81e50809b7351e848e4698";s:2:"A6";s:40:"ID_MAFE_0b4db271fc4624853e634ef6882ea8be";s:8:"View all";s:40:"ID_MAFE_0b71568d594e3c9e57fe1cfae1957819";s:43:"Please configure a script to send a signal.";s:40:"ID_MAFE_0b9d04ab06dac3da0142bb369637bfa4";s:7:"qr code";s:40:"ID_MAFE_0bb8309239953b782fec18706fe60b4a";s:7:"Digital";s:40:"ID_MAFE_0bf7c19f7eac3bfa5ad960a50ad602dc";s:8:"subtitle";s:40:"ID_MAFE_0c06d45a9f58aba5f4c4d50b03f65b04";s:18:"- Select Trigger -";s:40:"ID_MAFE_0c2f3adf2a48bab3adb470f4da57f3d0";s:2:"A4";s:40:"ID_MAFE_0d0a0333b928f95bbbe2a5468f9d4aff";s:17:"Consolidated Case";s:40:"ID_MAFE_0d82790b0612935992bd564a17ce37d6";s:4:"Quit";s:40:"ID_MAFE_0dbeaf3f5e4f954c5d7c20cf222df405";s:13:"widget parent";s:40:"ID_MAFE_0dc345e011be6119663ae656cd0fc190";s:16:"Process Category";s:40:"ID_MAFE_0dd4741bcb3a94e7ec755907753669ff";s:42:"Do you want to delete this Input Document?";s:40:"ID_MAFE_0df44e2363fd51047d55635ae4130592";s:35:"Insert the title of the new trigger";s:40:"ID_MAFE_0df8347776dbb1c637387ec287c7966f";s:132:"Week Yeargg70 71 ... 29 30gggg1970 1971 ... 2029 2030";s:40:"ID_MAFE_0e0d7b681145ccfa803cd39c1b2e648f";s:59:"There are problems deleting the dynaform, please try again.";s:40:"ID_MAFE_0eaadb4fcb48a0a0ed7bc9868be9fbaa";s:7:"Warning";s:40:"ID_MAFE_0ecb335cc64ebaab517d0b3b2afa5c12";s:28:"Trigger updated successfully";s:40:"ID_MAFE_0fc962c43d228657cb0afd29eb815d15";s:14:"Screenshot1024";s:40:"ID_MAFE_1017b7d4a852d1f4bc8c58388dec210d";s:61:"Generate link using workspace default values (skin, language)";s:40:"ID_MAFE_102ddd51b0851772c38c022ff51d1ca3";s:65:"There are problems deleting the OutputDocument, please try again.";s:40:"ID_MAFE_1063e38cb53d94d386f21227fcd84717";s:6:"Remove";s:40:"ID_MAFE_10ac3d04253ef7e1ddc73e6091c0cd55";s:4:"Next";s:40:"ID_MAFE_10e94946bad8ebe2b449c477895574dc";s:46:"After routing notify the next assigned user(s)";s:40:"ID_MAFE_11a55bdfc91b03465ae2861980f10173";s:40:"The task doesn\'t have assigned Dynaforms";s:40:"ID_MAFE_11a5a6ab06a384ff9a00257a806f63c4";s:12:"Gateway Type";s:40:"ID_MAFE_11b4f4a84a6eb08abcae398ed8ecbf37";s:9:"keep open";s:40:"ID_MAFE_11dccac44340779ce8196e81de2d7650";s:22:"Parallel (AND) Gateway";s:40:"ID_MAFE_11e0eed8d3696c0a632f822df385ab3c";s:8:"database";s:40:"ID_MAFE_11f7f103dc24a2d5ce711c080e1a3851";s:22:"Case assignment method";s:40:"ID_MAFE_12516cf647fbd9162aca24107016356a";s:21:"Create Blank Dynaform";s:40:"ID_MAFE_128533b9a26b65e5732d15d8db0bc3cd";s:79:"There are unsaved changes, if you leave the editor some changes won\'t be saved.";s:40:"ID_MAFE_12cba3ee81cf4a793796a51b6327c678";s:4:"copy";s:40:"ID_MAFE_12ddb1802ad1aaed5cd7f41e77bab34a";s:38:"Please configure cron to create cases.";s:40:"ID_MAFE_130c5b3473c57faa76e2a1c54e26f88e";s:4:"Both";s:40:"ID_MAFE_13348442cc6a27032d2b4aa28b75a5d3";s:6:"Search";s:40:"ID_MAFE_1351017ac6423911223bc19a8cb7c653";s:8:"Filename";s:40:"ID_MAFE_1352bad10a077956b0e7ebd618c5198d";s:61:"There are problems loading the Start Timer, please try again.";s:40:"ID_MAFE_136bf3131fc2868af07c733d969c7833";s:12:"Routing Rule";s:40:"ID_MAFE_13a44cb3c08c1c40a3c5b62152538ee8";s:14:"Email template";s:40:"ID_MAFE_141ee7f0f96c6b0a087bd70630ab3719";s:13:"Open Password";s:40:"ID_MAFE_14230d11143a03f4330c6433d5032a9d";s:4:"Prev";s:40:"ID_MAFE_1432f32780bbd9cde496343b060fd75d";s:12:"Send Message";s:40:"ID_MAFE_157b53019e903b82b3b34209dbb26b21";s:63:"Converging Gateway must have two or more incoming sequence flow";s:40:"ID_MAFE_1586e418c08ebe156f39e9fa02504a7c";s:62:"Diverging Gateway must have two or more outgoing sequence flow";s:40:"ID_MAFE_15a0bc8b5cabfd4950d74ec8806aaebd";s:18:"variable data type";s:40:"ID_MAFE_15cb4da0a2a5e4459855d0f51cff5c9d";s:63:"Intermediate event must have one or more incoming sequence flow";s:40:"ID_MAFE_16688462a9859fc560412c2e1349437f";s:9:"Dynaforms";s:40:"ID_MAFE_166a1105094f6efbcb4b3fabd27cfa40";s:36:"The task doesn\'t have assigned users";s:40:"ID_MAFE_16888e57558b35486dfc46f2a39fdac9";s:34:"Task properties saved successfully";s:40:"ID_MAFE_168909c0b6f1dfbd48f679d47059c1d6";s:5:"Third";s:40:"ID_MAFE_16e4992123f5046ce89c07829efc9ac2";s:14:"Decrement Hour";s:40:"ID_MAFE_16f49c0f891dce505db0ffe478aff96f";s:12:"Next →";s:40:"ID_MAFE_171c9ea8629e74f980018c522d83bada";s:13:"Variables Out";s:40:"ID_MAFE_172ac8a8053b32e15c602be955a2f098";s:42:"Execute a trigger when a case is cancelled";s:40:"ID_MAFE_174e4ee3d13ed11b4d96ac457dc86aa0";s:17:"Manual Assignment";s:40:"ID_MAFE_1776c5b429c7d2e9c493d8b1419c3a72";s:14:"disabled dates";s:40:"ID_MAFE_17a53d1a012580ef609b70ef6a25d1f1";s:6:"Letter";s:40:"ID_MAFE_17f6161419cf1071d5c1163669a66853";s:15:"Select Dynaform";s:40:"ID_MAFE_181a78592654ed602ed454e019302f51";s:82:"Do you want to save the changes? This Trigger will be saved like a custom Trigger.";s:40:"ID_MAFE_1825d84c97732e2ce3d43b28cee08b58";s:58:"There are problems updating the trigger, please try again.";s:40:"ID_MAFE_185b7133db22230701a857c059360cc2";s:6:"Assign";s:40:"ID_MAFE_187336962e958e5f776ea41daf7b394e";s:21:"Default email account";s:40:"ID_MAFE_189f63f277cd73395561651753563065";s:4:"Tags";s:40:"ID_MAFE_192cf04847c3ffd92ceb9001f2f22458";s:12:"Variables In";s:40:"ID_MAFE_193cfc9be3b995831c6af2fea6650e60";s:4:"Page";s:40:"ID_MAFE_1954ab48f4de4fc4c5e53d7dad0618d0";s:33:"Message Type edited successfully.";s:40:"ID_MAFE_195fbb57ffe7449796d23466085ce6d8";s:3:"May";s:40:"ID_MAFE_197860b724bf2228df0b57ce97ef3c71";s:18:"Exclusive (Manual)";s:40:"ID_MAFE_19a757ca6e86f84f6c7b968ca7ad49dd";s:28:"Variable edited successfully";s:40:"ID_MAFE_19c562a36aeb455d09534f93b4f5236f";s:4:"Unit";s:40:"ID_MAFE_19cc79b708cfd5bf2410bc2767df6105";s:27:"Dynaform saved successfully";s:40:"ID_MAFE_1a1a584d5673d1c56e1093dddd2ee953";s:9:"size unit";s:40:"ID_MAFE_1a721faf2df53972bfd0831c64b6146d";s:8:"collapse";s:40:"ID_MAFE_1a79a39f343f2224748ec987ccf8431f";s:4:"Lane";s:40:"ID_MAFE_1ad9db0953957569c62d12728f2b0874";s:14:"Get value from";s:40:"ID_MAFE_1b539f6f34e8503c97f6d3421346b63c";s:4:"July";s:40:"ID_MAFE_1ba532aebcefcfd5cc7a5c1dd99dbd8b";s:9:"Work Days";s:40:"ID_MAFE_1bda80f2be4d3658e0baa43fbe7ae8c1";s:4:"view";s:40:"ID_MAFE_1c0b8f236cc7ad13254af9a32ea15be8";s:6:"Resend";s:40:"ID_MAFE_1c7444be9626d149ab598fb79b639f96";s:8:"Portrait";s:40:"ID_MAFE_1cb251ec0d568de6a929b520c4aed8d1";s:4:"text";s:40:"ID_MAFE_1ce4fd7b116c43c936cc8ddbaa51ce99";s:15:"file extensions";s:40:"ID_MAFE_1ce7fd4a5bc68650a82e2b254c9137c7";s:30:"Trigger assigned successfully.";s:40:"ID_MAFE_1d1ded75bd737a314cd8e39f4a715ab9";s:181:"Note: To remove days, months or years from the date picker, use a format which does not have those elements. For example a format of "MM/YYY" will not allow the user to select days.";s:40:"ID_MAFE_1d54bc57e09e7e7b52f85f0045a01474";s:32:"Do you want to delete this lang?";s:40:"ID_MAFE_1d623b89683f9ce4e074de1676d12416";s:3:"sum";s:40:"ID_MAFE_1d6785e8bc575506eb7ee226614a6d18";s:24:"Allowed file extensions:";s:40:"ID_MAFE_1dccefa9aa4b700675ca17101bccd7d3";s:16:"Edit Source Code";s:40:"ID_MAFE_1ddcb92ade31c8fbd370001f9b29a7d9";s:6:"format";s:40:"ID_MAFE_1de162d73f017a9243ce0c939064a014";s:14:"Enable gallery";s:40:"ID_MAFE_1e469db43d54e3019fcb2328e1ec4e27";s:18:"Require user login";s:40:"ID_MAFE_1ea7e575defdf6bc3f26a3f127e98170";s:10:"datasource";s:40:"ID_MAFE_1f5a44e6621dc51b6daca35844ba8311";s:14:"Timing Control";s:40:"ID_MAFE_1f9d9a4ccb5e099c457588964a61b8db";s:9:"page size";s:40:"ID_MAFE_2032a8d80edc990f99b7113724f4adc6";s:63:"The source shape can not have more than one outgoing connection";s:40:"ID_MAFE_203d82526c3bf7c32f75cb083c61c4ff";s:12:"Summary Form";s:40:"ID_MAFE_20633a8e3019e3b5f7d394f488d237da";s:18:"Callback Action...";s:40:"ID_MAFE_2063c1608d6e0baf80249c42e2be5804";s:5:"value";s:40:"ID_MAFE_20835b49593bbf08bdbbfdc6203fc51d";s:14:"alternate text";s:40:"ID_MAFE_208cc8f89088bcae77b83013f46c6cdc";s:21:"Show task in New Case";s:40:"ID_MAFE_20908be99ead7d291aca60cdd4b4bddb";s:56:"Enter a title displayed on web entry window (if applies)";s:40:"ID_MAFE_20b4f77bd00b4f63a49ec8e08f3bf6a6";s:4:"Cost";s:40:"ID_MAFE_20c1cf6614ec6ffbda1e766353344b6f";s:22:"Timer Event Properties";s:40:"ID_MAFE_21037a59373ae01e31ee20ec61555333";s:35:"Store result in variable @@myResult";s:40:"ID_MAFE_213d0c943b541604653a54b0961fd693";s:14:"Execution time";s:40:"ID_MAFE_214d99dbc0103c5a28039057362fc954";s:37:"The table name can not contain spaces";s:40:"ID_MAFE_218e8708630164ca97f9f3de66a3339b";s:118:"for valid datetime formats. If only the date is included in the format then the time picker will not be displayed.

    ";s:40:"ID_MAFE_2239b7b7383e821ff79ffbcd256a3f8f";s:12:"External (s)";s:40:"ID_MAFE_22430f0b1be537ea19f5f7a49dd5b15b";s:27:"For additional information:";s:40:"ID_MAFE_22ae0e2b89e5e3d477f988cc36d3272b";s:5:"Float";s:40:"ID_MAFE_22e74b4a2ae3e237300f7a79f6e6dbc4";s:14:"Completed Task";s:40:"ID_MAFE_22f1a4667604b8557c9b209c201b4bc6";s:3:"Aug";s:40:"ID_MAFE_2310408a63388fe57e3a4177168a8798";s:7:"Desktop";s:40:"ID_MAFE_231afe47f3f37d3808096b36c28b4ded";s:7:"Element";s:40:"ID_MAFE_239894b31b0a9c122be4f31d07305efd";s:87:"Supported Controls: text, textarea, dropdown, radio, suggest, hidden, geo map, qr code.";s:40:"ID_MAFE_239959e37b524db940db159c09984c0a";s:8:"- None -";s:40:"ID_MAFE_23aa72823f3110b89a4791763ed6ca3f";s:11:"Trigger (s)";s:40:"ID_MAFE_23cf385e5c56eeecebbd85b82acbdabd";s:64:"The value provided for the Results limit property of the field "";s:40:"ID_MAFE_23faca394186e73f3446b5ff25802885";s:21:"Process Files Manager";s:40:"ID_MAFE_2421dc6680ce1aaf6cea69494a39df47";s:43:"Do you want to delete this Output Document?";s:40:"ID_MAFE_2448df3d33c626c2cf8e883f778454b3";s:34:"The maximum value of this field is";s:40:"ID_MAFE_244d5dea1c18e5cd0eb873b030e1d824";s:28:"- Select starting activity -";s:40:"ID_MAFE_245a41b3d20ec98d1e045e149f645911";s:15:"Edit permission";s:40:"ID_MAFE_2470a67fad9f2e7fbb2f4c5e78fad6af";s:13:"Count days by";s:40:"ID_MAFE_24b875ed575a2d388074a8f7b2d2c765";s:136:"MMMJan Feb ... Nov DecMMMMJanuary February ... November December";s:40:"ID_MAFE_24fa2fbfb2224c63fee87993306c0c95";s:13:"Variable Type";s:40:"ID_MAFE_257cb9ff74e0f915a115f902c91bc372";s:9:"TEMPLATES";s:40:"ID_MAFE_25c7551bb238df62b5c5de847e0e4a0a";s:28:"Required field error message";s:40:"ID_MAFE_25d7912714632dcc5283517e20ead1f1";s:11:"Next Decade";s:40:"ID_MAFE_25d902c24283ab8cfbac54dfa101ad31";s:3:"src";s:40:"ID_MAFE_2689a6d6b3d3e54ccf8c9af27cf95d35";s:16:"Actions by Email";s:40:"ID_MAFE_26c8b24dce7a00ff4d00781dc2ee5d66";s:43:"Execute a trigger when a case is reassigned";s:40:"ID_MAFE_27118326006d3829667a400ad23d5d98";s:6:"String";s:40:"ID_MAFE_27226c864bac7454a8504f8edb15d95b";s:7:"Boolean";s:40:"ID_MAFE_275c7cb3669628b24afd0b6b85d496c8";s:30:"Wait until specified date/time";s:40:"ID_MAFE_2761f61a753144b3a54687195576559f";s:17:"Starting activity";s:40:"ID_MAFE_278c491bdd8a53618c149c4ac790da34";s:8:"Template";s:40:"ID_MAFE_27b3b5b817c0db6365fad09efc964f73";s:16:"Subject by email";s:40:"ID_MAFE_27d508156505dccd6d8df988982031f7";s:11:"drag & drop";s:40:"ID_MAFE_27f237e6b7f96587b6202ff3607ad88a";s:2:"A1";s:40:"ID_MAFE_28105e6dd8ddcc3113983516722d7577";s:40:"Protocol and Hostname, port is optional.";s:40:"ID_MAFE_288aae25bc408055f50c21c991903a44";s:12:"Asynchronous";s:40:"ID_MAFE_28a7de43bb5297bf6122425d52210f93";s:13:"Assigned User";s:40:"ID_MAFE_297b1df0a54c69676de34dc99824d08d";s:128:"

    See http://momentjs.com/docs/#/displaying/format/";s:40:"ID_MAFE_29aa92edf7c883567893849116ff1add";s:22:"Email Event Properties";s:40:"ID_MAFE_29d26bc75ff2e4d5ef3df8bdf6795ee3";s:25:"This is an error message.";s:40:"ID_MAFE_2a19110e3a66ff6cf760d100bcd046a5";s:68:"An unexpected error while deleting the step, please try again later.";s:40:"ID_MAFE_2a1ab298edf0162a3305e599b47cbeee";s:2:"B5";s:40:"ID_MAFE_2a304a1348456ccd2234cd71a81bd338";s:4:"link";s:40:"ID_MAFE_2a37d240713f300cf06d390798b0efad";s:45:"Please, specify a name for the Message Field.";s:40:"ID_MAFE_2a4bb90f555f2f4ce060a28924948fd1";s:41:"Maximum file size (Use zero if unlimited)";s:40:"ID_MAFE_2a5b8b5644c4187548c11f524fe09355";s:15:"OutPut Document";s:40:"ID_MAFE_2a6eaecb26ccc7adbad36a3dd054a82d";s:60:"Are you sure you want to delete the Web Entry configuration?";s:40:"ID_MAFE_2a6f5ddb9d6d57e2d8bdf3f83bb7c0cd";s:55:"There are problems getting the Steps, please try again.";s:40:"ID_MAFE_2aa7a349a072dcb9402f203d0a6f898d";s:29:"No elements found to connect.";s:40:"ID_MAFE_2ad9d63b69c4a10a5cc9cad923133bc4";s:6:"Bottom";s:40:"ID_MAFE_2b30b478acce5ed435bdf80f39de9b1f";s:61:"Please take note of the changes to update your process logic.";s:40:"ID_MAFE_2b30f7950c6f143b5722c4e001bddd26";s:13:"Suggest users";s:40:"ID_MAFE_2b9153e1f3c6ebd7bf7ac1ee168aa7ca";s:14:"__PARAMETERS__";s:40:"ID_MAFE_2bc2de57b27c665244bf4cb8d17f842f";s:124:"Do you want to clear this variable? The following properties are reset: Variable, Data Type, DB Connection, SQL and Options.";s:40:"ID_MAFE_2c4429deb064b2431fb36a8b4f552713";s:67:"It leaving this field in blank, the next user\'s email will be used.";s:40:"ID_MAFE_2d33b0db41ea7a05caec256b28887de2";s:15:"Text Annotation";s:40:"ID_MAFE_2d69cae8f3f13b440c51edced7338699";s:21:"days of week disabled";s:40:"ID_MAFE_2da50ac492a35f56e1317546284fe77a";s:27:"Timer Event saved correctly";s:40:"ID_MAFE_2da6df2dfb6fe5c9542ee11118dce1fa";s:32:"Do you want to delete this file?";s:40:"ID_MAFE_2de42fbb00305f8282310f1b3e10ce9a";s:6:"border";s:40:"ID_MAFE_2e0d4647851b478e8d64b0782bd9a918";s:35:"Select the day(s) of the week below";s:40:"ID_MAFE_2e9226a813ef94f99899581e55940955";s:15:"Insert Variable";s:40:"ID_MAFE_2ec3bb15c10969b54c46121a5164deb6";s:92:"Read more about it here.";s:40:"ID_MAFE_2effa58f13159d138a634233e246713d";s:12:"Content Type";s:40:"ID_MAFE_2f5e2c60c890f5e7b9740fa8e71413c3";s:11:"Marker Type";s:40:"ID_MAFE_2fc027fad20982fe2918b8b7262fc3e5";s:82:"

  • dddd, MMMM Do YYYY, h:mm:ss a >> "Sunday, February 14th 2010, 3:25:50 pm"
  • ";s:40:"ID_MAFE_2fe4167817733fec8e6ba1afddf78f1b";s:11:"Synchronous";s:40:"ID_MAFE_308465ce385e7fe39ed79f3b9f2c4dee";s:14:"Store value in";s:40:"ID_MAFE_308a5146b0818a721c5081d2b1932398";s:14:"is duplicated.";s:40:"ID_MAFE_309a570360b12b43f63266735418715d";s:54:"Max date must be greater than the min and default date";s:40:"ID_MAFE_30a2dae0a135701b862050465b3e4e97";s:71:"Triggers after and before a step are not supported when working offline";s:40:"ID_MAFE_30c40215e6d00c574ca23451003db9b9";s:10:"checkgroup";s:40:"ID_MAFE_3120001274fa32a921770c1b41e6dc0a";s:7:"DETAILS";s:40:"ID_MAFE_313a6a3d25aa041ee3dc3cbd65d4f22b";s:7:"Formula";s:40:"ID_MAFE_313af772d92d01300d5e89512cd93bd0";s:13:"default value";s:40:"ID_MAFE_31d1eacb86fc41c8ba34934923e8b53e";s:22:"Email Account Settings";s:40:"ID_MAFE_31fde7b05ac8952dacf4af8a704074ec";s:7:"Preview";s:40:"ID_MAFE_320bc46e1be50f1379c6fd199c9d64c1";s:34:"Intermediate Receive Message Event";s:40:"ID_MAFE_327094c3c1dfa5775d9da557c57b3c8e";s:13:"Calendar Days";s:40:"ID_MAFE_32e5bfca7823c2dc9de9df3dfbb5a7d4";s:19:"Process Information";s:40:"ID_MAFE_333447ee7f49b1be2504d30e3313fe55";s:12:"Add Variable";s:40:"ID_MAFE_334c4a4c42fdb79d7ebc3e73b517e6f8";s:4:"none";s:40:"ID_MAFE_336816fd752e17593553eda4894e8464";s:17:"Create permission";s:40:"ID_MAFE_33e7ca8872a98fe4b44833054a5ccc3e";s:16:"An email address";s:40:"ID_MAFE_3435b9bbc654ab606ab80f01ca9712a3";s:21:"Execute every Hour(s)";s:40:"ID_MAFE_343e6957be77c6247aa2b8d0deb68bd6";s:3:"Nov";s:40:"ID_MAFE_344a7f427fb765610ef96eb7bce95257";s:6:"Editor";s:40:"ID_MAFE_345d93cb9ade6e353e97750ce1579443";s:10:"SQL Editor";s:40:"ID_MAFE_345ff9170ccdebc764d44f9639ff5587";s:10:"- Select -";s:40:"ID_MAFE_353279c7161c0a9425743a96a9b709ef";s:41:"Execute a trigger when a case is unpaused";s:40:"ID_MAFE_353710177fda5bb1b46e2a779482c52d";s:30:"
  • ddd, hA >> "Sun, 3PM"
  • ";s:40:"ID_MAFE_35be2c1cf2cc489bdb16b678cd73cd78";s:7:"formula";s:40:"ID_MAFE_35c8a5a9109d249216ba5e5df55db3af";s:79:"Form cannot be submitted because file(s) {%%%FILES%%%} (are/is) still uploading";s:40:"ID_MAFE_35f251dbf805f6e532d579044aec1882";s:33:"Input Document saved successfully";s:40:"ID_MAFE_36384a9ea3ec791e6bd4ab6b36f2ff2a";s:6:"Tablet";s:40:"ID_MAFE_36a65bbd12f7586ea1f9b0be4e8848aa";s:11:"HTML Editor";s:40:"ID_MAFE_36c311dcc594c5dfdc66b430a42367c2";s:63:"There are problems updating the routing rule, please try again.";s:40:"ID_MAFE_380c771a0d7fb5ccc706ce59e89b3f26";s:6:"Panel:";s:40:"ID_MAFE_380e92305f89798cc7ff7db6e73b22c6";s:43:"There are problems updating the Loop Marker";s:40:"ID_MAFE_381ba83b537f3a99729bc7c181ee5d23";s:14:"Text to Search";s:40:"ID_MAFE_382b0f5185773fa0f67a8ed8056c7759";s:3:"N/A";s:40:"ID_MAFE_38c4f766faf4ef7214cf68aa1d59a2be";s:48:"There are problems getting the list of triggers.";s:40:"ID_MAFE_38f105ec27a415dcfb1905e038338b44";s:131:"dddSun Mon ... Fri SatddddSunday Monday ... Friday Saturday";s:40:"ID_MAFE_391228d94106d11f9b4d36324423f0ac";s:37:"Please enter a positive integer value";s:40:"ID_MAFE_39b5b27e239f7f9030b5f21d9dd5d7ed";s:35:"Variable for Value Based Assignment";s:40:"ID_MAFE_3a08e2e340ab29fd9263af48193cbf8e";s:9:"Languages";s:40:"ID_MAFE_3a0c8958c0ae72f01636b760b3555ec9";s:11:"Timer Event";s:40:"ID_MAFE_3a17e95bfbc888f592433fb1bb5b5346";s:25:"Create Predefined Trigger";s:40:"ID_MAFE_3a3678eaaa8b058dc89a4c3aba8ff52e";s:24:"Edit Database Connection";s:40:"ID_MAFE_3a8a44fd9eac194fc4578bf937c81674";s:31:"Supported Controls: checkgroup.";s:40:"ID_MAFE_3adbdb3ac060038aa0e6e6c138ef9873";s:8:"Category";s:40:"ID_MAFE_3afd78b28798273ac67a7b9f22619d98";s:13:"DB Connection";s:40:"ID_MAFE_3b1b7e0ca46b70e7acfc1b1e6ff2e3d2";s:5:"icon.";s:40:"ID_MAFE_3b313f1e720672161bfa924e023cf015";s:10:"Title Case";s:40:"ID_MAFE_3b44e8c1da430ff11f9ff3b38a67ac34";s:17:"Enable Grid Lines";s:40:"ID_MAFE_3b563524fdb17b4a86590470d40bef74";s:5:"Media";s:40:"ID_MAFE_3bb055cd21140e7c1b17eeeace227bdb";s:11:"Select Year";s:40:"ID_MAFE_3c8a58a423ed96c806664b1d4e803e2c";s:9:"Data Type";s:40:"ID_MAFE_3cab03c00dbd11bc3569afa0748013f0";s:8:"Inactive";s:40:"ID_MAFE_3cc152ca5e049720eb10e6bf1fa1fa02";s:46:"Error, There are problems removing the element";s:40:"ID_MAFE_3cc6945413a5c64c7f31add6d5211b24";s:24:"to get the function list";s:40:"ID_MAFE_3cd66dde16d60e5dd9dd4a760417c0dc";s:22:"Inclusive (OR) Gateway";s:40:"ID_MAFE_3cdd375252ada77430ba8a2ca01b7332";s:28:"Email Event Edited correctly";s:40:"ID_MAFE_3cfd943f7de9aa2480da0c30735bb031";s:24:"Title of the new trigger";s:40:"ID_MAFE_3d067bedfe2f4677470dd6ccf64d05ed";s:6:"Public";s:40:"ID_MAFE_3d4c07c860afb7fa3a84e62e208d598d";s:44:"Supported Controls: checkbox, radio, hidden.";s:40:"ID_MAFE_3d4cd7a0ec44a80d9784fd6e98529113";s:62:"There are problems saving the assigned user, please try again.";s:40:"ID_MAFE_3d8bb71f323428adfc2812695658672a";s:28:"Trigger deleted successfully";s:40:"ID_MAFE_3d980d5c80cc742a1f68a11b0db188a1";s:24:"Insert an email variable";s:40:"ID_MAFE_3dc0c79ab4ccf1ab2187b4261a4a43b4";s:34:"Output Document saved successfully";s:40:"ID_MAFE_3e661ccd1bd840f47829d2e6dbb5e651";s:28:"required field error message";s:40:"ID_MAFE_3e80ebd582f73299f249afba8ebe7e6b";s:10:"responsive";s:40:"ID_MAFE_3e8f92eb64623f0ecd16d2efcd0acd7e";s:13:"Report Tables";s:40:"ID_MAFE_3edcc5150c225068c9ae501ffe62ceb9";s:16:"Increment Second";s:40:"ID_MAFE_3edf8ca26a1ec14dd6e91dd277ae1de6";s:6:"Origin";s:40:"ID_MAFE_3f60b096843929b02e1a070f57e27584";s:13:"Variable Name";s:40:"ID_MAFE_3f66ca8856f98cde86f7a78e287cd4ba";s:116:"Minutem0 1 ... 58 59mm00 01 ... 58 59";s:40:"ID_MAFE_3fcf026bbfffb63fb24b8de9d0446949";s:5:"April";s:40:"ID_MAFE_40070e1f0867f97db0fa33039fae2063";s:26:"File uploaded successfully";s:40:"ID_MAFE_40227eb4ec6a9d663f53962308a2c706";s:11:"Case Status";s:40:"ID_MAFE_4038f53382d7ec3998b8afbdbba12a47";s:12:"After action";s:40:"ID_MAFE_40400ef0ba4f2702eed9bc929ade269a";s:82:"Drag and drop the process elements that you want to include in the process design.";s:40:"ID_MAFE_4051eb3c690cdbcd9ff5652d04b0ece3";s:19:"Assigned Users List";s:40:"ID_MAFE_4077e0cd2d3b172b040ce4b951aa6895";s:7:"var_uid";s:40:"ID_MAFE_408d314d5281398dcc19911f30e54573";s:23:"File saved successfully";s:40:"ID_MAFE_409c5f8fce900e142f39339ce9765dd6";s:56:"
  • Edit: Allow user to change the control\'s value.
  • ";s:40:"ID_MAFE_40a8ab55460abd5723f028b6bf182071";s:11:"a text here";s:40:"ID_MAFE_41159e627c3a65cf4a9aeba8b762e6d0";s:12:"side by side";s:40:"ID_MAFE_413d93080f0537ab3a0022f80f2d77b5";s:31:"Intermediate Send Message Event";s:40:"ID_MAFE_4184f3327703ed13b197de132142cec0";s:151:"The designer bar displays the process name and is used to control the process view (zoom, full screen view), the export, undo/redo and the save button.";s:40:"ID_MAFE_41ba70891fb6f39327d8ccb9b1dafb84";s:6:"August";s:40:"ID_MAFE_41de6d6cfb8953c021bbe4ba0701c8a1";s:8:"Messages";s:40:"ID_MAFE_41e80c3ce414de15ab19d996f7072429";s:10:"fileupload";s:40:"ID_MAFE_41fffd09332a35491d3bed5a34f91410";s:55:"http://eonasdan.github.io/bootstrap-datetimepicker/";s:40:"ID_MAFE_42184184a95464c63c790acc3a69e564";s:15:"Routing History";s:40:"ID_MAFE_421b47ffd946ca083b65cd668c6b17e6";s:5:"video";s:40:"ID_MAFE_4252b72e6ebcd4d4b4c2e46a786f03d2";s:4:"Zoom";s:40:"ID_MAFE_42728192eb543e8b035df3d040068d3d";s:30:"Description of the new trigger";s:40:"ID_MAFE_42b5e40c0f14c557113865a3aa78b673";s:76:"Insert a SQL query like: SELECT [Key field], [Label field] FROM [Table name]";s:40:"ID_MAFE_431fc30c29fdcdc1980d898a2f65e4e7";s:39:"The user/group was successfully removed";s:40:"ID_MAFE_4346c97778f456ed8a4eed32cff645f0";s:129:"Select an element in the designer to display the quick toolbar with the list of the most used options available for that element.";s:40:"ID_MAFE_4351cfebe4b61d8aa5efa1d020710005";s:4:"View";s:40:"ID_MAFE_4416936991b2db414309b13293402bd0";s:26:"Add at least one variable.";s:40:"ID_MAFE_44314d568caee793c8d7753a816d6e02";s:51:"An error occurred while retrieving the access token";s:40:"ID_MAFE_4466476a945cb091a8f4252b96f140d7";s:7:"suggest";s:40:"ID_MAFE_44749712dbec183e983dcd78a7736c41";s:4:"Date";s:40:"ID_MAFE_4498e6305304230bc7f2600f5d1b1d84";s:10:"Mail (PHP)";s:40:"ID_MAFE_449c6d9f5ba15789700b2c8ea380e3fa";s:14:"Untitled label";s:40:"ID_MAFE_44fdec47036f482b68b748f9d786801b";s:4:"days";s:40:"ID_MAFE_451f887bdbe0c83be42cbfffecedb2f0";s:53:"Select the date and time for case(s) to be initiated.";s:40:"ID_MAFE_4621590946adadc2f24119e194bd70a6";s:20:"Parallel Marker Type";s:40:"ID_MAFE_463ab1bc075f498d1aa03b9bc062efa3";s:12:"Element Type";s:40:"ID_MAFE_473293d536577cd3fa417dab23b7543c";s:38:"Assign Users and Groups as Supervisors";s:40:"ID_MAFE_47a23c652a2e04c0963f15326ebef11a";s:11:"Go to today";s:40:"ID_MAFE_47b5269b1f60dcd4d18f0cc5f17a7c21";s:14:"Email variable";s:40:"ID_MAFE_47c14840d8e15331fa420b9b2f757cd9";s:8:"Variable";s:40:"ID_MAFE_47cf1efb576e40705e0a45ab011f053d";s:13:"Import Error:";s:40:"ID_MAFE_47f9082fc380ca62d531096aa1d110f1";s:7:"Private";s:40:"ID_MAFE_482c1abf967563c57d67409476406038";s:22:"HTML2PDF (Old Version)";s:40:"ID_MAFE_48d4ff84aa02441adf2d88a294474f54";s:8:"Dynaform";s:40:"ID_MAFE_48e3d5f66961b621c78f709afcd7d437";s:17:"Download the file";s:40:"ID_MAFE_4945d3af342647ff517043edb7b3ee92";s:12:"RETURN VALUE";s:40:"ID_MAFE_4965d0bc5e97784d1bb1c4b054523678";s:7:"Handler";s:40:"ID_MAFE_497031794414a552435f90151ac3b54b";s:6:"Object";s:40:"ID_MAFE_497f247967ea9a295c48effdc025c1a1";s:17:"Email From Format";s:40:"ID_MAFE_4989a483239b227710aa6f4501b5d3a1";s:50:"Allow users to change the task duration in runtime";s:40:"ID_MAFE_4994a8ffeba4ac3140beb89e8d41f174";s:8:"Language";s:40:"ID_MAFE_49ab5aaeb16e40d2787f6cc6532c99a3";s:15:"Test Connection";s:40:"ID_MAFE_49b4172127e6e369ab6f4e304a7d743b";s:12:"Edit Process";s:40:"ID_MAFE_49bfe61a6dfb1b2eb694d2b5f2ebf34f";s:18:"Business Rule Task";s:40:"ID_MAFE_49ee3087348e8d44e1feda1917443987";s:4:"Name";s:40:"ID_MAFE_4ae66c12297cc8487a9cddf8e9d99691";s:13:"Email account";s:40:"ID_MAFE_4b0786e5eb9e8b54529708004fd31b21";s:125:"DDDD001 002 ... 364 365Day of Weekd0 1 ... 5 6";s:40:"ID_MAFE_4b1f36581927bba38500601a5bf3ede8";s:11:"Script Task";s:40:"ID_MAFE_4b420957db489cc5aff8bee58d07b8b1";s:52:"The row can not be removed, because is being edited.";s:40:"ID_MAFE_4b441851f94a139dc89c37f6c03be611";s:11:"Pick Minute";s:40:"ID_MAFE_4b7c4e2a902673b967b1d63f9a4bed74";s:11:"Condition *";s:40:"ID_MAFE_4ba21d7a3d8a97aa04e405f9caf3ab3b";s:17:"Capitalize phrase";s:40:"ID_MAFE_4bb78cf31aa7936d4031f8de1481d308";s:18:"The label is empty";s:40:"ID_MAFE_4bc7766d599f3ab0ce24ad6cb0df9539";s:10:"View users";s:40:"ID_MAFE_4bcbe7caab53fdc2626018b5ad22bb4b";s:10:"Data Empty";s:40:"ID_MAFE_4bf9bb3c160bb69f441724d81671fd72";s:10:"max length";s:40:"ID_MAFE_4c021e6782546f701d2c9a15f3be1013";s:51:"
    DB connections: Connect to external databases.";s:40:"ID_MAFE_4c2a8fe7eaf24721cc7a9f0175115bd4";s:7:"Message";s:40:"ID_MAFE_4c3880bb027f159e801041b1021e88e8";s:6:"Method";s:40:"ID_MAFE_4c524bf462d270df1443cd80bf70e5de";s:14:"Input Document";s:40:"ID_MAFE_4d0c42523f93e7ce5f25230010a3aa00";s:39:"The parameter maxlength is not a number";s:40:"ID_MAFE_4d287ea3f5618dc027b8de8bba546ef0";s:16:"Close the picker";s:40:"ID_MAFE_4d34f1097f6c8b9cee28bca8b78bbee9";s:10:"Start date";s:40:"ID_MAFE_4d3d769b812b6faa6b76e1a8abaece2d";s:6:"Active";s:40:"ID_MAFE_4e357e7345689cff230335282b201a11";s:13:"Enable camera";s:40:"ID_MAFE_4e920535c6e1ecc93e20705ddaab8e55";s:47:"object with all or some of the parameters above";s:40:"ID_MAFE_4ed131033015697f970660a0cb48ff1e";s:15:"Create variable";s:40:"ID_MAFE_4f67fe16b274bf31a67539fbedb8f8d3";s:13:"Document Type";s:40:"ID_MAFE_4f92f36c19f0ad317fb71d493a18caac";s:46:"
  • Parent: Inherit the mode from parent.
  • ";s:40:"ID_MAFE_50913568f681474c32d3f1b4a9fafdf1";s:12:"Case Tracker";s:40:"ID_MAFE_50a9ec1685a51015e4509529cb939081";s:13:"Generate Link";s:40:"ID_MAFE_50b5d3dcade1bb32254e0f8d54c493de";s:49:"Please insert variable before adding to the list.";s:40:"ID_MAFE_5174307b9097d47b1a506bc8171c2bb3";s:7:"textbox";s:40:"ID_MAFE_5174d1309f275ba6f275db3af9eb3e18";s:4:"Grid";s:40:"ID_MAFE_5199decbb00b9a606e30f3ddfc951f3f";s:20:"Database Connections";s:40:"ID_MAFE_520d0db389f362bf79ef56ca0af3dcab";s:6:"Format";s:40:"ID_MAFE_521019040a0f4f7773357aa6bc22180b";s:5:"DRAFT";s:40:"ID_MAFE_5308fcbb3c60d1cb24e45795bf9a0b7e";s:15:"End Email Event";s:40:"ID_MAFE_531bc0580529d4698f8a6e44a6b3b8ff";s:62:"There are problems updating the Script Task, please try again.";s:40:"ID_MAFE_5380075c9a443c803097bc250428ed60";s:21:"- Select a Dynaform -";s:40:"ID_MAFE_53c54b843bcd76e000cda5b85d0f5f48";s:47:"Process Design Access: Public / Private (Owner)";s:40:"ID_MAFE_53d22bb05078d53466b570517a7afcc8";s:27:"Email Event saved correctly";s:40:"ID_MAFE_53fd42622e1c404f5bfced3a7dad0fe1";s:22:"Select Connection Type";s:40:"ID_MAFE_5414141a124f3f7a55ae93ed61786092";s:14:"Export Diagram";s:40:"ID_MAFE_5436bdb572535c577a1a0553ed1d05f9";s:13:"Invalid file:";s:40:"ID_MAFE_545106eebc5cfec4095c8903a3e5bea9";s:9:"Next Task";s:40:"ID_MAFE_548cf4aecea6746070f800742bc271b8";s:126:"Grid: drag & drop controls.
    Supports: textbox, textarea, dropdown, checkbox, datetime, suggest, hidden, link, multiplefile.";s:40:"ID_MAFE_5493fda247f138a0b3fc0d493b2906e5";s:9:"Web Entry";s:40:"ID_MAFE_54ca84a794888fe8d92834787dfa935a";s:7:"columns";s:40:"ID_MAFE_553115b041c527b43818daf51048f468";s:78:"Set the date picker to this date by default
    (in YYYY-MM-DD HH:MM:SS format)";s:40:"ID_MAFE_5571b942d21d51f7ee45424b811a2c03";s:16:"Insert file name";s:40:"ID_MAFE_5582ead0a9ee86a54da29c20caee6f57";s:16:"Force user login";s:40:"ID_MAFE_55f6611cb342565cf0f5002400f53a95";s:10:"Annotation";s:40:"ID_MAFE_5651b7822a684ac4ae3b1b1690e147c0";s:10:"A0Oversize";s:40:"ID_MAFE_56a1bf7a363021c1d31dd8338428cc03";s:14:"Custom Trigger";s:40:"ID_MAFE_56b77519470d41f8b2da598f1021508e";s:8:"max date";s:40:"ID_MAFE_56dbee09e1c297e9269b967d3f1e8af8";s:60:"There are problems updating the Web Entry, please try again.";s:40:"ID_MAFE_570b43e00e6db926c60b0eeee0a275b4";s:38:"Database connection saved successfully";s:40:"ID_MAFE_572405a2f96ccc48f34bc51eada3cec2";s:54:"Min date must be lesser than the max and default date.";s:40:"ID_MAFE_572d795e2d044f895cc511e5c05030e5";s:9:"INCLUSIVE";s:40:"ID_MAFE_5792315f09a5d54fb7e3d066672b507f";s:7:"Tuesday";s:40:"ID_MAFE_57c095deeaf026f8022c485e054135c7";s:47:"Are you sure you want to delete the "variable"?";s:40:"ID_MAFE_57c9b9c47ca1d9e07f7a39184ce0173d";s:5:"Lasso";s:40:"ID_MAFE_57cf1e6eafb6fe55898b382184708db6";s:83:"The email can be a string or a variable (@@myEmail), comma separated list of emails";s:40:"ID_MAFE_585db2c92dc89eef837f07b5791c5536";s:4:"Edit";s:40:"ID_MAFE_5896ecd1d83886eb157d9cbfb988f1da";s:15:"protected value";s:40:"ID_MAFE_58bde56db8d9372db8a2f2ed6e782c9b";s:10:"Reports to";s:40:"ID_MAFE_58ccfb0ba3c854b1c759469193bca86f";s:16:"Exit full screen";s:40:"ID_MAFE_58e2bacbf6c2f5bb444da626206f53dd";s:11:"Undo Action";s:40:"ID_MAFE_58fdae208be066b01eab48307238b949";s:13:"-- Default --";s:40:"ID_MAFE_594be08882c8e9d5efb9eeb62f303744";s:3:"Oct";s:40:"ID_MAFE_599bc72a2e8309cf0ac21c5076bea02b";s:13:"Parallel Task";s:40:"ID_MAFE_599dcce2998a6b40b1e38e8c6006cb0a";s:4:"type";s:40:"ID_MAFE_59d0ce20b062e00466be1ad296c22407";s:13:"data variable";s:40:"ID_MAFE_59df5e8802a2330f385e440ebeba70d8";s:22:"Value Based Assignment";s:40:"ID_MAFE_5a0e2c54b27b178c89d58a530b4fa334";s:54:"There was an error when populating the values of field";s:40:"ID_MAFE_5a8dddb3b99ceb252ce638872cd2f506";s:27:"PHP pages with Web Services";s:40:"ID_MAFE_5ac8eb48637bb804f135b488493ae065";s:49:"Please configure script to end with error status.";s:40:"ID_MAFE_5ad234cb2cde4266195252a23ca7d84e";s:8:"Property";s:40:"ID_MAFE_5ae16cbb41ab1e74b5d58a96fed59789";s:13:"Screenshot800";s:40:"ID_MAFE_5af874093e5efcbaeb4377b84c5f2ec5";s:6:"Wizard";s:40:"ID_MAFE_5b37be2f6e6fc0bc307e3146980709ea";s:26:"Please enter only CSS code";s:40:"ID_MAFE_5b4b59f272d282c31a55f4cd8839ee2c";s:13:"Results Limit";s:40:"ID_MAFE_5b5ebb466ae75a2ca15dbd1c92d64830";s:27:"DynaForm saved successfully";s:40:"ID_MAFE_5b776d9c69a7ccfe2b8565c94e21a853";s:127:"YearYY70 71 ... 29 30YYYY1970 1971 ... 2029 2030";s:40:"ID_MAFE_5c2defa646a21de1595fe6d06c63067e";s:16:"Task in Progress";s:40:"ID_MAFE_5caa3749019003c9b6b4c69f75186a0b";s:72:"When the form is submitted a new case is created with this user account.";s:40:"ID_MAFE_5cdf3f8e0de1cb63a3cfb8bec5a5db9d";s:70:"There are problems getting the triggers wizard list, please try again.";s:40:"ID_MAFE_5d085d8447bc84ead2b9af188a8e4f0c";s:13:"Before action";s:40:"ID_MAFE_5d89fe1813446d4b6fb1586b0287f788";s:27:"Step assigned successfully.";s:40:"ID_MAFE_5da01bc260f45532692827ab75ae3076";s:13:"Variable type";s:40:"ID_MAFE_5da618e8e4b89c66fe86e32cdafde142";s:4:"From";s:40:"ID_MAFE_5dbf17e4c8ca8f1979b7b4b3abaffe32";s:12:"Edit process";s:40:"ID_MAFE_5dd14645551594126bf6409543c54796";s:19:"Supported Controls:";s:40:"ID_MAFE_5e12c7aba4f3b65f84edc650d00b8884";s:54:"Default: false
    On show, will set the picker to:
    ";s:40:"ID_MAFE_5e4b419093a8f5df11422452a9219b07";s:19:"Invalid Connections";s:40:"ID_MAFE_5e57481a16f324775782453d7e4de54f";s:25:"array of numbers from 0-6";s:40:"ID_MAFE_5e9df908eafa83cb51c0a3720e8348c7";s:9:"Check All";s:40:"ID_MAFE_5ef0c737746fae2ca90e66c39333f8f6";s:6:"Errors";s:40:"ID_MAFE_5efb244c6b960624bc7180fe96b84d24";s:18:"The Dynaform title";s:40:"ID_MAFE_5f325fce1a3d2476550eb380e18b286a";s:22:"Redirect to custom URL";s:40:"ID_MAFE_5f972036fb924e92ecbe7e47a5f4d7a5";s:46:"Are you sure you want to discard your changes?";s:40:"ID_MAFE_5fb63579fc981698f97d55bfecb213ea";s:4:"Copy";s:40:"ID_MAFE_6059b81ef1094afb4e30f44457df5b28";s:27:"The variable is being used.";s:40:"ID_MAFE_6060f601471eb3f733ec222180fff382";s:19:"Delete Routing Rule";s:40:"ID_MAFE_6068a5925e0bfe4e66a6be47d4abbd06";s:42:"Please configure script to terminate case.";s:40:"ID_MAFE_6068f02bcb9514fe40e67d04c7647d56";s:26:"Please enter a valid hour.";s:40:"ID_MAFE_60a4ec92b73f76abf1b8f50973547478";s:17:"title (mouseover)";s:40:"ID_MAFE_60aaf44d4b562252c04db7f98497e9aa";s:4:"Port";s:40:"ID_MAFE_60cf550c40960532dfd002fcfbc6725a";s:63:"There are problems getting the Triggers list, please try again.";s:40:"ID_MAFE_611ebad77c16b1edc01a8e4962094900";s:9:"All Tasks";s:40:"ID_MAFE_6126329d245973d0025f07d8d4f3c3ba";s:73:"Allows date selection before this date
    (in YYYY-MM-DD HH:MM:SS format)";s:40:"ID_MAFE_61e80a8ed0aff262daa5800330e133f3";s:12:"Service Task";s:40:"ID_MAFE_6238fa95a408af9c5598d0f45d923b18";s:49:"Please configure cron to wait for time condition.";s:40:"ID_MAFE_628b7db04235f228d40adc671413a8c8";s:3:"day";s:40:"ID_MAFE_62902641c38f3a4a8eb3212454360e24";s:6:"Minute";s:40:"ID_MAFE_62d98b10558da9a7676b92258717a7a1";s:9:"End Event";s:40:"ID_MAFE_630f6dc397fe74e52d5189e2c80f282b";s:12:"Back to list";s:40:"ID_MAFE_631aea77fcb10698585c8ae77aac3800";s:13:"External Step";s:40:"ID_MAFE_63401535ae5b2457b9c4471637ba8308";s:102:"In the design area you can drop the process elements and order or arrange them to design your process.";s:40:"ID_MAFE_635f2145a06da2d4ce2c355bf94da6ed";s:13:"Previous Year";s:40:"ID_MAFE_6384750fb02541d64a749b1a9296a43f";s:17:"Condition Trigger";s:40:"ID_MAFE_6394d816bfb4220289a6f4b29cfb1834";s:8:"textarea";s:40:"ID_MAFE_63a3168661b8fec46d2e90c9e0569cad";s:14:"Default: false";s:40:"ID_MAFE_63c0184d8c2398ceeaee276b9a140d09";s:11:"Email Event";s:40:"ID_MAFE_6400a922c9482253339a1cfc2791c31b";s:38:"By clicking on the generated file link";s:40:"ID_MAFE_640eaa8954e206c0dc9a4da71619537d";s:11:"Case Labels";s:40:"ID_MAFE_6421c440fabe27193fad6710c33cf7c7";s:19:"There are no items.";s:40:"ID_MAFE_6450242531912981c3683cae88a32a66";s:5:"Forms";s:40:"ID_MAFE_64684d8a069264ece1465e64cbe2a189";s:42:"Enter a Protocol and Hostname valid value.";s:40:"ID_MAFE_64959029acf7b169f8d972637b75b49e";s:10:"No records";s:40:"ID_MAFE_650be61892bf690026089544abbd9d26";s:4:"Mode";s:40:"ID_MAFE_6547600c780b3b6483c2d5d758666c3f";s:32:"Start Timer updated successfully";s:40:"ID_MAFE_656bd5e7964412e1954a5cb83cf0e31e";s:11:"Single HTML";s:40:"ID_MAFE_657f8b8da628ef83cf69101b6817150a";s:4:"help";s:40:"ID_MAFE_6593d7b12fd418cdb35bbf438de72f66";s:2:"A3";s:40:"ID_MAFE_659e59f062c75f81259d22786d6c44aa";s:8:"February";s:40:"ID_MAFE_65c3b5956adaf7365a8857abb7ddd26b";s:40:"Execute a trigger when a case is deleted";s:40:"ID_MAFE_6606bf86257a99bf75f2d6360e92e0df";s:40:"Please press the "Generate Link" button.";s:40:"ID_MAFE_660cfca112471f69246e9942f5e8afd1";s:19:"Store email body in";s:40:"ID_MAFE_66285b36f894a5439af5a98e3e1a36d2";s:15:"Process Objects";s:40:"ID_MAFE_662f707d5491e9bce8238a6c0be92190";s:6:"hidden";s:40:"ID_MAFE_66b4af3ab39216f5ecddcb0613abfe04";s:28:"Select Dynaform use in case.";s:40:"ID_MAFE_671aa2e8cc2c2435cf509fa4a3baf26c";s:9:"Executive";s:40:"ID_MAFE_67dab01827a619fdbcb137f18a83feb5";s:14:"End of process";s:40:"ID_MAFE_67daf92c833c41c95db874e18fcb2786";s:11:"description";s:40:"ID_MAFE_685a0de987f44b7f5d08be4de212bab2";s:18:"Insert a condition";s:40:"ID_MAFE_686e697538050e4664636337cc3b834f";s:6:"Create";s:40:"ID_MAFE_6887c495a8d963934af15a912151ac38";s:13:"max file size";s:40:"ID_MAFE_688937ccaf2a2b0c45a1c9bbba09698d";s:4:"June";s:40:"ID_MAFE_689202409e48743b914713f96d93947c";s:5:"Value";s:40:"ID_MAFE_68934a3e9455fa72420237eb05902327";s:5:"false";s:40:"ID_MAFE_68be06f16b9b17f3741cd3846a2d9190";s:9:"Display :";s:40:"ID_MAFE_690605a78c5b7459462f97e6915929d9";s:22:"Sub-process Properties";s:40:"ID_MAFE_6927a3a7218a3195858411433ec20a21";s:7:"average";s:40:"ID_MAFE_692f9836dcf2a0314f415c873b58e8c4";s:40:"The routing rule to "{0}" already exists";s:40:"ID_MAFE_696e6fecf8df306ffce7d776b175e9b9";s:23:"Intermediate Event Type";s:40:"ID_MAFE_69bf4327261159c0bfd29ec31b47dff3";s:16:"Start Event Type";s:40:"ID_MAFE_69f916b54b947775802a817788f74b52";s:30:"New Trigger saved successfully";s:40:"ID_MAFE_6a26f548831e6a8c26bfbbd9f6ec61e0";s:4:"Help";s:40:"ID_MAFE_6a3f2778916c9a66a69d93ebbebd3345";s:11:"Open Editor";s:40:"ID_MAFE_6a7e73161603d87b26a8eac49dab0a9c";s:5:"Hours";s:40:"ID_MAFE_6a99c575ab87f8c7d1ed1e52e7e349ce";s:11:"placeholder";s:40:"ID_MAFE_6adf97f83acf6453d4a6a4b1070f3754";s:4:"None";s:40:"ID_MAFE_6aeef5fece4bc801c9892670bf02117d";s:17:"Start Timer Event";s:40:"ID_MAFE_6b69ae94c0b0bb433fb14f52f2f623b2";s:17:"Inclusive Gateway";s:40:"ID_MAFE_6bc9a39dbeaa2c99c7d5d81c58a9b5fb";s:27:"Assignee saved successfully";s:40:"ID_MAFE_6be8bfc7078373aa92b3a862b5253e7e";s:15:"Mobile controls";s:40:"ID_MAFE_6c24f6923944d3f9d84bcf924661abff";s:21:"New variables created";s:40:"ID_MAFE_6c25e6a6da95b3d583c6ec4c3f82ed4d";s:6:"Weekly";s:40:"ID_MAFE_6cae1a8108be3aec1aa792644c69c190";s:20:"Information Required";s:40:"ID_MAFE_6cb85fb9933f1990eaa1dc7619c84233";s:10:"Data Store";s:40:"ID_MAFE_6d7215c4b3bc4716d026ac46c6d9ae64";s:3:"Apr";s:40:"ID_MAFE_6e51ca3efb50c3fa4e7eb7fb75cba556";s:15:"Message content";s:40:"ID_MAFE_6e554a6c35c9b142ea806751d85818fa";s:12:"Message Type";s:40:"ID_MAFE_6e599f7a2a9186d391be4537f105be98";s:6:"Fourth";s:40:"ID_MAFE_6e5f5bbf51336918feac69b89e96f6e7";s:9:"UPPERCASE";s:40:"ID_MAFE_6f7e4a2c4bf789e191bcd67e34aae75d";s:14:"Owner Password";s:40:"ID_MAFE_6f8522e0610541f1ef215a22ffa66ff6";s:6:"Monday";s:40:"ID_MAFE_6ff9dd0d34f65181173c1e4bc39939de";s:9:"Selection";s:40:"ID_MAFE_6fff14365ddc2513ed26053e4b7161d0";s:16:"Assignment Rules";s:40:"ID_MAFE_70225f5038f2c7cb69db4656162a6fbd";s:25:"File deleted successfully";s:40:"ID_MAFE_707914adb6ec5350ab99a6e8d5da050a";s:17:"show today button";s:40:"ID_MAFE_7079c72c21415131774625ba1d64f4b0";s:9:"Anonymous";s:40:"ID_MAFE_70d9be9b139893aa6c69b5e77e614311";s:7:"Confirm";s:40:"ID_MAFE_7106cb2df5011f1eddfd5c67b3c84f0f";s:27:"Variable saved successfully";s:40:"ID_MAFE_713aecbe2f5f5523ebccad6740dc1fc7";s:8:"DynaForm";s:40:"ID_MAFE_714a04bc58e64a19344df22801f2f5b2";s:11:"View groups";s:40:"ID_MAFE_714b68ca17408b57ef4b48b30f390dcd";s:9:"Pick Hour";s:40:"ID_MAFE_716de874a0d74f25c0aa8c444c3a7539";s:6:"Prefix";s:40:"ID_MAFE_716f6b30598ba30945d84485e61c1027";s:5:"close";s:40:"ID_MAFE_71707d31908dc87d64747c61247db5f3";s:77:"An unexpected error while deleting the DB Connection, please try again later.";s:40:"ID_MAFE_718bf2c47ea34a12a3c4cb559ba0fbd3";s:32:"Input Document edited correctly.";s:40:"ID_MAFE_719430f5290466e7920b07175af870de";s:146:"The process definition that you are trying to import contains BPMN elements that are not supported in ProcessMaker. Please try with other process.";s:40:"ID_MAFE_7208f9c293aca2d9a81fb9dc71229ee7";s:29:"Properties saved successfully";s:40:"ID_MAFE_72116971e25c9b2e7926c62a5bacb915";s:17:"Error Update File";s:40:"ID_MAFE_725255d7ccc0cf426c1da6abe0afe7e4";s:3:"SDV";s:40:"ID_MAFE_728055b9c636bd86e1848c06f82be906";s:85:"The process objects are used to add execution features to the current process design.";s:40:"ID_MAFE_72d6d7a1885885bb55a565fd1070581a";s:6:"Import";s:40:"ID_MAFE_7308cd3156257f5139f5a76d3cace070";s:72:"An unexpected error while assigning the trigger, please try again later.";s:40:"ID_MAFE_730b728761d083abb3b63e7435f34629";s:69:"The form cannot be saved, please wait until all the fields are loaded";s:40:"ID_MAFE_7351dffefed9ebab76b3bd34aa6f755e";s:15:"Output Document";s:40:"ID_MAFE_736fda6b62eaca111776a53611ef2c92";s:16:"Increment Minute";s:40:"ID_MAFE_73c146408e22128ca6a56f748ad0da66";s:167:"Unix TimestampX1360013296Unix Millisecond Timestampx1360013296123";s:40:"ID_MAFE_73cacd9554a835ad196092bf378f66c3";s:31:"array of [date, moment, string]";s:40:"ID_MAFE_73e27bc50aef21f6770190b3a2702123";s:24:"Error value: Day: 0 - 31";s:40:"ID_MAFE_7436f942d5ea836cb84f1bb2527d8286";s:5:"month";s:40:"ID_MAFE_7469a286259799e5b37e5db9296f00b3";s:3:"YES";s:40:"ID_MAFE_747d20a5df7b186bf5bbd0c7b079b0bc";s:56:"remove the files from the form or upload the files again";s:40:"ID_MAFE_75146ae072f64a82285802a05e9de9c5";s:54:"This form contains deprecated controls marked with the";s:40:"ID_MAFE_755c1cdb25ce0b28166932338fc860d8";s:44:"End Event: End the execution of the process.";s:40:"ID_MAFE_75906a4caccffa8417f46280958ca103";s:30:"Web Entry updated successfully";s:40:"ID_MAFE_75a7511c1d369ec0a4b82d76b1627a36";s:8:"col-span";s:40:"ID_MAFE_75aeb98e5241592ad6a6c2c4c78a16ef";s:5:"years";s:40:"ID_MAFE_75f470a662481c10dda96968bbeb6d62";s:14:"Export Process";s:40:"ID_MAFE_769cb50c95fd3a43c659aa73aba99e5b";s:6:"Hourly";s:40:"ID_MAFE_76d5c10546065f2b71f8d0bfd242ebf5";s:53:"Diverging Gateway must have an incoming sequence flow";s:40:"ID_MAFE_78463a384a5aa4fad5fa73e2f506ecfc";s:7:"English";s:40:"ID_MAFE_7851010fa7f90ebe0c2e62a772dc009a";s:86:"Intermediate Event: Used to define an event that happens in the middle of the process.";s:40:"ID_MAFE_7869eef58448eb45b15a15ff1913887f";s:11:"Sub-process";s:40:"ID_MAFE_786c4135070aa1910d2f4ac8b2253235";s:7:"Routing";s:40:"ID_MAFE_78805a221a988e79ef3f42d7c5bfd418";s:5:"image";s:40:"ID_MAFE_788287625aa640447c5d9fff50644915";s:19:"Insert a table name";s:40:"ID_MAFE_78972d78128699c39ce214e712bd9b03";s:22:"Related Input Document";s:40:"ID_MAFE_78ae6f0cd191d25147e252dc54768238";s:8:"Thursday";s:40:"ID_MAFE_78e981599281c16fe016b55b136edf5f";s:6:"Got it";s:40:"ID_MAFE_7916b6aa41d5ad862bfd15786f608ef9";s:16:"Add Routing Rule";s:40:"ID_MAFE_7917f0a4bc9e0d07acf8cad570e5f68f";s:20:"Dynaform Information";s:40:"ID_MAFE_7964c7a971166b4525713e1885ca4cc3";s:37:"
    Dynaforms: Create dynamic forms.";s:40:"ID_MAFE_796932652e81946789e875a9998ac1fb";s:23:"Case Tracker Properties";s:40:"ID_MAFE_796c163589f295373e171842f37265d5";s:9:"Wednesday";s:40:"ID_MAFE_79e3176fd19afed33afea47570b3ddde";s:47:"Task: Add to include an action in your process.";s:40:"ID_MAFE_79e6f4dd5b0c58b1357997d5f85b65bb";s:5:"TCPDF";s:40:"ID_MAFE_7a21a691b5d03d92a29b79bbeecf706e";s:14:"Custom actions";s:40:"ID_MAFE_7a48ae1b7387f8a8159c488fbd850021";s:3:"Doc";s:40:"ID_MAFE_7a7651c80ec69d157840d517bc263f97";s:20:"File name is invalid";s:40:"ID_MAFE_7a9e2a30e8e7b5f54f7590b1417a8573";s:14:"Black Box Pool";s:40:"ID_MAFE_7aed506b0364be3a144ccb63ceb7b704";s:44:"Pool: Place each process in a separate pool.";s:40:"ID_MAFE_7b7a4cc675a7dec4f33f0554209f1be9";s:14:"Black Box Pool";s:40:"ID_MAFE_7bf7a32fd5dfdd1bdbd08a2360b6c72f";s:11:"Supervisors";s:40:"ID_MAFE_7bfa30721c5e726ff17e3f972237a82c";s:6:"Engine";s:40:"ID_MAFE_7bfcadb5535fe8aad5032762b7bfe159";s:5:"After";s:40:"ID_MAFE_7c1f2a2d99328c41ac8c94a5871f2895";s:20:"- Select a trigger -";s:40:"ID_MAFE_7c3c9ae5b8a82a715f5e606256560190";s:17:"End Message Event";s:40:"ID_MAFE_7c9eed3b37ce19ac4a965a1e20b27b7b";s:23:"Exclusive (XOR) Gateway";s:40:"ID_MAFE_7cdf4ad90037202e551d5bd8ffa7c64b";s:15:"Create Variable";s:40:"ID_MAFE_7ce6b2286a5396e614b8484105d277e0";s:3:"Mar";s:40:"ID_MAFE_7cfa673ab5fa815bb71b9950b8085e7e";s:16:"Sub-Process name";s:40:"ID_MAFE_7d693ac1022a2b1da7faa568a9273367";s:26:"Create Database Connection";s:40:"ID_MAFE_7d73db163473796198dec30144f711e3";s:12:"Next Century";s:40:"ID_MAFE_7dce122004969d56ae2e0245cb754d35";s:4:"Edit";s:40:"ID_MAFE_7df96b18c230f90ada0a9e2307226338";s:9:"Templates";s:40:"ID_MAFE_7e696c3a9460470397eba473a2072210";s:13:"external libs";s:40:"ID_MAFE_7e823b37564da492ca1629b4732289a8";s:8:"November";s:40:"ID_MAFE_7e8ad464ec9fa062e514fd034e6ea7a1";s:47:"There are problems loading the process objects.";s:40:"ID_MAFE_7ee5b3669b4120f0b045c2d52a502fe6";s:7:"Wizzard";s:40:"ID_MAFE_7f05a430b7c47d90cae34c9bef42060b";s:68:"Do you want to clear? All your changes will be lost if you clear it.";s:40:"ID_MAFE_7fa67ad3c1eade92cef07ff53f6ed2f5";s:20:"Insert a description";s:40:"ID_MAFE_7fb55ed0b7a30342ba6da306428cae04";s:5:"First";s:40:"ID_MAFE_7fb9ebbfd610593e7fbe1c7067039ac5";s:18:"Invalid operation.";s:40:"ID_MAFE_7fdb996b58affc6fdabafed35efec939";s:13:"Task duration";s:40:"ID_MAFE_7fe21f3fc9c8ccd6a50eede1b7536ef2";s:45:"Are you sure you want to delete this element?";s:40:"ID_MAFE_80038ba1c7711ab8f120940b59e85dc2";s:25:"Insert a subject variable";s:40:"ID_MAFE_801ab24683a4a8c433c6eb40c48bcd9d";s:8:"Download";s:40:"ID_MAFE_80582834244e4d1f06860c1a18062667";s:135:"Day of YearDDD1 2 ... 364 365DDDo1st 2nd ... 364th 365th";s:40:"ID_MAFE_8061e4236e0f5d816ccfb3684a1e279c";s:63:"There are problems updating the Case Tracker, please try again.";s:40:"ID_MAFE_80896219739fe46ae6982d3ac855a5ad";s:45:"Please configure cron to wait for time event.";s:40:"ID_MAFE_80ffff123555bd5173345bc8f144edeb";s:15:"Clear selection";s:40:"ID_MAFE_812a48ba719daeda82e4da8e812d426c";s:10:"Custom URL";s:40:"ID_MAFE_813f078c7fbc03a222410f48f74a68c4";s:24:"Intermediate Email Event";s:40:"ID_MAFE_815b565aff7fbfe8db5eb2573677e9a4";s:46:"SubProcess must have an incoming sequence flow";s:40:"ID_MAFE_815dff01257e5ef182b25d4c1ef0a7a0";s:9:"Landscape";s:40:"ID_MAFE_8184d9b3e9184c68f8687e9a2adb764e";s:13:"Open the file";s:40:"ID_MAFE_81a5579a3eb984a82f9071e2e98e5839";s:37:"Do you want to delete this Key Value?";s:40:"ID_MAFE_81a7427163958378a4181ae66e8e2b0c";s:7:"Save as";s:40:"ID_MAFE_8203af436c88713cf6853998fb45e8df";s:14:"calendar weeks";s:40:"ID_MAFE_82331503174acbae012b2004f6431fa5";s:8:"December";s:40:"ID_MAFE_823a38edcd60271ed5106469ce7de36a";s:9:"End date:";s:40:"ID_MAFE_823e3d309f271d17abda0806debebd13";s:17:"Enable versioning";s:40:"ID_MAFE_825689fed4e8cd85dbc5beedf98feec0";s:13:"Database Name";s:40:"ID_MAFE_8265a4157a2febe0b6faa43345c61652";s:9:"Next Year";s:40:"ID_MAFE_8292553558a75e672bc62e5a84244c82";s:5:"Folio";s:40:"ID_MAFE_83482d97257d0242d1f259eb5d34a9f9";s:19:"Cyclical Assignment";s:40:"ID_MAFE_84ae11ae520a036da288ca8a0acc89b1";s:11:"New Trigger";s:40:"ID_MAFE_84cdc76cabf41bd7c961f6ab12f117d8";s:4:"year";s:40:"ID_MAFE_84f6ae383a4278397861eb8c783fe1d8";s:22:"Export Process Objects";s:40:"ID_MAFE_84ff23e034dfdf2b03ed32a46c01b3a1";s:8:"Triggers";s:40:"ID_MAFE_8512ae7d57b1396273f76fe6ed341a23";s:8:"language";s:40:"ID_MAFE_853ca16bda4f3d303e70e48db81c17c6";s:10:"Smartphone";s:40:"ID_MAFE_854f4a84f44dfa5ea4ad4b0bb953bc49";s:12:"Validate Now";s:40:"ID_MAFE_85a2bbe801286ff44a6c4b1a4a4e9bc9";s:13:"Select Decade";s:40:"ID_MAFE_85cc96b9ef52490be95df14539d47a39";s:46:"SubProcess must have an outgoing sequence flow";s:40:"ID_MAFE_86266ee937d97f812a8e57d22b62ee29";s:5:"reset";s:40:"ID_MAFE_8628cd75ef458409e7f6bfdc4835bf64";s:12:"" is invalid";s:40:"ID_MAFE_8650e375ee80b2277a84fc9b85375e36";s:2:"A9";s:40:"ID_MAFE_868e45e7bc9c1b6c723724f85f00defc";s:21:"Select Origin Process";s:40:"ID_MAFE_8691b6a6780d4bb3dd62a8376a54be64";s:62:"There are problems updating the Email Event, please try again.";s:40:"ID_MAFE_86a32f8032467f8a54055fc4d429f2e8";s:14:"Increment Hour";s:40:"ID_MAFE_86f5978d9b80124f509bdb71786e929e";s:7:"January";s:40:"ID_MAFE_86fd9a7abc9f357e7fa206b2d42ec5ba";s:16:"Destination Path";s:40:"ID_MAFE_8738321e65db027ee6476c0ab12d8cd5";s:15:"Store option in";s:40:"ID_MAFE_87557f11575c0ad78e4e28abedc13b6e";s:3:"End";s:40:"ID_MAFE_87b74ebf71923a7992adcc3bb0cad08e";s:13:"Email Message";s:40:"ID_MAFE_87d17f4624a514e81dc7c8e016a7405c";s:6:"Mobile";s:40:"ID_MAFE_881fedcef7e0cc05ab238d2564401150";s:12:"Day of month";s:40:"ID_MAFE_882e640f7952787473c72777f4e5fae7";s:9:"up & down";s:40:"ID_MAFE_88aa96c7e5cdcdd3f73efb61d77eda30";s:12:"display text";s:40:"ID_MAFE_88afc834597e983a83077522bb57d7a6";s:9:"Validator";s:40:"ID_MAFE_88ee153347bd5d42dcf24dec1f78080b";s:54:"Intermediate event must have an outgoing sequence flow";s:40:"ID_MAFE_896c55cc5e46fab38ce9f51ebf7bfcd3";s:4:"hour";s:40:"ID_MAFE_897356954c2cd3d41b221e3f24f99bba";s:3:"Key";s:40:"ID_MAFE_898f54db33f64c0a7ecc7507b9cc5744";s:37:"There are problems, please try again.";s:40:"ID_MAFE_8991f7d434ea8104741fe2c008c09f5a";s:40:"Database connection deleted successfully";s:40:"ID_MAFE_899607da7ac548d9a143b9a649d9da96";s:12:"Copy Trigger";s:40:"ID_MAFE_89d0fdd0f8b1b6f918815729a338cd50";s:12:"Select Month";s:40:"ID_MAFE_89d626523f83c2d1f8a5549a845dd6aa";s:47:"Start Event must have an outgoing sequence flow";s:40:"ID_MAFE_89d7b10cb4238977d2b523dfd9ea7745";s:4:"Loop";s:40:"ID_MAFE_89f7ce5690523e6fdb35f6117d9dc902";s:33:"Enable consolidate for this task.";s:40:"ID_MAFE_8a32f139d42c17d5ed5fe2c8ca02958f";s:11:"Data Object";s:40:"ID_MAFE_8a8cf97a6531f11d7e9adcf0f0d5ba12";s:15:"Digital/Printed";s:40:"ID_MAFE_8a8e57b1911b99b924191503017760d7";s:11:"Full Screen";s:40:"ID_MAFE_8ac0a5f008a929a85fe29e738a9cce1b";s:61:"Please configure cron to create cases in base to a condition.";s:40:"ID_MAFE_8b2930b0ef56a344685dc79ff4aa5cb0";s:52:"Start Event must not have any outgoing Message Flows";s:40:"ID_MAFE_8b419cf7127d60d5e8f5bf25de7b6b9c";s:112:"A valid variable starts with a letter or underscore, followed by any number of letters, numbers, or underscores.";s:40:"ID_MAFE_8b6aa397ec2c1da9f4ac5444b35e45ae";s:41:"Please configure script to send a signal.";s:40:"ID_MAFE_8b7051187b9191cdcdae6ed5a10e5adc";s:8:"Saturday";s:40:"ID_MAFE_8b74de4ff3921872e9fa720a55220c6c";s:27:"Script Task saved correctly";s:40:"ID_MAFE_8bf8854bebe108183caeb845c7676ae4";s:2:"of";s:40:"ID_MAFE_8bf8bd52a2df4f9292a3a9b7c469fada";s:161:"To learn more about regular expressions, see the wiki.

    ";s:40:"ID_MAFE_8c38e95ae34b84df395afebaff1ffb21";s:34:"Do you want to delete this option?";s:40:"ID_MAFE_8c73a98a300905900337f535531dfca6";s:5:"shape";s:40:"ID_MAFE_8c74ecee5f291eab7aef6f98e5cda411";s:25:"Supported Controls: grid.";s:40:"ID_MAFE_8c7dd922ad47494fc02c388e12c00eac";s:4:"file";s:40:"ID_MAFE_8c89757e46e215545fe3bdfe188436ac";s:11:"Insert User";s:40:"ID_MAFE_8ccde31b4c183541d3375ffba65f617d";s:12:"default date";s:40:"ID_MAFE_8d777f385d3dfec8815d20f7496026dc";s:4:"data";s:40:"ID_MAFE_8d8fcc1abd550c5f25dbfaa57d59cb67";s:2:"MB";s:40:"ID_MAFE_8df6976e000977e9757caa5d9ed7c1aa";s:13:"enabled dates";s:40:"ID_MAFE_8e30879d8055ec47caf714b934312110";s:26:"to activate autocompletion";s:40:"ID_MAFE_8e7cafd90aa2f61de2953d482bc2ed27";s:13:"extra formats";s:40:"ID_MAFE_8ebc5d5d6f945c2c7e6d8db6d339e6f0";s:29:"Variable deleted successfully";s:40:"ID_MAFE_8f0996dac68d535131ecd654a0345a75";s:18:"widget positioning";s:40:"ID_MAFE_8f45539f90c1409482f8222018541bb7";s:13:"Parallel Join";s:40:"ID_MAFE_8f45a2644508b5282f57fe129f62d19a";s:6:"modify";s:40:"ID_MAFE_8f497c1a3d15af9e0c215019f26b887d";s:5:"Delay";s:40:"ID_MAFE_8f7afecbc8fbc4cd0f50a57d1172482e";s:9:"COMPLETED";s:40:"ID_MAFE_8f9204c55a59d787851fc3af81abc23c";s:19:"Link to fill a form";s:40:"ID_MAFE_8f9bfe9d1345237cb3b2b205864da075";s:4:"User";s:40:"ID_MAFE_8fa7b05ab45935bf4833909578a3a3e5";s:10:"Table Name";s:40:"ID_MAFE_8fec38c19cc33a4d96868b2bfefbb933";s:13:"Set a timeout";s:40:"ID_MAFE_8ff922bbcd8ad41cdfc48d3c5163b2ab";s:8:"Calendar";s:40:"ID_MAFE_902b0d55fddef6f8d651fe1035b7d4bd";s:5:"Error";s:40:"ID_MAFE_9030e39f00132d583da4122532e509e9";s:7:"Monthly";s:40:"ID_MAFE_90589c47f06eb971d548591f23c285af";s:6:"Custom";s:40:"ID_MAFE_9060587edeb01a63e3d3edc959678d1e";s:6:"Before";s:40:"ID_MAFE_9119da1dd85e63663fb91ce63de56b09";s:58:"Start Event: The process always begins with a start event.";s:40:"ID_MAFE_912ce77b9eb2aa7567125d574283747c";s:35:"Assignment Rules saved successfully";s:40:"ID_MAFE_912f459b875e7f5f2a16c29700adc28e";s:20:"Available Users List";s:40:"ID_MAFE_91325d2839558dade6b5d7443822a536";s:18:"Available Elements";s:40:"ID_MAFE_9137b642b56c7affcc215d1f027b11d0";s:31:"Dynaform to show a case summary";s:40:"ID_MAFE_91412465ea9169dfd901dd5e7c96dd99";s:6:"Upload";s:40:"ID_MAFE_916a154243f0a90150198e6fba099305";s:7:"edit...";s:40:"ID_MAFE_919510c4c6308860e16885131e98a51c";s:112:"Ignore this warning if your flow is planned to reach to this gateway by only one of the incoming flows at a time";s:40:"ID_MAFE_91c7645ad0ba98666ab1648102f986e7";s:8:"min date";s:40:"ID_MAFE_920337d67a019f218e8ccc1cc90a7e04";s:17:"Exclusive Gateway";s:40:"ID_MAFE_920a87dfc39e65161a1edb118e9c728c";s:11:"Delegations";s:40:"ID_MAFE_920f86f9d4a86d27b2776d84329a97ce";s:29:"Dynaform deleted successfully";s:40:"ID_MAFE_9239185714c402746aa3a17ad583fdd4";s:10:"grid store";s:40:"ID_MAFE_925844a30a1dbbba5e086b96c9dda97b";s:15:"Step Properties";s:40:"ID_MAFE_926dec9494209cb088b4962509df1a91";s:7:"Gateway";s:40:"ID_MAFE_92703f330e823886bdf4891e0c1a3a0f";s:11:"Redo Action";s:40:"ID_MAFE_92a690d939a9dd0ba183db27ca8a3725";s:17:"Process Variables";s:40:"ID_MAFE_92b09c7c48c520c3c55e497875da437c";s:5:"Right";s:40:"ID_MAFE_92f1b1481fa6ff46c4a3caae78354dab";s:9:"User Name";s:40:"ID_MAFE_9303c9bd4f8178680dc382adbfcd62af";s:23:"This field is required.";s:40:"ID_MAFE_9313566fe19aca293daefe4ce37942bf";s:4:"Skin";s:40:"ID_MAFE_93c3629ce90c4740f1674bd71f0b79cc";s:12:"Ad Hoc Users";s:40:"ID_MAFE_93cba07454f06a4a960172bbd6e2a435";s:3:"Yes";s:40:"ID_MAFE_93da65a9fd0004d9477aeac024e08e15";s:7:"options";s:40:"ID_MAFE_9405c3aff9112c3c60d03b94792877dc";s:5:"Route";s:40:"ID_MAFE_9435c91d556796c1386cb4005aa9634b";s:61:"It was not possible to establish a connection with the server";s:40:"ID_MAFE_944b95760dc358a122162ce63974488a";s:97:"Enter a regular expression which is a search pattern which matches the text entered in the field.";s:40:"ID_MAFE_945d5e233cf7d6240f6b783b36a374ff";s:4:"Left";s:40:"ID_MAFE_94c0e9b311d45b04fc37b41903c6debc";s:11:"Data Output";s:40:"ID_MAFE_94db17a1397178b4a6f6757c2a4d0938";s:59:"There are problems creating the dynaform, please try again.";s:40:"ID_MAFE_94e411da9586524fc73e45bb22776378";s:17:"Dynaform Template";s:40:"ID_MAFE_951d4dff3c22e9fcc4a2707009f45ea8";s:9:"thumbnail";s:40:"ID_MAFE_9530d977022e1fce705fc0f93af0a9b7";s:10:"delete row";s:40:"ID_MAFE_9571a194f1c1b9adf3a4d10736eabfb2";s:35:"Do you want to delete this Element?";s:40:"ID_MAFE_957903d24fd400242e5732414bcfe53a";s:12:"Receive Task";s:40:"ID_MAFE_95c44d967dca9312e445ee18f6e610c6";s:23:"Routing Screen Template";s:40:"ID_MAFE_960b44c579bc2f6818d2daaf9e4c16f0";s:6:"Normal";s:40:"ID_MAFE_962b90039a542a29cedd51d87a9f28a1";s:11:"Html Editor";s:40:"ID_MAFE_9639e32cab248434a17ab32237cb3b71";s:5:"Apply";s:40:"ID_MAFE_96baacdc276036c2b8fb65264750a3b4";s:12:"Choose Files";s:40:"ID_MAFE_9766aede44e9d1b176b4fbb0367b9853";s:61:"@@ string, @# float, @% integer, @= original type, @& object.";s:40:"ID_MAFE_9778840a0100cb30c982876741b0b5a2";s:3:"SQL";s:40:"ID_MAFE_97d8f56bf41502f60ca6fdd5d5da8edc";s:11:"Definitions";s:40:"ID_MAFE_97e7c9a7d06eac006a28bf05467fcc8b";s:4:"Link";s:40:"ID_MAFE_97f09283ddeadda4e80f20d9608cd8dd";s:67:"An unexpected error while editing the step, please try again later.";s:40:"ID_MAFE_98369609669478919c74c916440e9978";s:6:"Margin";s:40:"ID_MAFE_98386bbf2a867253744d3c47171b99dc";s:128:"ww01 02 ... 52 53Week of Year (ISO)W1 2 ... 52 53";s:40:"ID_MAFE_98402eecfbcefc336954458a01752131";s:8:"Parallel";s:40:"ID_MAFE_98611a4ed602dfc4087f66ce54c1e9a8";s:44:"Activity must have an incoming sequence flow";s:40:"ID_MAFE_990fcd0ba3c5c9e322c930c83a93be48";s:7:"rounded";s:40:"ID_MAFE_9925fd3c9d09e862da22c5d6912420d9";s:45:"End event must have an incoming sequence flow";s:40:"ID_MAFE_992d1d47106d77216cd6c3a15415dbea";s:13:"Screenshot640";s:40:"ID_MAFE_99493c187e709deb387b6ee3ec6c8179";s:56:"The input document is required, please select the value.";s:40:"ID_MAFE_99567b953da8beace4e3e7296bf1fc23";s:11:"Assign type";s:40:"ID_MAFE_99b2439e63f73ad515f7ab2447a80673";s:6:"PAUSED";s:40:"ID_MAFE_99c293babcada00063dd86b4f53bccd7";s:22:"Variable sent in email";s:40:"ID_MAFE_9a0364b9e99bb480dd25e1f0284c8555";s:7:"content";s:40:"ID_MAFE_9aa1b03934893d7134a660af4204f2a9";s:6:"Server";s:40:"ID_MAFE_9ac255aa1787084131704557a026ffce";s:11:"a cost here";s:40:"ID_MAFE_9afde9da9d0df4286959bae99d3a7e4b";s:58:"Clicking the "Clear" button will set the calendar to null.";s:40:"ID_MAFE_9b07c1269fe3afd3f2bbae338f93ce07";s:7:"Printed";s:40:"ID_MAFE_9b25c6480dd99fc5c1712cadefa756e7";s:110:"do0th 1st ... 5th 6thddSu Mo ... Fr Sa";s:40:"ID_MAFE_9b377ab6489b9495395f3fc4f4a03fb4";s:16:"Initial Dynaform";s:40:"ID_MAFE_9b6ddeba5b33e577c07c35d8505c6072";s:6:"circle";s:40:"ID_MAFE_9bea7040abc67529a463697e233bcbe9";s:90:"The colspan change is going to remove columns and content fields. Do you want to continue?";s:40:"ID_MAFE_9bef0fa08d3d079a5e1a6134b35fa3f0";s:14:"End Event Type";s:40:"ID_MAFE_9bf88dcc0548bfdc5028159eecdc648c";s:28:"Control Deprecated. Refer to";s:40:"ID_MAFE_9c197a0cff0c1e0b4410227c537b87ca";s:16:"a unit cost here";s:40:"ID_MAFE_9c8a77ee3bca206e3dfab19d94eb5127";s:10:"Working...";s:40:"ID_MAFE_9cd2a4862f826886105d87195ee6998c";s:15:"Input Documents";s:40:"ID_MAFE_9cd75a090ed78909e6b9f4311a31e46f";s:18:"Intermediate Event";s:40:"ID_MAFE_9d1a0949c39e66a0cd65240bc0ac9177";s:6:"Sunday";s:40:"ID_MAFE_9d3afea73e90192d96dda8d38c87a4fe";s:11:"Conditional";s:40:"ID_MAFE_9dcfba52eee7cb299acdeb584bfc76bd";s:15:"End Email Event";s:40:"ID_MAFE_9dd5fda31e43186448cb9b888b206abf";s:9:"Task Type";s:40:"ID_MAFE_9de5dffddfd3a91bc11389e926801d35";s:9:"Time unit";s:40:"ID_MAFE_9e064ba6ba566c8f1cf0c1b0bee46b1d";s:21:"- Select a Template -";s:40:"ID_MAFE_9e13b69d1d2da927102acaaaf7154a37";s:10:"Javascript";s:40:"ID_MAFE_9e2941b3c81256fac10392aaca4ccfde";s:9:"Condition";s:40:"ID_MAFE_9e794f2c08707053dd2bb22a3b4d8888";s:36:"Output Document deleted successfully";s:40:"ID_MAFE_9ed8ac8a23206c93a3602884788be7fa";s:14:"Previous Month";s:40:"ID_MAFE_9f1658da12738ea1b34318bd8258181b";s:38:"
      ";s:40:"ID_MAFE_9f22a77c63bef412675c4fc45e3ea11b";s:127:"QuarterQ1 2 3 4Day of MonthD1 2 ... 30 31";s:40:"ID_MAFE_9fc2d28c05ed9eb1d75ba4465abf15a9";s:10:"Properties";s:40:"ID_MAFE_9fced129522f128b2445a41fb0b6ef9f";s:8:"checkbox";s:40:"ID_MAFE_a036226d97d1d0d725d494a1431f322c";s:16:"Receiver account";s:40:"ID_MAFE_a05ac4341235111bd2cba5c3c105ba81";s:9:"Rich Text";s:40:"ID_MAFE_a0bfb8e59e6c13fc8d990781f77694fe";s:8:"Continue";s:40:"ID_MAFE_a0faef0851b4294c06f2b94bb1cb2044";s:7:"Integer";s:40:"ID_MAFE_a10a9bcd450087de1ce1f80b35f44883";s:5:"Legal";s:40:"ID_MAFE_a11e743927967a854e7f54cd9f621e9c";s:133:"Z-07:00 -06:00 ... +06:00 +07:00ZZ-0700 -0600 ... +0600 +0700";s:40:"ID_MAFE_a1af5f0718bfae275ce162362d0e43c5";s:8:"Datetime";s:40:"ID_MAFE_a1d5cbaf61c018e7d8456c66df0332c3";s:28:"An integer or decimal number";s:40:"ID_MAFE_a1fa27779242b4902f7ae3bdd5c6d508";s:4:"Type";s:40:"ID_MAFE_a22ab4f79904355ae25dfa5afff1dc3b";s:35:"Select the mode of the control:
      ";s:40:"ID_MAFE_a22b8023226bc5caac2e1dd0d5a15c5b";s:22:"The maximum length are";s:40:"ID_MAFE_a2609d846e9af22fcc3412a8c99510a5";s:17:"show clear button";s:40:"ID_MAFE_a274f4d4670213a9045ce258c6c56b80";s:13:"Notifications";s:40:"ID_MAFE_a2866cd6efaa65c92278d4771a9eaec7";s:3:"Jul";s:40:"ID_MAFE_a32a9f28ab30c6d2592043e874163a63";s:31:"Permission deleted successfully";s:40:"ID_MAFE_a3365da89800c556fc769d0b544c3f72";s:12:"Default Flow";s:40:"ID_MAFE_a359eaa62de4166c4de8c9699cd42870";s:19:"Activity Properties";s:40:"ID_MAFE_a37ede293936e29279ed543129451ec3";s:6:"Groups";s:40:"ID_MAFE_a398fb77df76e6153df57cd65fd0a7c5";s:5:"radio";s:40:"ID_MAFE_a3abcefb106274416cde9154cfed6a8c";s:40:"Do you want to delete this Message Type?";s:40:"ID_MAFE_a3d9d08ecae92ab5b2aa76e761935405";s:37:"Use a field to generate actions links";s:40:"ID_MAFE_a3e91bd787d916fe4980f4e1892b05f9";s:26:"Reset to original position";s:40:"ID_MAFE_a466673aa0487e479c2603e855eb431c";s:174:"For a better design we recommend using values above 3.
      If you need more info please visit Bootstrap grid system.";s:40:"ID_MAFE_a49bfc71497c26acd31d67999e9767ee";s:25:"File updated successfully";s:40:"ID_MAFE_a4ecfc70574394990cf17bd83df499f7";s:5:"Event";s:40:"ID_MAFE_a4ffdcf0dc1f31b9acaf295d75b51d00";s:3:"Top";s:40:"ID_MAFE_a5048ef2c0f6cc31473263718782029b";s:14:"Select a Skin.";s:40:"ID_MAFE_a5a299eb1993f98a6b58401ee62b66a0";s:38:"Do you want to delete this permission?";s:40:"ID_MAFE_a5b72d5e03d21409fcd79bf3f8715f6d";s:40:"setOrientation(): parameter is not valid";s:40:"ID_MAFE_a5ca0b5894324f8bb54bb9fffad29d1e";s:5:"audio";s:40:"ID_MAFE_a5d4e481e66121a71151435c2c0e68f6";s:16:"Decrement Second";s:40:"ID_MAFE_a603905470e2a5b8c13e96b579ef0dba";s:5:"Debug";s:40:"ID_MAFE_a60852f204ed8028c1c58808b746d115";s:2:"Ok";s:40:"ID_MAFE_a60cf2ece5b3e294aa794916477ac6a8";s:37:"Notify the assigned user to this task";s:40:"ID_MAFE_a6122a65eaa676f700ae68d393054a37";s:5:"Start";s:40:"ID_MAFE_a6478e58690248169052e55c467d1a76";s:15:"force selection";s:40:"ID_MAFE_a6527af0da63377b07a3effae750a485";s:30:"
      Triggers: Create scripts.";s:40:"ID_MAFE_a6c0580005d36b8ad4194b3b31cdb9ee";s:35:"Input Document deleted successfully";s:40:"ID_MAFE_a6ca4597da3795aed1b1fa92f0e8d9a6";s:15:"Previous Decade";s:40:"ID_MAFE_a6ce2340cef46384d71cb790606e9c67";s:17:"text transform to";s:40:"ID_MAFE_a6f7bd5f5255325b9cf287402c6782dd";s:112:"Do1st 2nd ... 30th 31stDD01 02 ... 30 31";s:40:"ID_MAFE_a76d4ef5f3f6a672bbfab2865563e530";s:4:"Time";s:40:"ID_MAFE_a79a682f66f0f9b8aa2ca16816883717";s:6:"Encode";s:40:"ID_MAFE_a7dd12b1dab17d25467b0b0a4c8d4a92";s:4:"show";s:40:"ID_MAFE_a7e82daa7280af25afbaa076ac16eb1e";s:10:"Sequential";s:40:"ID_MAFE_a7f138aa0ee8e9b7d82f49ada1bd22bf";s:10:"datepicker";s:40:"ID_MAFE_a81259cef8e959c624df1d456e5d3297";s:6:"static";s:40:"ID_MAFE_a82be0f551b8708bc08eb33cd9ded0cf";s:11:"Information";s:40:"ID_MAFE_a83ffccdc8a5c8ee14e4a51f403ccbe3";s:49:"Redirect to ProcessMaker predefined response page";s:40:"ID_MAFE_a85b67e3a588039d4954c17730b41ed4";s:123:"Fractional SecondS0 1 ... 8 9SS0 1 ... 98 99";s:40:"ID_MAFE_a88f05b6c963e145a45b58c47cd42a41";s:4:"hide";s:40:"ID_MAFE_a8dd8f3a191bf5bd3fa7b267b6eb0e3b";s:11:"Save & Open";s:40:"ID_MAFE_a959d712144264deebce99d1cb9183ed";s:14:"Insert a title";s:40:"ID_MAFE_a95f0dd593f8e3eb09960c0fbfe9e133";s:28:"Trigger removed successfully";s:40:"ID_MAFE_a9ef06d9637b09f171953304372d9bd8";s:53:"Converging Gateway must have a outgoing sequence flow";s:40:"ID_MAFE_a9f2bfaa472c55e0975d15c0ba59d24d";s:22:"Before Output Document";s:40:"ID_MAFE_aa0f2fff4f672e8106d8490171512bbd";s:104:"The form was recovered from a previous version {0}. Possible missing controls are going to be recreated.";s:40:"ID_MAFE_ab3cc3868af33a9eb61a93bd0adec2a0";s:12:"Collapse all";s:40:"ID_MAFE_ab57fd0432e25d5b3013133a1c910d56";s:2:"KB";s:40:"ID_MAFE_ab584372a831dfbe0761ddf888c67d5c";s:97:"Those controls will no longer be supported and probably will not be available in future versions.";s:40:"ID_MAFE_aba9ccd2c1467c4108a6dc534dd2b355";s:29:"Assigned Elements (Drop here)";s:40:"ID_MAFE_abbd64f40c34c537d3a571af068fce29";s:11:"Orientation";s:40:"ID_MAFE_ac080d8699580b3079575335cf61e9f5";s:14:"Text to search";s:40:"ID_MAFE_ac1b41823ac8a2ff1d66e2874557d268";s:19:"Create Message Type";s:40:"ID_MAFE_ac201fd270c3b96beab24f2829780ab2";s:9:"signature";s:40:"ID_MAFE_ac48a7776ff0e8dc13b0a1300fc0a75f";s:22:"Must connect to a Task";s:40:"ID_MAFE_ac5c74b64b4b8352ef2f181affb5ac2a";s:3:"sql";s:40:"ID_MAFE_ac67ede5a84eb5a1add7ff4440e9a485";s:8:"required";s:40:"ID_MAFE_ac68b62abfd6a9fe26e8ac4236c8ce0c";s:5:"forms";s:40:"ID_MAFE_ad7bdeed2bf3d72e17abe1a8d0508958";s:34:"Drag & Drop a User or a Group here";s:40:"ID_MAFE_ad9673dd7e15e17e0c045d02a48433c2";s:90:"The value introduced doesn\'t have the correct format with a vallid prefix (@@, @#, @=, @&)";s:40:"ID_MAFE_ad973c252653a47144b79403cfb0668b";s:8:"dropdown";s:40:"ID_MAFE_add097eaed8dfb3a5ca64ac7246ce50e";s:61:"Please select the control you want to use with your variable.";s:40:"ID_MAFE_adf9f7f231cca8f669de9ebec73920c8";s:25:"Error value: Hour: 0 - 23";s:40:"ID_MAFE_aed366133afd62b42069e50a58958f11";s:57:"Enter a title displayed on web entry window (if applies).";s:40:"ID_MAFE_aeee5e5818e4bb3fea8fc30d163b0e93";s:23:"Participation required?";s:40:"ID_MAFE_af1fde20506ab96ce731a0704492cdfb";s:105:"The amount of time entered is not valid. Please fill in at least one of the fields (day, hour, or minute)";s:40:"ID_MAFE_b021df6aac4654c454f46c77646e745f";s:5:"Label";s:40:"ID_MAFE_b068931cc450442b63f5b3d276ea4297";s:4:"name";s:40:"ID_MAFE_b086843368d1c92d0a86cbee76b20b6f";s:8:"Evaluate";s:40:"ID_MAFE_b0f069cf5ce65fef0eaf2967dff08867";s:12:"column width";s:40:"ID_MAFE_b1570e5689ffa6f3055426ba877cc4fa";s:112:"Mo1st 2nd ... 11th 12thMM01 02 ... 11 12";s:40:"ID_MAFE_b1897515d548a960afe49ecf66a29021";s:7:"Average";s:40:"ID_MAFE_b1c94ca2fbc3e78fc30069c8d0f01680";s:3:"All";s:40:"ID_MAFE_b1dfe4beb06060e1b96cdf51e446f762";s:7:"add row";s:40:"ID_MAFE_b1f802924e8ba557524f0298a65dc345";s:29:"Permission saved successfully";s:40:"ID_MAFE_b1fcd78a4983c63c73972229b16cb7a6";s:14:"print dynaform";s:40:"ID_MAFE_b206a1b4ea1097761f78e8876f6da779";s:8:"External";s:40:"ID_MAFE_b243a6cb94ba1c81a0caa579227ab48c";s:16:"Messages History";s:40:"ID_MAFE_b292e070d38cedac7309b0635d1edbfe";s:60:"There are problems Edited the Email Event, please try again.";s:40:"ID_MAFE_b32493effa41a17220f8a0a7affaa8d9";s:29:"Day of the month (example: 1)";s:40:"ID_MAFE_b326b5062b2f0e69046810717534cb09";s:4:"true";s:40:"ID_MAFE_b33f61ccf2251cae904b8effbd7f57f0";s:24:"https://example.com:8080";s:40:"ID_MAFE_b39dad036539dc7a45743536e3f8d8af";s:22:"initial selection date";s:40:"ID_MAFE_b4263bcd21beffde1fc98b3dd88f86bd";s:20:"Trigger is assigned.";s:40:"ID_MAFE_b4c7ae206140c5179619b952c3b672ef";s:35:"Invalid value for the integer field";s:40:"ID_MAFE_b4e7d2116bb1534c687d16bdc104ddfe";s:60:"Register a Case Note when the recipient submits the Response";s:40:"ID_MAFE_b4fab4396dba8d97b190eb5f4c5dc76f";s:37:"Do you want to remove the step \'{0}\'?";s:40:"ID_MAFE_b52eb32fc15ea406ee6bb271983b5939";s:13:"Vertical Text";s:40:"ID_MAFE_b55a7dbee5118fdf297492f8fb6e8d4a";s:15:"Execute Trigger";s:40:"ID_MAFE_b55e509c697e4cca0e1d160a7806698f";s:4:"Hour";s:40:"ID_MAFE_b57ed7a0b4f939d0c048882570336e3a";s:12:"Intermediate";s:40:"ID_MAFE_b582209588fc582d8cd4ce26ad1d87ec";s:70:"Do you want to import? All your changes will be lost if you import it.";s:40:"ID_MAFE_b59516b2b00f4cd096cd07ee67653aeb";s:21:"Self Service Evaluate";s:40:"ID_MAFE_b595a13a031f4551ad8b5400ffb617b7";s:25:"Error saving the process.";s:40:"ID_MAFE_b59a471e6943b33e32cc2482ec24fb12";s:114:"HourH0 1 ... 22 23HH00 01 ... 22 23";s:40:"ID_MAFE_b5a7adde1af5c87d7fd797b6245c2a39";s:11:"Description";s:40:"ID_MAFE_b5ceb80c90c6b834060fcd7e0d2c0c28";s:7:"subform";s:40:"ID_MAFE_b5d909fa36b2d67d91e6607c7f23cd92";s:26:"\'default\', \'top\', \'bottom\'";s:40:"ID_MAFE_b6240f93e977cf70300ffa6b5bff79f9";s:17:"Perform this task";s:40:"ID_MAFE_b6660bb18f1a418f7a7de6d82c5e96e4";s:30:"Insert a variable with options";s:40:"ID_MAFE_b6ec7abeb6ae29cc35a4b47475e12afe";s:7:"Process";s:40:"ID_MAFE_b718adec73e04ce3ec720dd11a06a308";s:2:"ID";s:40:"ID_MAFE_b71c644de3981875ca5fc9fdfffd55bc";s:47:"Is not possible create the element in that area";s:40:"ID_MAFE_b728212c8bd0b2dbfd34b9d18e62504f";s:68:"Do you want to close? All your changes will be lost if you close it.";s:40:"ID_MAFE_b74a43dbb36287ea86eb5b0c7b86e8e8";s:10:"Evaluation";s:40:"ID_MAFE_b776b96aded5145322e09111013ef8c5";s:23:"Invalid connection type";s:40:"ID_MAFE_b77bbd177ec1e4d71a0fe96d3d4e8b39";s:10:"Data Input";s:40:"ID_MAFE_b78a3223503896721cca1303f776159b";s:5:"Title";s:40:"ID_MAFE_b79a5b8ee43aa9dc939723becd94a8c0";s:28:"Please enter a numeric value";s:40:"ID_MAFE_b7c2aaa55124be654f3f09361d6e0f62";s:16:"Decrement Minute";s:40:"ID_MAFE_b7de7e4247d4ab279ef031b7a44c201d";s:8:"End date";s:40:"ID_MAFE_b7f6fdbd84a1e6b7e2b8ef9400c93ff3";s:62:"There are problems updating the Start Timer, please try again.";s:40:"ID_MAFE_b80bb7740288fda1f201890375a60c8f";s:2:"id";s:40:"ID_MAFE_b84b068f1f3f6b66583314870e2818c4";s:66:"There are problems getting the output documents, please try again.";s:40:"ID_MAFE_b86f4a68d98e2e1b9ed38ec3d850b02a";s:28:"Save your changes and exit ?";s:40:"ID_MAFE_b875db6ce4bf99e5abfb6d5488b1d80e";s:6:"Webbot";s:40:"ID_MAFE_b8afa4e8d5bb1dca8379fcfcee2d6480";s:59:"
    • View: Allow user to only view the control\'s value.
    • ";s:40:"ID_MAFE_b9925a331df6b1464182bdd6cbb2807c";s:202:"SSS0 1 ... 998 999Timezonez or zzEST CST ... MST PST
      Note: as of 1.6.0, the z/zz format tokens have been deprecated.";s:40:"ID_MAFE_b9cf99bfe1ed82c4a117449ed85680db";s:62:"There are problems saved the OutputDocument, please try again.";s:40:"ID_MAFE_b9f5c797ebbf55adccdd8539a65a0241";s:8:"Disabled";s:40:"ID_MAFE_baf91b987e7003f016a96187c4aea54d";s:62:"Please add option and click in cell for editing the cell value";s:40:"ID_MAFE_bafd7322c6e97d25b6299b5d6fe8920b";s:2:"No";s:40:"ID_MAFE_bb3775bdd3504d816fafe7daaa3643e0";s:147:"Day of Week (Locale)e0 1 ... 5 6Day of Week (ISO)E1 2 ... 6 7";s:40:"ID_MAFE_bb3c8227885fe5d13241a9f7e5f06397";s:60:"
      Output documents: Generate documents with process data.";s:40:"ID_MAFE_bb7476567f5e12e60b01436dad77a533";s:11:"is invalid.";s:40:"ID_MAFE_bbb13df048343bec1b7a2a92db9e861a";s:7:"Show ID";s:40:"ID_MAFE_bbbabdbe1b262f75d99d62880b953be1";s:4:"Role";s:40:"ID_MAFE_bbc0b13be5c0344b98b95223b813615d";s:19:"Start Message Event";s:40:"ID_MAFE_bbf19b586e3b5fb519e07cff499c9d9e";s:27:"Route case when back online";s:40:"ID_MAFE_bd16f59e931cb60f975d902d9a3b6cf0";s:116:"Seconds0 1 ... 58 59ss00 01 ... 58 59";s:40:"ID_MAFE_bd21190449b7e88db48fa0f580a8f666";s:5:"icons";s:40:"ID_MAFE_be1a57f7e1cfe44284e71c5175874967";s:5:"Event";s:40:"ID_MAFE_be523bdcc111d8113eb54f747d89d4d7";s:2:"A7";s:40:"ID_MAFE_bebfb2a099450ef06ded421e59c888b2";s:12:"Format (CSS)";s:40:"ID_MAFE_bec3c2ccfb01e007c2d5282b01766fe1";s:18:"Trigger to execute";s:40:"ID_MAFE_bf207aee24e634019ce40f4bc04b7262";s:16:"Insert a message";s:40:"ID_MAFE_bf8252265e26d92c011456899a2d522e";s:35:"At least one option must be filled.";s:40:"ID_MAFE_bfdc20040cc51551fadc0dabe517af06";s:35:"Self Service Value Based Assignment";s:40:"ID_MAFE_bfe379052f3914db06f3994651836d47";s:15:"Edit Properties";s:40:"ID_MAFE_c028a05a817ab315a9784fa1f0d815dd";s:19:"Parallel Assignment";s:40:"ID_MAFE_c0723cf0be9c7e3b99fcce0d8e894987";s:10:"working...";s:40:"ID_MAFE_c0b06c68c75e0313cac38c4cc8a64d50";s:23:"Generate Web Entry Page";s:40:"ID_MAFE_c13fa34b370a32d2936226f53ce86875";s:13:"Process Users";s:40:"ID_MAFE_c1c425268e68385d1ab5074c17a94f14";s:8:"function";s:40:"ID_MAFE_c1dbca99810306ad4278271382056e6b";s:61:"This action will delete all options. Do you want to continue?";s:40:"ID_MAFE_c22cf8376b1893dcfcef0649fe1a7d87";s:6:"Second";s:40:"ID_MAFE_c2f3f489a00553e7a01d369c103c7251";s:2:"NO";s:40:"ID_MAFE_c312fca2f486deefd552a41ccc75bfab";s:35:"Output Document edited successfully";s:40:"ID_MAFE_c336025d9ce830a12c4c3668febc2983";s:25:"Trigger updated correctly";s:40:"ID_MAFE_c33b138a163847cdb6caeeb7c9a126b4";s:6:"Friday";s:40:"ID_MAFE_c360a6b5c3b1b36a8a5a13737cfda21c";s:18:"Message Field Name";s:40:"ID_MAFE_c3ff20c4d95f758bb6e0e5dcfda8ad4f";s:33:"Invalid value for the float field";s:40:"ID_MAFE_c40b29699c408c2934c6b87e776965db";s:52:"There is already a connection between these elements";s:40:"ID_MAFE_c41a31890959544c6523af684561abe5";s:6:"Target";s:40:"ID_MAFE_c4379b8aabc3e9403dd1076f8a3864b0";s:68:"

      Please select the control you want to use with your variable.

      ";s:40:"ID_MAFE_c44e15eb538fed543cc4b76599859b09";s:28:"Every time scheduled by cron";s:40:"ID_MAFE_c499a5f4b3762b6b464ede4a8055e121";s:25:"Supported Controls: file.";s:40:"ID_MAFE_c4cdd5e672b274b476f4760a304445ba";s:163:"The column sizes are defined with integer numbers separated by spaces. Any combination of column sizes can be defined but all the columns sizes should add 12.
      ";s:40:"ID_MAFE_c50c7d354b9bcf097722ffbce38990a4";s:8:"stepping";s:40:"ID_MAFE_c512b685438f41daa7386329a3b8f8d3";s:5:"Daily";s:40:"ID_MAFE_c53385d51221bcb27c5f37de31043c24";s:11:"No Category";s:40:"ID_MAFE_c5bcf625cbb751aba886be634ef4ef47";s:35:"Invalid Connection between elements";s:40:"ID_MAFE_c5d84b6c19cb058b7b5471b30e926823";s:62:"Invalid operation: Delete message flow before converting it to";s:40:"ID_MAFE_c5e54f7804fa817826dfa5ecc13cd92f";s:14:"Last User Name";s:40:"ID_MAFE_c5f93fd19468533ea5c9114801c2958d";s:35:"Input Document updated successfully";s:40:"ID_MAFE_c61404957758dfda283709e89376ab3e";s:6:"layout";s:40:"ID_MAFE_c61dee25881b22ead46aca2bc70f0f9d";s:25:"Assigned supervisors list";s:40:"ID_MAFE_c6589f5236c0c434d0c63dc5f9a856f2";s:8:"Balanced";s:40:"ID_MAFE_c669a07db307f61a0e1c8e8cc030da6a";s:69:"An unexpected error while assigning the step, please try again later.";s:40:"ID_MAFE_c6baf5d413034c4bbf37bdc231655e10";s:94:"The lane can be dropped only over an empty pool. Please empty the pool before dropping a lane.";s:40:"ID_MAFE_c6bdf6f65f3845da9085e9ae5790b494";s:2:"A2";s:40:"ID_MAFE_c6e76812e5ffe1d7adb0117469239f84";s:55:"Lane: Used to divide a process into different sections.";s:40:"ID_MAFE_c6f2f93133905f75da4b02ccc19ab66a";s:2:"A5";s:40:"ID_MAFE_c72d6772f171179fe635af3b5e544434";s:10:"Legal Copy";s:40:"ID_MAFE_c72d7ee8a23bae4c80e8cc4521f89f7a";s:14:"Steps for task";s:40:"ID_MAFE_c753162c88467b5e75884bb765d7a682";s:14:"Multiple Steps";s:40:"ID_MAFE_c75f7811d70d17dbcd88e9d03752cbed";s:14:"Authentication";s:40:"ID_MAFE_c7892ebbb139886662c6f2fc8c450710";s:7:"Subject";s:40:"ID_MAFE_c78a4a6f9ede9c76f26b0cebed36189b";s:19:"OutPut Document (s)";s:40:"ID_MAFE_c793116b0fc9df6d8761028f4adbe90e";s:39:"Execute a trigger when a case is opened";s:40:"ID_MAFE_c79bdf421714f5087fc34b7c538b6807";s:6:"submit";s:40:"ID_MAFE_c7f8f8652db6d74e086d297129179d2f";s:36:"Task/sub-process name can\'t be empty";s:40:"ID_MAFE_c811eda5d60b171dda58b7dcd2df1652";s:33:"Enable this task for offline use:";s:40:"ID_MAFE_c84b883e444f5a6104a94e46190b1051";s:19:"Edit Input Document";s:40:"ID_MAFE_c86d6b2734026553fcc1826b1813e662";s:23:"string or jQuery object";s:40:"ID_MAFE_c88ad0157bfa285e16c222e651c6d482";s:39:"Execute a trigger when a case is paused";s:40:"ID_MAFE_c942e2c249d4a7f9e2f4bddd02ef87e7";s:66:"Default: false
      Show the "Clear" button in the icon toolbar.
      ";s:40:"ID_MAFE_c97cca23ba8eebfbe951796f03915107";s:20:"Edit Output Document";s:40:"ID_MAFE_c9838204ecea4595edd1ef4a76b66846";s:14:"array variable";s:40:"ID_MAFE_c991b0dfe2947768cfc57a1acb65d721";s:15:"Single Dynaform";s:40:"ID_MAFE_c9cc8cce247e49bae79f15173ce97354";s:4:"Save";s:40:"ID_MAFE_ca0dbad92a874b2f69b549293387925e";s:4:"Code";s:40:"ID_MAFE_ca54a730db8947fb7f724df269a4ad07";s:91:"Gateway: Selects a path or divides the process into multiple paths and joins them together.";s:40:"ID_MAFE_cab2f517f232fec132b37a4778df7139";s:138:"Week Year (ISO)GG70 71 ... 29 30GGGG1970 1971 ... 2029 2030";s:40:"ID_MAFE_cabf52523fbbddadbde30994e36845d0";s:15:"Store Result In";s:40:"ID_MAFE_cae0206c31eaa305dd0e847330c5e837";s:8:"wildcard";s:40:"ID_MAFE_cae09bbf47d1edd91f595be3d58c3fbb";s:10:"Processmap";s:40:"ID_MAFE_cba3917d344178657c24e17192d622be";s:46:"The following variables have been created:
      ";s:40:"ID_MAFE_cbcee680697ae9b5cd066ec611895829";s:19:"Boundary Event Type";s:40:"ID_MAFE_cbf3543f93135ddeb0fbe1b2f822799d";s:117:"Colspan is used to define the size and number of columns of a selected row. Twelve columns can be defined as maximum.";s:40:"ID_MAFE_cbfc6ad7fc06283ba1556ed2e4d30ff4";s:17:"Correlation Value";s:40:"ID_MAFE_cc392b567536af3977d356f3c4f201c6";s:51:"Please upload a file with a valid extension (.json)";s:40:"ID_MAFE_cc476d42149b7b1bf8a60ea941970116";s:36:"Properties invalid elements:

      ";s:40:"ID_MAFE_cc5d90569e1c8313c2b1c2aab1401174";s:9:"September";s:40:"ID_MAFE_cc82ea5c68e8fef6fd016115180de7ec";s:15:"Custom Hostname";s:40:"ID_MAFE_cd0c6092d6a6874f379fe4827ed1db8b";s:6:"PUBLIC";s:40:"ID_MAFE_cda829a5b60fd623ccd9c89377c1ba7f";s:9:"Date time";s:40:"ID_MAFE_cdc02faa21aec923a6865eed7803cf76";s:11:"Target Task";s:40:"ID_MAFE_cdd1f7270c9e7d6be3a484121bf2cd70";s:15:"Link Generation";s:40:"ID_MAFE_ce2c8aed9c2fa0cfbed56cbda4d8bf07";s:5:"Empty";s:40:"ID_MAFE_ce495ab8d79db0d37413d8e95b54e606";s:8:"multiple";s:40:"ID_MAFE_ce4d4b319a571fda7b689cee71432d5d";s:14:"Custom Trigger";s:40:"ID_MAFE_ce50a09343724eb82df11390e2c1de18";s:6:"button";s:40:"ID_MAFE_cec5d779d280ccc9c11ba492353a3a02";s:13:"Remove Object";s:40:"ID_MAFE_cec5f5f46fe524c3b0f9f0c18d74af91";s:18:"Select a language.";s:40:"ID_MAFE_ced3ccc640e21085b1bf8a2389332f70";s:96:"AM/PMAAM PMaam pm";s:40:"ID_MAFE_cef5e20d12886936632c84c319057288";s:12:"exmaple-name";s:40:"ID_MAFE_cf9f7adb0fd03f4072c4f44f8328433f";s:10:"An integer";s:40:"ID_MAFE_d08ccf52b4cdd08e41cfb99ec42e0b29";s:11:"Permissions";s:40:"ID_MAFE_d0aac4ce1ac97df2b4c6e456bbe3a061";s:10:"Expand all";s:40:"ID_MAFE_d0cf959c7706a5c88e7b434c857f9ca8";s:27:"Pending Task / Not Executed";s:40:"ID_MAFE_d0e45878043844ffc41aac437e86b602";s:6:"parent";s:40:"ID_MAFE_d1376c0b3248b39302f2ac2fa87de4b8";s:29:"Default date is out of range.";s:40:"ID_MAFE_d14f18dc87737c53160abb29b9da643c";s:14:"Saving Process";s:40:"ID_MAFE_d1948d0992fcf56030d9f5b250736dad";s:17:"Enable Versioning";s:40:"ID_MAFE_d207b4e0bce42a8f1555ce3a05e287f6";s:3:"Dec";s:40:"ID_MAFE_d23b1ae2181127f01be369b1ca27fdf5";s:29:"The key value already exists.";s:40:"ID_MAFE_d27532d90ecd513e97ab811c0f34dbfd";s:8:"Minimize";s:40:"ID_MAFE_d287f7dbd26ba9650f495a91fd532191";s:124:"object with the all or one of the parameters above; horizontal: \'auto\', \'left\', \'right\' or vertical: \'auto\', \'top\', \'bottom\'";s:40:"ID_MAFE_d2bd8c9509fc30a577287acb37ca93e1";s:20:"datepicker view mode";s:40:"ID_MAFE_d2cd6300ffb46de2841ccf9c252ad9b8";s:21:"Create Input Document";s:40:"ID_MAFE_d2e8a6fdb73b61fc8bb63c75aa9921c8";s:32:"Start file download successfully";s:40:"ID_MAFE_d304ba20e96d87411588eeabac850e34";s:5:"label";s:40:"ID_MAFE_d329fd777726c300d7a044e482b967e7";s:5:"clone";s:40:"ID_MAFE_d3548dd5f5b6667fdbd433a77288973c";s:46:"Error, There are problems updating the element";s:40:"ID_MAFE_d3d2e617335f08df83599665eef8a418";s:5:"Close";s:40:"ID_MAFE_d3eb32a3c80167aaa9aa114db53a22dd";s:4:"Sql:";s:40:"ID_MAFE_d3f29913d052896a7de99dbc03691d93";s:12:"PDF security";s:40:"ID_MAFE_d40a0246031d05173d2fe23ef8b4f7a9";s:30:"Routing rule removed correctly";s:40:"ID_MAFE_d40a430b5994378821419101cda69c58";s:22:"Parallel by Evaluation";s:40:"ID_MAFE_d4211e3744d9a86f562e76204530a2a5";s:48:"Variable for Self Service Value Based Assignment";s:40:"ID_MAFE_d426d6effc8a921775964c7873067700";s:103:"h1 2 ... 11 12hh01 02 ... 11 12";s:40:"ID_MAFE_d47318a2a0d03c15dba85904e34c6afd";s:27:"Hide Logged Information Bar";s:40:"ID_MAFE_d48c796fe10ae93243dd0202fbc5ed78";s:23:"Duplicate value for key";s:40:"ID_MAFE_d4903c30cd1efde76c02488c8697503b";s:13:"Assigned user";s:40:"ID_MAFE_d4eaf061d0141da13fc44f17a1484f19";s:16:"Step {0} ( {1} )";s:40:"ID_MAFE_d55b30607c2a9a2616347d6edb789f6b";s:4:"Last";s:40:"ID_MAFE_d5706ca375c8d6a21acb1deac3f7e357";s:24:"Advanced link generation";s:40:"ID_MAFE_d5d3db1765287eef77d7927cc956f50a";s:5:"title";s:40:"ID_MAFE_d62abd4be004b04615bd652961d6834f";s:16:"Assigned objects";s:40:"ID_MAFE_d66bf84417d8bc392b891637f89e83eb";s:27:"Error value: Minute: 0 - 59";s:40:"ID_MAFE_d685251a3afff77558aaa0101fc941ab";s:67:"There are problems getting the list of dynaforms, please try again.";s:40:"ID_MAFE_d6d390d565e04f51d5d9e9b9d729927c";s:35:"Do you want to delete this Trigger?";s:40:"ID_MAFE_d6f50a79f146ae5544b50c2d9b100a0d";s:16:"Report Generator";s:40:"ID_MAFE_d74c675d11eb7323f063948513b9a14d";s:10:"Empty Task";s:40:"ID_MAFE_d7dea2ba9be1a9aac2a1d06691e50570";s:32:"Message Type Saved successfully.";s:40:"ID_MAFE_d8012aca7276ee78d2e2bd33861d72a1";s:70:"At least one object should be selected in order to execute the action.";s:40:"ID_MAFE_d88c146dfafdea37a837778a92415bc2";s:2:"A0";s:40:"ID_MAFE_d890b531c1bc187c2c2fad9da298cfc6";s:48:"There are problems getting the list of projects.";s:40:"ID_MAFE_d90afd265d3ae2d1062a4dac2613fbd6";s:14:"Web Entry URL:";s:40:"ID_MAFE_d9a178c34608359bd5608813a08de096";s:11:"Manual Task";s:40:"ID_MAFE_d9b9a07c7b536fdc734d3b88b85aac82";s:39:"Use a pattern (to be used in a search).";s:40:"ID_MAFE_da36cfaf48b9e19896e23e1207040d1e";s:6:"months";s:40:"ID_MAFE_da899c7ecb82930d22fb8d1942581648";s:11:"Origin Task";s:40:"ID_MAFE_dae8ace18bdcbcc6ae5aece263e14fe8";s:7:"Options";s:40:"ID_MAFE_db0f6f37ebeb6ea09489124345af2a45";s:5:"group";s:40:"ID_MAFE_db71d165eea16a6618d0aa8d9368c4ab";s:31:"Define accepted variable values";s:40:"ID_MAFE_dc30bc0c7914db5918da4263fce93ad2";s:5:"Clear";s:40:"ID_MAFE_dc3fd488f03d423a04da27ce66274c1b";s:8:"Warning!";s:40:"ID_MAFE_dc45332742bde79337287a115c6422a4";s:15:"Select variable";s:40:"ID_MAFE_dc57a7c94c6039e453fc44f153b865a4";s:71:"The changed variables have been added with the suffix “_1”.";s:40:"ID_MAFE_dc647eb65e6711e155375218212b3964";s:8:"Password";s:40:"ID_MAFE_dc6efaeccf34d292ce91634e532d7b44";s:52:"Hide the case number and the case title in the steps";s:40:"ID_MAFE_dc810b4cb74c8f016bceb38f35f14d34";s:41:"Do you want to delete this DB Connection?";s:40:"ID_MAFE_dc8fc7a5b6a7c0f6711279c884cb4833";s:15:"Web Entry Title";s:40:"ID_MAFE_dca2d7da83c33cb7110af7c69de355fc";s:42:"The property event was saved successfully.";s:40:"ID_MAFE_dce333d9e7472c085cf0e12d13d52be7";s:12:"self Service";s:40:"ID_MAFE_dd1f775e443ff3b9a89270713580a51b";s:8:"Previous";s:40:"ID_MAFE_dd7b1201c11de68c122a739622d5f377";s:37:"Supported Controls: datetime, hidden.";s:40:"ID_MAFE_de04bbb13657e1df223071e8b2cfae41";s:109:"TokenOutputMonthM1 2 ... 11 12";s:40:"ID_MAFE_de340309f61afe838ad6b7666c38de22";s:14:"Export process";s:40:"ID_MAFE_de95b43bceeb4b998aed4aed5cef1ae7";s:4:"edit";s:40:"ID_MAFE_de9b9ed78d7e2e1dceeffee780e2f919";s:10:"javascript";s:40:"ID_MAFE_def36b726efed529b13ba240dd331a12";s:4:"Pool";s:40:"ID_MAFE_df347a373b8f92aa0ae3dd920a5ec2f6";s:4:"rows";s:40:"ID_MAFE_df9d1858f32ca3b186ac018ca508a144";s:26:"Variable for Case priority";s:40:"ID_MAFE_dfc40f0e59f5a510ccd9db550affc2a5";s:16:"Parallel gateway";s:40:"ID_MAFE_dfeaaeb4316477bd556ea5e8c3295887";s:8:"datetime";s:40:"ID_MAFE_e019dd49d439bb6d6765f7d2f6915333";s:15:"Close Validator";s:40:"ID_MAFE_e04aa5104d082e4a51d241391941ba26";s:8:"variable";s:40:"ID_MAFE_e071ce22a73ed2e5ea13f4d61d76f5ab";s:20:"Database Connection:";s:40:"ID_MAFE_e09646ce9f4b38cbf4816df15cee61d6";s:10:"Report toO";s:40:"ID_MAFE_e0aa021e21dddbd6d8cecec71e9cf564";s:2:"OK";s:40:"ID_MAFE_e0c9b0646bf818123171ad13d15b48e0";s:32:"There are problems removing task";s:40:"ID_MAFE_e12167aa0a7698e6ebc92b4ce3909b53";s:2:"To";s:40:"ID_MAFE_e148afc16b27021949123135f0cfb672";s:14:"Array of users";s:40:"ID_MAFE_e16d24cd68030dda478e6ca7151010e2";s:8:"@@myData";s:40:"ID_MAFE_e1a9dc9f23534e63de9df0d540ac1611";s:4:"Once";s:40:"ID_MAFE_e1ba155a9f2e8c3be94020eef32a0301";s:6:"Manual";s:40:"ID_MAFE_e1c496f67d70286897d9813254b4c0b1";s:15:"Of the month(s)";s:40:"ID_MAFE_e1e4c8c9ccd9fc39c391da4bcd093fb2";s:5:"Block";s:40:"ID_MAFE_e20cbb947afcf84cf58de1358ee1068d";s:13:"Error message";s:40:"ID_MAFE_e21db27183e0325f6f827b5781336bab";s:13:"Select a Skin";s:40:"ID_MAFE_e2627d9094274c7bcdc01ce1dadbaaab";s:21:"Select Target Process";s:40:"ID_MAFE_e29d57981d438d31f08b968bb12ed568";s:16:"Select a Control";s:40:"ID_MAFE_e2a990c9958b0fd2ecb860335737c258";s:45:"Please configure script to wait for a signal.";s:40:"ID_MAFE_e2ac1703ae8a4bb8b146f7337a7e4cab";s:9:"Last User";s:40:"ID_MAFE_e2b9d6eb9f3ec7d4e6089274a4481fab";s:67:"There are problems getting the list of DynaForms, please try again.";s:40:"ID_MAFE_e30f555e5a24f076a5d5be70a4625270";s:3:"TNS";s:40:"ID_MAFE_e3ce9b91bd7b1be415b5e687006ad179";s:226:"false: No default selection
      true: current date
      year: the first day of the current year
      month: the first day of the month
      day: the current day
      hour: the current hour without minutes
      minute: the current minute";s:40:"ID_MAFE_e4204641574e4827600356b4dcacd276";s:3:"Pdf";s:40:"ID_MAFE_e44b145bd8b49b06e0ad2ced1ad56466";s:10:"Plain Text";s:40:"ID_MAFE_e47eb6970857d9b170bb3691a0dad2f4";s:44:"Activity must have an outgoing sequence flow";s:40:"ID_MAFE_e4cf1a5db1d2df2e913b6685e634afad";s:63:"Enter a valid URL to be redirected when entry will be completed";s:40:"ID_MAFE_e54e3cf1f4745ffacdc539446402f9e4";s:27:"Output Document to Generate";s:40:"ID_MAFE_e5771a362d88a71a657bfcd21ca54b3f";s:5:"Units";s:40:"ID_MAFE_e5f8dbb32f8dead7935095ec1e38cc67";s:11:"Start Event";s:40:"ID_MAFE_e635032a5f71d809146d3872389f5b0c";s:11:"Choose File";s:40:"ID_MAFE_e659b52eba1f0299b2d8ca3483919e72";s:5:"Type:";s:40:"ID_MAFE_e68564f23e0e939acea76dc3d2bc01bf";s:3:"Jan";s:40:"ID_MAFE_e693021f9ae34a3833f0036c52837cfd";s:40:"
      Variables: Define the process data.";s:40:"ID_MAFE_e6fa96066374220d571ce0ed5f818ca2";s:13:"One Time Only";s:40:"ID_MAFE_e6fe2cb291ace4c56d3f9481b3b963af";s:17:"Select a language";s:40:"ID_MAFE_e70d93ce81ad26fe9c3c5d904a955260";s:13:"Edit Variable";s:40:"ID_MAFE_e711a42279b23490048c2a4bbaeb1afc";s:17:"Edit Message Type";s:40:"ID_MAFE_e72f0ee21d7c9d52b358a3bda9133429";s:33:"Message Type Deleted successfully";s:40:"ID_MAFE_e76f82ba7eb19b9a6a22829ead887c7d";s:12:"Self Service";s:40:"ID_MAFE_e787b4cb0cdefd8881e38a4f54305701";s:13:"Examples:
      ";s:40:"ID_MAFE_e7d22294bdcb7133967c3548ece982e5";s:3:"UID";s:40:"ID_MAFE_e807d3ccf8d24c8c1a3d86db5da78da8";s:4:"Days";s:40:"ID_MAFE_e8308c9bdecef89676a80116e65d9210";s:28:"- Select an input document -";s:40:"ID_MAFE_e889b1ca9624a9fbe23c4f062d7e5f01";s:6:"geomap";s:40:"ID_MAFE_e8be55bf3a30501aef09d2e74de97976";s:25:"This name already exists.";s:40:"ID_MAFE_e8fab833730f3a939d0b3812fe043b5d";s:4:"href";s:40:"ID_MAFE_e93a4587303a40147959da9901f50e34";s:15:"Horizontal Text";s:40:"ID_MAFE_e9baaa746b16c3c4b1c6668acba2a095";s:7:"The day";s:40:"ID_MAFE_e9cb217697088a98b1937d111d936281";s:10:"Attachment";s:40:"ID_MAFE_e9e8378dd79d6183c91dc32bb85e1363";s:19:"Assigned users list";s:40:"ID_MAFE_ea171d540ccd5f0669171ef06d3cd848";s:3:"Feb";s:40:"ID_MAFE_ea1dfeb79bcdfcc668bc8a09e101b7e9";s:20:"- Select a process -";s:40:"ID_MAFE_ea307f4b2295ccbeec8e6ef77e0a3364";s:43:"There are problems saved, please try again.";s:40:"ID_MAFE_ea4788705e6873b424c65e91c2846b19";s:6:"Cancel";s:40:"ID_MAFE_eaeb30f9f18e0c50b178676f3eaef45f";s:4:"Task";s:40:"ID_MAFE_eb0e94f426e2486a5af19633142d5ac7";s:8:"No users";s:40:"ID_MAFE_eb178264802ebbd52cccc8feadb72a6f";s:10:"PARAMETERS";s:40:"ID_MAFE_eb4b40c1221dad5b23fe7ef84d292be1";s:3:"Jun";s:40:"ID_MAFE_eba58323955caff5dc6ed8b89fd52ccf";s:11:"Cases Notes";s:40:"ID_MAFE_ebb035d359e317060c652f54a18cfb1b";s:7:"Copy of";s:40:"ID_MAFE_ebc1c8328f25c6ccb2ff00dd27b56693";s:12:"is required.";s:40:"ID_MAFE_ebcc39462e6620a8cf432194084a5483";s:8:"Options:";s:40:"ID_MAFE_ec211f7c20af43e742bf2570c3cb84f9";s:3:"Add";s:40:"ID_MAFE_ec36eecb212798bfc86076f1759b5824";s:13:"Participation";s:40:"ID_MAFE_ec53a8c4f07baed5d8825072c89799be";s:6:"Status";s:40:"ID_MAFE_ec6f1a89963c5b95d783e0c260fc959a";s:39:"Can\'t connect start event to subprocess";s:40:"ID_MAFE_ec724ea84e93ee183d93f0ee67eb5d47";s:30:"string, moment.local(\'locale\')";s:40:"ID_MAFE_ec8c00db917906278b80b96ded113351";s:25:"Testing Server Connection";s:40:"ID_MAFE_eca60ae8611369fe28a02e2ab8c5d12e";s:7:"October";s:40:"ID_MAFE_eca71f5ca33e0810a5eba99c4e31693b";s:10:"Name Value";s:40:"ID_MAFE_ecc40a7a6571d7e558482fbc1fa8bf7e";s:71:"An unexpected error while deleting the trigger, please try again later.";s:40:"ID_MAFE_ece7c5dcf104d858b2ea7b80d3c09dce";s:93:"Select dates by days, months or years by default when the date picker is initially shown.
      ";s:40:"ID_MAFE_ed32b37d44409cdcca89b579bff51348";s:40:"Do you want to delete this routing rule?";s:40:"ID_MAFE_ed484439470b8e84346a8117d0adf0c2";s:12:"Public Files";s:40:"ID_MAFE_ed5dea09095f671b801bee34ea28a319";s:10:"Permission";s:40:"ID_MAFE_ee11cbb19052e40b07aac0ca060c23ee";s:4:"user";s:40:"ID_MAFE_ee2faeed038501c1deab01c7b54f2fa9";s:4:"hint";s:40:"ID_MAFE_ee458e0db2f22a6528caf5111e594df0";s:14:"Export Diagram";s:40:"ID_MAFE_ee86a7940c08cf3c74b87afe09ce964c";s:36:"Do you want to delete this DynaForm?";s:40:"ID_MAFE_ee89abf4f4c10ef961a90dd20e7979ed";s:59:"There are problems creating the DynaForm, please try again.";s:40:"ID_MAFE_ef2e2525cf10996e5e7e480cdb28ec7f";s:9:"Send Task";s:40:"ID_MAFE_ef61fb324d729c341ea8ab9901e23566";s:7:"Add new";s:40:"ID_MAFE_ef78da8db34b8af99c406b2bddea82b2";s:18:"Input Document (s)";s:40:"ID_MAFE_ef831a7b020689074c3df21c36dfc3c0";s:6:"Months";s:40:"ID_MAFE_efb4777327e6f704fb1519c1882f93ec";s:5:"Timer";s:40:"ID_MAFE_f04aa7019c490474fa3ce16e93501b57";s:3:"Sep";s:40:"ID_MAFE_f0c8b2bc40856314cdc241d77f7eb12a";s:15:"Horizontal line";s:40:"ID_MAFE_f11f4e6128e29dff10ba00f8c1254a48";s:12:"Dynaform (s)";s:40:"ID_MAFE_f15c1cae7882448b3fb0404682e17e61";s:7:"Content";s:40:"ID_MAFE_f19e18aa38c0387bebad06c76c638e0a";s:11:"Sub Process";s:40:"ID_MAFE_f1a76f66cca677c6e628d9ca58a6c8fc";s:4:"Flow";s:40:"ID_MAFE_f1e505c1ac6b1e2409fd1dd6520da2ce";s:26:"Step editing successfully.";s:40:"ID_MAFE_f1e5d7a5fe13498abbdeb0f1f19136a8";s:5:"panel";s:40:"ID_MAFE_f217bd2ed27f82d5c856035f95801373";s:30:"Permission edited successfully";s:40:"ID_MAFE_f2a6c498fb90ee345d997f888fce3b18";s:6:"Delete";s:40:"ID_MAFE_f2dc40c4f8e4d156f519a6453f6b2a27";s:22:"day view header format";s:40:"ID_MAFE_f3a29486bed19a90f2da6d007818b427";s:5:"Steps";s:40:"ID_MAFE_f3b92fc0f97f128818cfb44321376bca";s:10:"Assignment";s:40:"ID_MAFE_f45c3a0bb3687ed8e221253b3fd4a2ce";s:9:"EXCLUSIVE";s:40:"ID_MAFE_f45fabda0c6a595f709b3996398132f5";s:60:"Diverging gateways expect to receive only one incoming flow.";s:40:"ID_MAFE_f4636507ca93332f92f92fb219a43b02";s:19:"Database Connection";s:40:"ID_MAFE_f49b52022300199128ed01380edda751";s:62:"There are problems updating the Timer Event, please try again.";s:40:"ID_MAFE_f4ae7ce97eda9edfe1541b3fdea115b6";s:13:"Group or User";s:40:"ID_MAFE_f4ee0932c0b3cdb0af6d4407fc915b28";s:33:"The variable Name already exists.";s:40:"ID_MAFE_f4f33214dfca4a6aa8a15fff06c43ff5";s:13:"One date/time";s:40:"ID_MAFE_f4f70727dc34561dfde1a3c529b6205c";s:8:"Settings";s:40:"ID_MAFE_f54d8cf0ad33dc46d9452d4ea2462459";s:61:"There are problems update the Step Trigger, please try again.";s:40:"ID_MAFE_f6039d44b29456b20f8f373155ae4973";s:8:"Username";s:40:"ID_MAFE_f670ea66cfb0e90bd6090472ad692694";s:7:"Minutes";s:40:"ID_MAFE_f698f67f5666aff10729d8a1cb1c14d2";s:7:"Trigger";s:40:"ID_MAFE_f6e23536e8d5c5f27f6f6d774eb81652";s:50:"The configuring of multiple instances will be lost";s:40:"ID_MAFE_f6eb4ee83cd8508379e695479564fddd";s:88:"The imported dynaform include new variables and existing variables that require changes.";s:40:"ID_MAFE_f70649197cbdd9cde4fa62f00355a144";s:35:"The process was saved successfully.";s:40:"ID_MAFE_f724849ad2f7797436db0dbb5fc79a70";s:40:"Do you want to delete all routing rules?";s:40:"ID_MAFE_f727eb287649c090519308749775c175";s:16:"Previous Century";s:40:"ID_MAFE_f7531e2d0ea27233ce00b5f01c5bf335";s:5:"print";s:40:"ID_MAFE_f75963d32a20c9b16e02169b667aa569";s:15:"Callback Action";s:40:"ID_MAFE_f77415a724d143456212940f13767f42";s:54:"The file size exceeds the limit. Max allowed limit is:";s:40:"ID_MAFE_f775fa07e143b2e671946a48af8f42ca";s:10:"versioning";s:40:"ID_MAFE_f7a524eeeba4c19644a8492b922547ef";s:12:"Main Folders";s:40:"ID_MAFE_f7d0c779f08738b7af7e7da3777548c2";s:20:"Unsupported element.";s:40:"ID_MAFE_f82413ecc07fb74bf40ccfe963a5c4b6";s:9:"lowercase";s:40:"ID_MAFE_f827cf462f62848df37c5e1e94a4da74";s:4:"True";s:40:"ID_MAFE_f82e519e2e82239be5f49d78b24ea228";s:34:"Supported Controls: Multiple File.";s:40:"ID_MAFE_f8320b26d30ab433c5a54546d21f414c";s:5:"False";s:40:"ID_MAFE_f870c761f7f6737381a821feb9a73890";s:18:"This a sub-process";s:40:"ID_MAFE_f92965e2c8a7afb3c1b9a5c09a263636";s:4:"Done";s:40:"ID_MAFE_f93509db95228584504382f98aae0f52";s:13:"Message Types";s:40:"ID_MAFE_f945435ef7365a1e0ae2fa1b8230a17e";s:128:"Week of Yearw1 2 ... 52 53wo1st 2nd ... 52nd 53rd";s:40:"ID_MAFE_f97d2922ab3ce558f9943dd780d04ae7";s:55:"Allowed file extensions (Use .* to allow any extension)";s:40:"ID_MAFE_f9aae5fda8d810a29f12d1e61b4ab25f";s:5:"Users";s:40:"ID_MAFE_f9ab05454998236921a6b0e281fae632";s:8:"validate";s:40:"ID_MAFE_fa2b5b7c9bccd35e42cb74042690a091";s:14:"Email response";s:40:"ID_MAFE_fa3c608c8fc755543f0d37afd6a42651";s:5:"TO DO";s:40:"ID_MAFE_fa3e5edac607a88d8fd7ecb9d6d67424";s:5:"March";s:40:"ID_MAFE_fa53b9f14bee0d47d744863b871b4677";s:24:"Intermediate Timer Event";s:40:"ID_MAFE_fb216d9e8791e63c8d12bdc420956839";s:6:"locale";s:40:"ID_MAFE_fb7393c8bfd85b64a670cfd73a449a05";s:18:"Disable Grid Lines";s:40:"ID_MAFE_fb8e567d9b10447761969e1e08eebc2b";s:6:"Create";s:40:"ID_MAFE_fbb3a99250a09f01c3e8193f6fe9e1c4";s:25:"Step removed successfully";s:40:"ID_MAFE_fbb7d71920afdff488c3514f3f99fe7c";s:11:"Upload File";s:40:"ID_MAFE_fbd86a8fe4703e24aff466cbe75facd6";s:26:"This is a Message of Error";s:40:"ID_MAFE_fc13e2d25ee4c9f4b2263aa7066790a9";s:22:"Create Output Document";s:40:"ID_MAFE_fc4786f4974405965a4a00dde8d6e9f9";s:22:"Create/Select Variable";s:40:"ID_MAFE_fc85b3878f914dbad84b82aa35d1c9b9";s:16:"Output Documents";s:40:"ID_MAFE_fcf4ce3ff760206c487c9b5a6677dc1c";s:19:"Allowed Permissions";s:40:"ID_MAFE_fcfa44a72c608ed9ba6a46ee1b77556b";s:65:"There are problems updating the OutputDocument, please try again.";s:40:"ID_MAFE_fd05d7f6bfc90e815087880e8e915b43";s:9:"Examples:";s:40:"ID_MAFE_fd301d675be7b677ba979a430a80c010";s:2:"A8";s:40:"ID_MAFE_fe14a40df4290a46f7c41621d56ae987";s:71:"
    • Disabled: Control is greyed out, but still displays its value.
    • ";s:40:"ID_MAFE_fe8096b87357ded238c39b72488da84b";s:15:"Saved correctly";s:40:"ID_MAFE_fee203b36e6653c5cbe12bd1f3c6b119";s:9:"textfield";s:40:"ID_MAFE_ff4a008470319a22d9cf3d14af485977";s:4:"grid";s:40:"ID_MAFE_ffc1dca70df11105d22d9f427a9e260b";s:10:"Edit Label";s:40:"ID_MAFE_ffcf70e892b8ac3facbac0f88602396b";s:5:"Every";s:29:"ID_MAFE_TRANSLATION_DIRECTORY";s:26:"MAFE Translation Directory";s:25:"ID_MAIL_SENT_SUCCESSFULLY";s:39:"Your message has been sent successfully";s:20:"ID_MAIL_STATUS_ERROR";s:5:"Error";s:22:"ID_MAIL_STATUS_PENDING";s:7:"Pending";s:19:"ID_MAIL_STATUS_SENT";s:4:"Sent";s:20:"ID_MAIL_TEST_SUCCESS";s:30:"Test message sent successfully";s:28:"ID_MAIL_TO_NOT_VALID_ADDRESS";s:55:""Mail to" does not contain a valid email address format";s:14:"ID_MAINTENANCE";s:11:"Maintenance";s:10:"ID_MANAGER";s:7:"Manager";s:22:"ID_MANAGERS_DASHBOARDS";s:18:"Managers dashboard";s:20:"ID_MANUAL_ASSIGNMENT";s:17:"Manual Assignment";s:6:"ID_MAP";s:14:"My Case Status";s:11:"ID_MAP_TYPE";s:8:"Map Type";s:27:"ID_MARKET_SERVER_CONTACTING";s:49:"There was a problem contacting the market server.";s:13:"ID_MASKS_LIST";s:10:"Masks List";s:27:"ID_MATCH_ATTRIBUTES_TO_SYNC";s:24:"Match attributes to sync";s:29:"ID_MAXIMUM_SIZE_FILE_REQUIRED";s:34:"The file maximum size is required!";s:16:"ID_MAX_FILE_SIZE";s:24:"Maximum upload file size";s:26:"ID_MAX_INDICATOR_DASHBOARD";s:28:"Maximum number of Indicators";s:15:"ID_MAX_LIFETIME";s:25:"Cookie Lifetime (Seconds)";s:33:"ID_MAX_LIMIT_COLUMNS_FOR_DATABASE";s:88:"The maximun limit of columns for a database table is 255, you already have them defined!";s:8:"ID_MEDIA";s:5:"Media";s:9:"ID_MEMBER";s:6:"Member";s:10:"ID_MEMBERS";s:7:"Members";s:12:"ID_MEMBER_OF";s:9:"MEMBER OF";s:15:"ID_MEMORY_LIMIT";s:17:"Memory Limit (MB)";s:24:"ID_MEMORY_LIMIT_VALIDATE";s:60:"Memory Limit value has to be either a positive integer or -1";s:12:"ID_MENU_NAME";s:18:"Enterprise Manager";s:10:"ID_MESSAGE";s:7:"Message";s:11:"ID_MESSAGES";s:8:"Messages";s:19:"ID_MESSAGES_HISTORY";s:16:"Messages History";s:27:"ID_MESSAGE_EMPTY_DATE_FIELD";s:87:"There is at least one empty date field in the holiday grid, please check and try again.";s:46:"ID_MESSAGE_EVENT_DEFINITION_ALREADY_REGISTERED";s:62:"The Message-Event-Definition with {0}: {1} already registered.";s:42:"ID_MESSAGE_EVENT_DEFINITION_DOES_NOT_EXIST";s:58:"The Message-Event-Definition with {0}: {1} does not exist.";s:50:"ID_MESSAGE_EVENT_DEFINITION_DOES_NOT_IS_REGISTERED";s:66:"The Message-Event-Definition with {0}: {1} does not is registered.";s:60:"ID_MESSAGE_EVENT_DEFINITION_VARIABLES_DO_NOT_MEET_DEFINITION";s:70:"The variables do not meet with the definition of Message-Type-Variable";s:44:"ID_MESSAGE_EVENT_RELATION_ALREADY_REGISTERED";s:46:"The Message-Event-Relation already registered.";s:40:"ID_MESSAGE_EVENT_RELATION_DOES_NOT_EXIST";s:56:"The Message-Event-Relation with {0}: {1} does not exist.";s:53:"ID_MESSAGE_EVENT_RELATION_DOES_NOT_EXIST_MESSAGE_FLOW";s:61:"Does not exist a "Message Flow" between {0}: {1} and {2}: {3}";s:45:"ID_MESSAGE_EVENT_TASK_RELATION_DOES_NOT_EXIST";s:61:"The Message-Event-Task-Relation with {0}: {1} does not exist.";s:16:"ID_MESSAGE_LOGIN";s:139:"The default language set here is for the Language dropdown box displayed on the login screen. This configuration is set for each workspace.";s:30:"ID_MESSAGE_ROOT_CHANGE_FAILURE";s:35:"The root password can\'t be updated!";s:29:"ID_MESSAGE_ROOT_CHANGE_SUCESS";s:48:"The root password has been updated successfully!";s:15:"ID_MESSAGE_SENT";s:12:"message sent";s:29:"ID_MESSAGE_SUBJECT_DERIVATION";s:32:"Notification for task assignment";s:36:"ID_MESSAGE_SUBJECT_NOTE_NOTIFICATION";s:33:"A note has been added to the case";s:17:"ID_MESSAGE_SYSTEM";s:192:"The language that is set by default applies directly when the domain is entered (eg.- http://127.0.0.1:8081), the system reads the configuration and redirects the link to the selected language";s:18:"ID_MESSAGE_SYSTEM2";s:129:"(eg.- http://127.0.0.1:8081/sys/en/classic/login/login), it should be emphasized that this configuration is for all environments.";s:30:"ID_MESSAGE_TYPE_DOES_NOT_EXIST";s:46:"The Message Type with {0}: {1} does not exist.";s:35:"ID_MESSAGE_TYPE_NAME_ALREADY_EXISTS";s:53:"The Message Type Name with {0}: "{1}" already exists.";s:36:"ID_MESSAGE_TYPE_NAME_VARIABLE_EXISTS";s:32:"The name of the variable exists.";s:39:"ID_MESSAGE_TYPE_VARIABLE_DOES_NOT_EXIST";s:42:"The Variable with {0}: {1} does not exist.";s:44:"ID_MESSAGE_TYPE_VARIABLE_NAME_ALREADY_EXISTS";s:49:"The Variable Name with {0}: "{1}" already exists.";s:21:"ID_MESS_ENGINE_TYPE_1";s:10:"Mail (PHP)";s:21:"ID_MESS_ENGINE_TYPE_2";s:16:"SMTP (PHPMailer)";s:21:"ID_MESS_ENGINE_TYPE_3";s:15:"SMTP (OpenMail)";s:21:"ID_MESS_ENGINE_TYPE_4";s:19:"OAUTH (GMail OAuth)";s:25:"ID_MESS_SEND_MAX_REQUIRED";s:64:"The maximum number of attempts to send mail is a required field.";s:17:"ID_MESS_TEST_BODY";s:23:"ProcessMaker Test Email";s:35:"ID_MESS_TEST_MESSAGE_ERROR_PHP_MAIL";s:32:"Test message send failed, error:";s:27:"ID_MESS_TEST_MESSAGE_SENDED";s:30:"Test message sent successfully";s:20:"ID_MESS_TEST_SUBJECT";s:10:"Test Email";s:9:"ID_METHOD";s:6:"Method";s:10:"ID_METHODS";s:7:"Methods";s:15:"ID_MILLISECONDS";s:12:"Milliseconds";s:35:"ID_MINIMUM_DATA_REQUIRED_TO_RUN_THE";s:117:"Minimum data required to run the "Test Connection": "Server Address, Port, Enabled TLS, Anonymous, Username, Password";s:9:"ID_MINUTE";s:6:"Minute";s:10:"ID_MINUTES";s:7:"Minutes";s:20:"ID_MINUTE_ABBREVIATE";s:3:"min";s:26:"ID_MIN_INDICATOR_DASHBOARD";s:35:"You can not delete more Indicators.";s:11:"ID_MODIFIED";s:8:"Modified";s:6:"ID_MON";s:3:"Mon";s:19:"ID_MONITORED_FOLDER";s:16:"Monitored Folder";s:8:"ID_MONTH";s:5:"Month";s:9:"ID_MONTHS";s:6:"Months";s:10:"ID_MONTH_1";s:7:"January";s:11:"ID_MONTH_10";s:7:"October";s:11:"ID_MONTH_11";s:8:"November";s:11:"ID_MONTH_12";s:8:"December";s:10:"ID_MONTH_2";s:8:"February";s:10:"ID_MONTH_3";s:5:"March";s:10:"ID_MONTH_4";s:5:"April";s:10:"ID_MONTH_5";s:3:"May";s:10:"ID_MONTH_6";s:4:"June";s:10:"ID_MONTH_7";s:4:"July";s:10:"ID_MONTH_8";s:6:"August";s:10:"ID_MONTH_9";s:9:"September";s:14:"ID_MONTH_ABB_1";s:3:"Jan";s:15:"ID_MONTH_ABB_10";s:3:"Oct";s:15:"ID_MONTH_ABB_11";s:3:"Nov";s:15:"ID_MONTH_ABB_12";s:3:"Dec";s:14:"ID_MONTH_ABB_2";s:3:"Feb";s:14:"ID_MONTH_ABB_3";s:3:"Mar";s:14:"ID_MONTH_ABB_4";s:3:"Apr";s:14:"ID_MONTH_ABB_5";s:3:"May";s:14:"ID_MONTH_ABB_6";s:3:"Jun";s:14:"ID_MONTH_ABB_7";s:3:"Jul";s:14:"ID_MONTH_ABB_8";s:3:"Aug";s:14:"ID_MONTH_ABB_9";s:3:"Sep";s:12:"ID_MORE_INFO";s:9:"More Info";s:19:"ID_MORE_INFORMATION";s:16:"more information";s:12:"ID_MORE_THAN";s:9:"more than";s:22:"ID_MOST_AT_LEAST_3_DAY";s:40:"You must define at least 3 Working Days!";s:7:"ID_MOVE";s:4:"Move";s:19:"ID_MSG_AJAX_FAILURE";s:64:"An error has occurred. Please contact your system administrator.";s:18:"ID_MSG_ASSIGN_DONE";s:35:"User successfully assigned to group";s:35:"ID_MSG_CANNOT_DELETE_AUTHENTICATION";s:72:"The authentication source cannot be deleted while it has assigned users.";s:29:"ID_MSG_CANNOT_DELETE_CALENDAR";s:56:"The calendar cannot be deleted while it has assignations";s:29:"ID_MSG_CANNOT_DELETE_CATEGORY";s:71:"The category cannot be deleted while it is still assigned to processes.";s:31:"ID_MSG_CANNOT_DELETE_DEPARTMENT";s:61:"The department cannot be deleted while it has assigned users.";s:30:"ID_MSG_CANNOT_DELETE_INPUT_DOC";s:58:"Input Document cannot be deleted while has assigned tasks.";s:25:"ID_MSG_CANNOT_DELETE_USER";s:96:"The user cannot be deleted since it is referenced in a process design and/or has assigned cases.";s:33:"ID_MSG_CANNOT_EXPORT_DEFAULT_SKIN";s:71:"Default skin can\'t be exported. Instead create new one based on default";s:25:"ID_MSG_CANNOT_EXPORT_SKIN";s:31:"Can\'t export skin. Server Error";s:29:"ID_MSG_CANNOT_REMOVE_LANGUAGE";s:38:"You cannot delete the default language";s:28:"ID_MSG_CLEAR_GRID_FIRST_ITEM";s:56:"Do you want to clear the information from the first row?";s:31:"ID_MSG_CONFIRM_ASSIGN_ALL_USERS";s:55:"Do you want to assign all available users to this role?";s:26:"ID_MSG_CONFIRM_CANCEL_CASE";s:42:"Are you sure you want to cancel this case?";s:27:"ID_MSG_CONFIRM_CANCEL_CASES";s:51:"Are you sure you want to cancel all selected cases?";s:41:"ID_MSG_CONFIRM_DEASIGN_USER_GROUP_MESSAGE";s:51:"Are you sure you want to remove this user or group?";s:35:"ID_MSG_CONFIRM_DEASIGN_USER_MESSAGE";s:42:"Are you sure you want to remove this user?";s:33:"ID_MSG_CONFIRM_DELETE_AUTH_SOURCE";s:49:"Do you want to delete this authentication source?";s:26:"ID_MSG_CONFIRM_DELETE_CASE";s:42:"Are you sure you want to delete this case?";s:27:"ID_MSG_CONFIRM_DELETE_CASES";s:51:"Are you sure you want to delete all selected cases?";s:36:"ID_MSG_CONFIRM_DELETE_CASE_SCHEDULER";s:52:"Are you sure you want to delete this scheduled case?";s:41:"ID_MSG_CONFIRM_DELETE_CASE_TRACKER_OBJECT";s:34:"Do you want to delete this object?";s:31:"ID_MSG_CONFIRM_DELETE_CONDITION";s:38:"Are you sure to delete this condition?";s:32:"ID_MSG_CONFIRM_DELETE_DEPARTMENT";s:38:"Do you want to delete this department?";s:30:"ID_MSG_CONFIRM_DELETE_DOCUMENT";s:37:"Do you want to delete this document ?";s:30:"ID_MSG_CONFIRM_DELETE_DYNAFORM";s:37:"Do you want to delete this DynaForm ?";s:27:"ID_MSG_CONFIRM_DELETE_EVENT";s:33:"Do you want to delete this event?";s:27:"ID_MSG_CONFIRM_DELETE_GROUP";s:43:"Are you sure you want to delete this group?";s:31:"ID_MSG_CONFIRM_DELETE_IDOCUMENT";s:76:"This object is being used in some steps. Are you sure you want to delete it?";s:29:"ID_MSG_CONFIRM_DELETE_MESSAGE";s:35:"Do you want to delete this message?";s:28:"ID_MSG_CONFIRM_DELETE_OUTDOC";s:44:"Do you want to delete this output document ?";s:29:"ID_MSG_CONFIRM_DELETE_PROCESS";s:36:"Do you want to delete this process ?";s:34:"ID_MSG_CONFIRM_DELETE_REPORT_TABLE";s:40:"Do you want to delete this report table?";s:25:"ID_MSG_CONFIRM_DELETE_ROW";s:39:"Do you want to delete the selected row?";s:26:"ID_MSG_CONFIRM_DELETE_STEP";s:59:"Are you sure you want to eliminate this step from the task?";s:41:"ID_MSG_CONFIRM_DELETE_SUPERVISOR_DYNAFORM";s:36:"Do you want to remove this DynaForm?";s:38:"ID_MSG_CONFIRM_DELETE_SUPERVISOR_INPUT";s:42:"Do you want to remove this Input Document?";s:29:"ID_MSG_CONFIRM_DELETE_TRIGGER";s:35:"Do you want to delete this trigger?";s:26:"ID_MSG_CONFIRM_DELETE_USER";s:33:"Do you want to delete this user ?";s:46:"ID_MSG_CONFIRM_DELETE_USER_ASSINGED_SUPERVISOR";s:92:"The user can not be deleted while assigned as a supervisor. Do you want to delete it anyway?";s:44:"ID_MSG_CONFIRM_DELETE_USER_PRIVATE_PROCESSES";s:136:"This user has private processes, if you continue all the user\'s private processes will become public processes. Do you want to continue?";s:28:"ID_MSG_CONFIRM_DELETE_WEBBOT";s:44:"Are you sure you want to delete this webbot?";s:30:"ID_MSG_CONFIRM_REMOVE_LANGUAGE";s:46:"Are you sure you want to remove this language?";s:29:"ID_MSG_CONFIRM_REMOVE_TRIGGER";s:45:"Are you sure you want to remove this trigger?";s:26:"ID_MSG_CONFIRM_REMOVE_USER";s:42:"Are you sure you want to remove this user?";s:31:"ID_MSG_CONFIRM_REMOVE_USERGROUP";s:48:"Are you sure you want to remove this user group?";s:29:"ID_MSG_CONFIRM_RESET_TEMPLATE";s:55:"Are you sure you want to restore the default template ?";s:26:"ID_MSG_ENABLE_HTML_EDITING";s:150:"Warning: Editing the HTML prevents fields from being added or moved. Edit the HTML only after creating all the fields. Do you want to continue?";s:21:"ID_MSG_ERROR_DUE_DATE";s:18:"Due date required!";s:22:"ID_MSG_ERROR_PRO_TITLE";s:23:"Process title required!";s:26:"ID_MSG_ERROR_USR_FIRSTNAME";s:22:"First name is required";s:25:"ID_MSG_ERROR_USR_LASTNAME";s:21:"Last name is required";s:25:"ID_MSG_ERROR_USR_USERNAME";s:19:"User name required!";s:24:"ID_MSG_GROUP_NAME_EXISTS";s:26:"Group name already exists!";s:26:"ID_MSG_NORESULTS_USERGROUP";s:36:"This user is not assigned to a group";s:20:"ID_MSG_REMOVE_PLUGIN";s:49:"Are you sure that you want to remove this plugin?";s:28:"ID_MSG_REMOVE_PLUGIN_SUCCESS";s:28:"Plugin successfully removed!";s:15:"ID_MSJ_REPORSTO";s:89:"The current user does not have a valid Reports To user. Please contact the administrator.";s:24:"ID_MSSQL_SUCCESS_CONNECT";s:38:"Successfully connected to MSSQL Server";s:25:"ID_MSSQL_SUPPORT_OPTIONAL";s:26:"MSSQL Support is optional.";s:26:"ID_MULTIPLE_STARTING_TASKS";s:38:"Multiple starting tasks in the process";s:16:"ID_MYCASE_NUMBER";s:6:"Case #";s:26:"ID_MYSQL_CREDENTIALS_WRONG";s:72:"Connection Error: unable to connect to MySQL using provided credentials.";s:14:"ID_MYSQL_ERROR";s:16:"MySQL error: {0}";s:24:"ID_MYSQL_SUCCESS_CONNECT";s:38:"Successfully connected to MySQL Server";s:13:"ID_MY_ACCOUNT";s:10:"My account";s:11:"ID_MY_CASES";s:8:"My Cases";s:15:"ID_MY_DOCUMENTS";s:12:"My Documents";s:12:"ID_MY_DRAFTS";s:9:"My Drafts";s:11:"ID_MY_INBOX";s:8:"My inbox";s:7:"ID_NAME";s:4:"Name";s:14:"ID_NAME_EXISTS";s:15:"The name exists";s:16:"ID_NAME_REQUIRED";s:23:"Table Name is required.";s:25:"ID_NAME_STG_TITLE_REQUIRE";s:20:"Stage title required";s:25:"ID_NAME_TAS_TITLE_REQUIRE";s:19:"Task title required";s:10:"ID_NCAMBIO";s:42:"@#, Replaces the value without any change.";s:16:"ID_NEED_REGISTER";s:65:"You need to be registered to download this process. Register NOW!";s:6:"ID_NEW";s:3:"New";s:16:"ID_NEW_ADD_TABLE";s:12:"New PM Table";s:19:"ID_NEW_BPMN_PROJECT";s:16:"New BPMN Project";s:11:"ID_NEW_CASE";s:8:"New case";s:12:"ID_NEW_CASES";s:11:"% New Cases";s:17:"ID_NEW_CASE_PANEL";s:14:"New Case Panel";s:21:"ID_NEW_CASE_SCHEDULER";s:18:"New Case Scheduler";s:15:"ID_NEW_CATEGORY";s:19:"Create New Category";s:26:"ID_NEW_CONDITION_FROM_STEP";s:23:"New Condition From Step";s:17:"ID_NEW_DEPARTMENT";s:3:"New";s:15:"ID_NEW_DYNAFORM";s:13:"New DynaForm.";s:12:"ID_NEW_EVENT";s:9:"New Event";s:13:"ID_NEW_FOLDER";s:10:"New Folder";s:12:"ID_NEW_GROUP";s:3:"New";s:16:"ID_NEW_INPUTDOCS";s:18:"New Input Document";s:11:"ID_NEW_NOTE";s:8:"New Note";s:15:"ID_NEW_PASSWORD";s:12:"New Password";s:20:"ID_NEW_PASSWORD_SENT";s:49:"Your new password was sent to your email account!";s:25:"ID_NEW_PASS_SAME_OLD_PASS";s:38:"The confirm password must be the same!";s:14:"ID_NEW_PMTABLE";s:12:"New PM Table";s:14:"ID_NEW_PROJECT";s:11:"New Project";s:19:"ID_NEW_REPORT_TABLE";s:16:"New Report Table";s:23:"ID_NEW_REPORT_TABLE_OLD";s:30:"New Report Table (Old Version)";s:19:"ID_NEW_SITE_TESTING";s:19:"New site testing...";s:11:"ID_NEW_SKIN";s:8:"New Skin";s:11:"ID_NEW_STEP";s:8:"New Step";s:21:"ID_NEW_SUB_DEPARTMENT";s:18:"New Sub-Department";s:20:"ID_NEW_TAB_INDICATOR";s:13:"Add Indicator";s:18:"ID_NEW_TRANSLATION";s:15:"New Translation";s:15:"ID_NEW_TRIGGERS";s:11:"New Trigger";s:14:"ID_NEW_VERSION";s:11:"New Version";s:16:"ID_NEW_WEB_ENTRY";s:13:"New Web Entry";s:16:"ID_NEW_WORKSPACE";s:13:"New Workspace";s:7:"ID_NEXT";s:4:"Next";s:12:"ID_NEXT_STEP";s:9:"Next Step";s:12:"ID_NEXT_TASK";s:15:"Next Task/Event";s:7:"ID_NLIC";s:30:"License installed successfully";s:5:"ID_NO";s:2:"No";s:20:"ID_NODELETEOPTIONALL";s:121:"You must add all the days that you have selected in work days, otherwise you should leave at least an "-- ALL --" option.";s:7:"ID_NONE";s:4:"None";s:8:"ID_NONEC";s:35:"@# Replace the value with no change";s:21:"ID_NON_WRITABLE_FILES";s:18:"Non-writable Files";s:9:"ID_NORMAL";s:6:"Normal";s:16:"ID_NORMAL_EXPORT";s:6:"Normal";s:14:"ID_NOTES_READY";s:5:"Ready";s:9:"ID_NOTICE";s:6:"Notice";s:15:"ID_NOTIFICATION";s:12:"Notification";s:21:"ID_NOTIFICATION_ERROR";s:62:"A problem occurred while trying to send the Task Notification.";s:9:"ID_NOTIFY";s:6:"Notify";s:28:"ID_NOTIFY_USERS_AFTER_ASSIGN";s:46:"After routing notify the next assigned user(s)";s:20:"ID_NOTIFY_USERS_CASE";s:20:"Notify users of case";s:24:"ID_NOT_ABLE_DELETE_CASES";s:78:"You are not allowed to delete cases, please contact your System Administrator.";s:20:"ID_NOT_ABLE_REASSIGN";s:51:"You are not able to reassign cases of this process.";s:25:"ID_NOT_AVAILABLE_DATABASE";s:14:"Not available.";s:19:"ID_NOT_CREATE_TABLE";s:40:"Could not create the table with the name";s:14:"ID_NOT_DEFINED";s:11:"Not defined";s:16:"ID_NOT_DERIVATED";s:61:"The case couldn\'t be routed. Consult the system administrator";s:14:"ID_NOT_ENABLED";s:11:"Not Enabled";s:20:"ID_NOT_EXECUTE_QUERY";s:87:"Changes to {0} are forbidden. Please contact system administrator for more information.";s:18:"ID_NOT_EXISTS_FILE";s:20:"File does not exists";s:15:"ID_NOT_FINISHED";s:12:"Not finished";s:32:"ID_NOT_HAVE_BOOKMARKED_PROCESSES";s:35:"You don\'t have bookmarked processes";s:17:"ID_NOT_HAVE_USERS";s:19:"doesn\'t have users.";s:15:"ID_NOT_IMPORTED";s:12:"NOT IMPORTED";s:16:"ID_NOT_IN_FOLDER";s:13:"Not in folder";s:13:"ID_NOT_PASSED";s:11:"Not Passed.";s:14:"ID_NOT_PM_FILE";s:22:"This is not a .pm file";s:17:"ID_NOT_PRIVILEGES";s:26:"You do not have privileges";s:22:"ID_NOT_PROCESS_RELATED";s:18:"Not from a Process";s:36:"ID_NOT_REGISTERED_PROCESS_SUPERVISOR";s:67:"This id: {0} does not correspond to a registered process supervisor";s:15:"ID_NOT_REQUIRED";s:12:"Not Required";s:11:"ID_NOT_SENT";s:8:"Not sent";s:21:"ID_NOT_VALID_RELATION";s:63:"This id for pu_uid: {0} does not correspond to a valid relation";s:16:"ID_NOT_WORKSPACE";s:44:"You have specified an unavailable workspace.";s:26:"ID_NOT_WORKSPACE_SPECIFIED";s:23:"No workspace specified!";s:19:"ID_NO_DB_CONNECTION";s:27:"No DB Connection to display";s:26:"ID_NO_DERIVATION_BPMN_RULE";s:173:"Process definition error: All conditions in evaluation routing rule evaluated to false, so workflow has stopped. Please change the definition of the evaluation routing rule.";s:21:"ID_NO_DERIVATION_RULE";s:191:"Process definition error: All conditions in parallel evaluation routing rule evaluated to false, so workflow has stopped. Please change the definition of the parallel evaluation routing rule.";s:11:"ID_NO_EXIST";s:14:"Does not exist";s:17:"ID_NO_FIELD_FOUND";s:16:"No fields found!";s:23:"ID_NO_IMAGES_TO_DISPLAY";s:20:"No images to display";s:27:"ID_NO_INEFFICIENT_PROCESSES";s:24:"No Inefficient Processes";s:23:"ID_NO_INEFFICIENT_TASKS";s:20:"No Inefficient Tasks";s:23:"ID_NO_INEFFICIENT_USERS";s:20:"No Inefficient Users";s:29:"ID_NO_INEFFICIENT_USER_GROUPS";s:26:"No Inefficient User Groups";s:13:"ID_NO_INSTALL";s:115:"A problem occurred during the installation of the system. Please, uninstall the partial installation and try again.";s:24:"ID_NO_INTERNET_CONECTION";s:52:"Enterprise Plugins Manager no connected to internet.";s:20:"ID_NO_ITEMS_SELECTED";s:17:"No item selected.";s:29:"ID_NO_LICENSE_FEATURE_ENABLED";s:84:"Your license does not have the Gmail integration. Please contact your administrator.";s:22:"ID_NO_MANAGER_SELECTED";s:19:"No Manager Selected";s:23:"ID_NO_MORE_APPLICATIONS";s:29:"No more applications to show.";s:18:"ID_NO_NEW_VERSIONS";s:25:"No new versions available";s:25:"ID_NO_OLDER_SESSION_FILES";s:32:"There are no older session files";s:32:"ID_NO_PERMISSION_NO_PARTICIPATED";s:179:"You cannot open this case because on the reason below:
      You do not have permission to see this case.
      You have not participated in this case.
      Case is already claimed.";s:22:"ID_NO_PREVIOUS_USR_UID";s:41:"The previous task doesn\'t have any users.";s:14:"ID_NO_REASSIGN";s:15:"Do not reassign";s:13:"ID_NO_RECORDS";s:10:"No records";s:19:"ID_NO_RECORDS_FOUND";s:16:"No records found";s:21:"ID_NO_RELATED_PROCESS";s:35:"The related process does not exists";s:18:"ID_NO_REPORT_TABLE";s:64:"The table \'{0}\' that you trying to import is not a report table.";s:12:"ID_NO_RESUME";s:31:"The user doesn\'t have a resume.";s:21:"ID_NO_SELECTED_FIELDS";s:18:"No selected fields";s:23:"ID_NO_SELECTION_WARNING";s:59:"One item should be selected in order to execute the action.";s:24:"ID_NO_SET_MANAGER_SUCCES";s:28:"Manager unassigned correctly";s:19:"ID_NO_STARTING_TASK";s:24:"No starting task defined";s:11:"ID_NO_USERS";s:32:"The task doesn\'t have any users.";s:11:"ID_NO_VALUE";s:2:"No";s:7:"ID_NULL";s:4:"Null";s:15:"ID_NUMBER_CASES";s:12:"Number cases";s:9:"ID_OBJECT";s:6:"Object";s:22:"ID_OBJECTS_UNAVAILABLE";s:65:"No objects are available. All objects have been already assigned.";s:18:"ID_OBJECT_ASSIGNED";s:38:"Objects has been successfully assigned";s:15:"ID_OBJECT_CLASS";s:14:"Object Classes";s:16:"ID_OBJECT_FAILED";s:24:"Failed to assign Objects";s:16:"ID_OBJECT_REMOVE";s:36:"Object has been removed successfully";s:16:"ID_OBJECT_UPDATE";s:34:"User has been updated successfully";s:6:"ID_OFF";s:3:"Off";s:17:"ID_OFFLINE_TABLES";s:14:"Offline Tables";s:25:"ID_OFFLINE_TABLES_DISABLE";s:17:"Set Online Tables";s:24:"ID_OFFLINE_TABLES_ENABLE";s:18:"Set Offline Tables";s:15:"ID_OF_THE_MONTH";s:15:"of the month(s)";s:5:"ID_OK";s:2:"Ok";s:14:"ID_OLD_VERSION";s:11:"old version";s:5:"ID_ON";s:2:"On";s:15:"ID_ONCE_PER_DAY";s:12:"Once per day";s:10:"ID_ON_TIME";s:7:"On Time";s:7:"ID_OPEN";s:4:"Open";s:19:"ID_OPENSSL_OPTIONAL";s:20:"OpenSSL is optional.";s:12:"ID_OPEN_CASE";s:9:"Open Case";s:16:"ID_OPEN_DATABASE";s:16:"Opening database";s:10:"ID_OPEN_DB";s:23:"Trying to open database";s:20:"ID_OPEN_DYNAFORM_TAB";s:30:"Open the Dynaform in a new tab";s:17:"ID_OPEN_IN_:POPUP";s:15:"Open in a popup";s:23:"ID_OPEN_IN_A_NEW_WINDOW";s:20:"Open in a new window";s:16:"ID_OPEN_IN_POPUP";s:15:"Open in a popup";s:12:"ID_OPEN_WITH";s:9:"Open With";s:19:"ID_OPERATING_SYSTEM";s:16:"Operating System";s:9:"ID_OPTION";s:6:"Option";s:10:"ID_OPTIONS";s:7:"Options";s:20:"ID_OPTIONS_MENU_TASK";s:17:"Options Menu Task";s:10:"ID_OPT_ALL";s:3:"All";s:16:"ID_OPT_COMPLETED";s:15:"Completed by Me";s:11:"ID_OPT_JUMP";s:7:"Jump To";s:11:"ID_OPT_READ";s:4:"Read";s:14:"ID_OPT_STARTED";s:13:"Started by Me";s:13:"ID_OPT_UNREAD";s:6:"Unread";s:14:"ID_ORIENTATION";s:11:"Orientation";s:9:"ID_ORIGIN";s:6:"Origin";s:14:"ID_ORIGIN_TASK";s:11:"Origin Task";s:8:"ID_OTHER";s:5:"Other";s:9:"ID_OUTBOX";s:6:"Outbox";s:18:"ID_OUTGOING_SERVER";s:15:"Outgoing Server";s:12:"ID_OUTPUT_DB";s:6:"Output";s:18:"ID_OUTPUT_DOCUMENT";s:15:"Output Document";s:19:"ID_OUTPUT_DOCUMENTS";s:16:"Output Documents";s:47:"ID_OUTPUT_DOCUMENT_CONFIG_NOT_SUPPORT_EXTENSION";s:65:"The document in its configuration does not support this extension";s:33:"ID_OUTPUT_DOCUMENT_DOES_NOT_EXIST";s:49:"The Output Document with {0}: {1} does not exist.";s:36:"ID_OUTPUT_DOCUMENT_INVALID_EXTENSION";s:17:"Invalid extension";s:31:"ID_OUTPUT_DOCUMENT_ITS_ASSIGNED";s:57:"The Output Document with {0}: {1} it\'s assigned in "{2}".";s:27:"ID_OUTPUT_DOCUMENT_TEMPLATE";s:24:"Output Document Template";s:18:"ID_OUTPUT_GENERATE";s:27:"Output Document to Generate";s:14:"ID_OUTPUT_INFO";s:27:"Output Document Information";s:19:"ID_OUTPUT_NOT_EXIST";s:42:"The output with {0}: \'{1}\' does not exist.";s:18:"ID_OUTPUT_NOT_SAVE";s:81:"Not saved because there is an Output Document with the same name in this process.";s:16:"ID_OUTPUT_REMOVE";s:45:"Output document has been removed successfully";s:16:"ID_OUTPUT_UPDATE";s:46:"Output document has been updated successfully.";s:27:"ID_OUT_PUT_DOC_UPLOAD_TITLE";s:36:"Upload Output Document Template File";s:30:"ID_OU_FOR_RETIRED_EMPLOYEES_OU";s:27:"OU for Retired Employees OU";s:10:"ID_OVERDUE";s:11:"Task Status";s:12:"ID_OVERWRITE";s:9:"Overwrite";s:18:"ID_OVERWRITE_EXIST";s:20:"Overwrite if exists?";s:20:"ID_OVERWRITE_PMTABLE";s:74:"The PMTable \'{0}\' already exists in the workspace, what do you want to do?";s:28:"ID_OVERWRITE_RELATED_PROCESS";s:99:"The report table \'{0}\' that you want to import is related to other process, what do you want to do?";s:20:"ID_OVERWRITE_RPTABLE";s:61:"The report table \'{0}\' already exist, what do you want to do?";s:11:"ID_OVER_DUE";s:12:"Inbox Status";s:8:"ID_OWNER";s:5:"Owner";s:20:"ID_OWNER_INFORMATION";s:17:"Owner Information";s:13:"ID_OWNER_TYPE";s:10:"Owner type";s:7:"ID_PAGE";s:4:"Page";s:12:"ID_PAGE_SIZE";s:9:"Page Size";s:16:"ID_PARALLEL_TASK";s:13:"Parallel Task";s:13:"ID_PARAMETERS";s:10:"Parameters";s:30:"ID_PARENT_DEPARTMENT_NOT_EXIST";s:31:"Parent department doesn\'t exist";s:16:"ID_PARTICIPATION";s:13:"Participation";s:25:"ID_PARTICIPATION_REQUIRED";s:23:"Participation Required?";s:18:"ID_PASSWD_REQUIRED";s:20:"Password is required";s:11:"ID_PASSWORD";s:8:"Password";s:23:"ID_PASSWORDS_DONT_MATCH";s:32:"The password fields don\'t match.";s:17:"ID_PASSWORD_ADMIN";s:32:"Password (admin)(Max. length 20)";s:24:"ID_PASSWORD_ADMIN_RETYPE";s:16:"Re-type Password";s:32:"ID_PASSWORD_CHANGED_SUCCESSFULLY";s:46:"Your password has been successfully changed to";s:29:"ID_PASSWORD_COMPLIES_POLICIES";s:49:"The password complies with the security policies.";s:19:"ID_PASSWORD_CONFIRM";s:16:"Confirm Password";s:34:"ID_PASSWORD_CONFIRMATION_INCORRECT";s:39:"The password confirmation is incorrect.";s:19:"ID_PASSWORD_CURRENT";s:16:"Current Password";s:25:"ID_PASSWORD_CURRENT_ENTER";s:26:"Enter the current password";s:29:"ID_PASSWORD_CURRENT_INCORRECT";s:33:"The current password is incorrect";s:21:"ID_PASSWORD_SURPRASES";s:50:"Password is longer than the maximum allowed length";s:19:"ID_PASSWORD_TESTING";s:16:"Testing password";s:7:"ID_PATH";s:4:"Path";s:8:"ID_PAUSE";s:5:"Pause";s:9:"ID_PAUSED";s:6:"Paused";s:14:"ID_PAUSED_CASE";s:5:"Pause";s:13:"ID_PAUSE_CASE";s:10:"Pause Case";s:21:"ID_PAUSE_CASE_TO_DATE";s:35:"Do you want to pause the case until";s:13:"ID_PAUSE_DATE";s:10:"Pause Date";s:15:"ID_PAUSING_CASE";s:12:"Pausing Case";s:10:"ID_PENDING";s:7:"Pending";s:15:"ID_PENDING_TASK";s:27:"Pending Task / Not Executed";s:16:"ID_PENDING_TASKS";s:13:"Pending Tasks";s:15:"ID_PERFORM_TASK";s:17:"Perform this Task";s:9:"ID_PERIOD";s:6:"Period";s:14:"ID_PERIODICITY";s:11:"Periodicity";s:14:"ID_PERMISSIONS";s:11:"Permissions";s:26:"ID_PERMISSIONS_FOR_THE_ROL";s:24:"Permissions for the role";s:27:"ID_PERMISSION_ALREADY_EXIST";s:30:"The Permission already exists!";s:18:"ID_PERMISSION_CODE";s:15:"Permission Code";s:28:"ID_PERMISSION_DOES_NOT_EXIST";s:44:"The permission with {0}: {1} does not exist.";s:18:"ID_PERMISSION_NAME";s:15:"Permission Name";s:17:"ID_PERMISSION_NEW";s:23:"New specific Permission";s:13:"ID_PERMITIONS";s:11:"Permissions";s:23:"ID_PERSONAL_INFORMATION";s:20:"Personal information";s:8:"ID_PHONE";s:5:"Phone";s:15:"ID_PHONE_NUMBER";s:12:"Phone Number";s:8:"ID_PHOTO";s:5:"Photo";s:11:"ID_PHP_INFO";s:15:"PHP Information";s:26:"ID_PHP_MSSQL_NOT_INSTALLED";s:26:"php-mssql is Not Installed";s:25:"ID_PHP_MYSQLI_NOT_INSTALL";s:27:"php-mysqli is Not Installed";s:25:"ID_PHP_MYSQL_NOT _INSTALL";s:26:"php-mysql is Not Installed";s:14:"ID_PHP_VERSION";s:11:"PHP Version";s:18:"ID_PHP_WEB_SERVICE";s:25:"PHP & Web Service options";s:6:"ID_PIN";s:3:"Pin";s:14:"ID_PIN_INVALID";s:18:"The PIN is invalid";s:9:"ID_PLEASE";s:6:"please";s:32:"ID_PLEASE_CHANGE_PASSWORD_POLICY";s:69:"Please change your password to one that complies with these policies.";s:43:"ID_PLEASE_CONFIGURE_ESTIMATED_DURATION_TASK";s:53:"Please, configure the estimated duration of the task.";s:24:"ID_PLEASE_ENTER_COMMENTS";s:22:"Please enter comments!";s:27:"ID_PLEASE_ENTER_CREDENTIALS";s:35:"Please enter your credentials below";s:27:"ID_PLEASE_ENTER_DESCRIPTION";s:28:"Please, enter a description.";s:31:"ID_PLEASE_ENTER_REQUIRED_FIELDS";s:32:"Please enter the required fields";s:21:"ID_PLEASE_SELECT_FILE";s:33:"Please select the file to attach!";s:32:"ID_PLEASE_SELECT_FILES_TO_UPLOAD";s:33:"Please select the files to upload";s:21:"ID_PLEASE_SELECT_LOGO";s:18:"Please Select Logo";s:29:"ID_PLEASE_SELECT_MAX_X_FIELDS";s:31:"Please select 80 fields at most";s:22:"ID_PLEASE_SELECT_PHOTO";s:21:"Please select a photo";s:23:"ID_PLEASE_SELECT_PLUGIN";s:24:"Please select the plugin";s:24:"ID_PLEASE_SELECT_PO_FILE";s:24:"Please select a .po file";s:29:"ID_PLEASE_SELECT_UPGRADE_FILE";s:30:"Please select the upgrade file";s:45:"ID_PLEASE_SET_VALUE_DAYS_EXECUTION_TIME_FIELD";s:61:"Please, set a value for the days in the Execution Time field.";s:19:"ID_PLEASE_TRY_LATER";s:17:"Please try later.";s:14:"ID_PLEASE_WAIT";s:14:"Please wait...";s:10:"ID_PLUGINS";s:7:"Plugins";s:20:"ID_PLUGINS_DIRECTORY";s:17:"Plugins Directory";s:18:"ID_PLUGINS_MANAGER";s:15:"Plugins Manager";s:21:"ID_PLUGIN_CANT_DELETE";s:62:"The plugin is activated, please deactivate first to remove it.";s:27:"ID_PLUGIN_DEPENDENCE_PLUGIN";s:39:"This plugin needs "{Dependence}" plugin";s:14:"ID_PLUGIN_FILE";s:11:"Plugin file";s:18:"ID_PMDRIVE_DISABLE";s:155:"Are you sure to disable the Google Drive Integration? If you do this, the input, output and file documents will be stored only in your ProcessMaker server.";s:29:"ID_PMDRIVE_NO_CONTENT_IN_FILE";s:50:"The file doesn\'t have any content stored on Drive.";s:10:"ID_PMGMAIL";s:8:"PM Gmail";s:18:"ID_PMGMAIL_DISABLE";s:124:"Are you sure to disable the Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled.";s:24:"ID_PMGMAIL_GENERAL_ERROR";s:46:"An error in processing Gmail requests occurred";s:19:"ID_PMGMAIL_SETTINGS";s:31:"Settings for Processmaker Gmail";s:16:"ID_PMGMAIL_VALID";s:29:"The Gmail token is not valid.";s:12:"ID_PMG_EMAIL";s:21:"Service Account Email";s:11:"ID_PMG_FILE";s:27:"Service Account Certificate";s:18:"ID_PMG_SELECT_FILE";s:35:"Please select a json file to upload";s:18:"ID_PMG_TYPE_ACCEPT";s:33:"Only accepts files in format json";s:39:"ID_PMPLUGIN_IMPORT_PLUGIN_IS_ENTERPRISE";s:113:"The plugin "{0}" is a Enterprise Edition Plugin, please install the Enterprise Plugins Manager to use this plugin";s:10:"ID_PMTABLE";s:8:"PM Table";s:11:"ID_PMTABLES";s:9:"PM Tables";s:18:"ID_PMTABLES_ALERT1";s:46:"You can\'t repeat a column name, please rename:";s:18:"ID_PMTABLES_ALERT2";s:39:"Field Name for all columns is required.";s:18:"ID_PMTABLES_ALERT3";s:40:"Field Label for all columns is required.";s:18:"ID_PMTABLES_ALERT4";s:27:"Please set a field type for";s:18:"ID_PMTABLES_ALERT5";s:28:"Please set a field size for:";s:18:"ID_PMTABLES_ALERT6";s:47:"At least one column must be set as Primary Key.";s:18:"ID_PMTABLES_ALERT7";s:41:"Please set columns for this Report Table.";s:18:"ID_PMTABLES_ALERT8";s:30:"Set a Physical Field Name for:";s:23:"ID_PMTABLES_CANT_EXPORT";s:30:"There are no tables to export.";s:25:"ID_PMTABLES_NOTICE_EXPORT";s:58:"From each table select at least one Schema/Data to export.";s:38:"ID_PMTABLES_RESERVED_FIELDNAME_WARNING";s:71:"The word {0} is reserved by the database engine please set another one.";s:25:"ID_PMTABLE_ALREADY_EXISTS";s:30:"The table "{0}" already exits!";s:29:"ID_PMTABLE_CLASS_DOESNT_EXIST";s:41:"ERROR: The class fie "{0}" doesn\'t exist!";s:31:"ID_PMTABLE_DATA_EXISTS_WARNINIG";s:84:"record(s) were found in this table. If you edit the structure all data will be lost.";s:20:"ID_PMTABLE_DATA_KEEP";s:29:"Keep the records of the table";s:25:"ID_PMTABLE_DOES_NOT_EXIST";s:42:"The PM Table with {0}: {1} does not exist.";s:35:"ID_PMTABLE_FIELD_IS_NOT_PRIMARY_KEY";s:63:"The field {0}: {1}, is not a primary key field of the PM Table.";s:25:"ID_PMTABLE_IMPORT_SUCCESS";s:33:"File "{0}" imported successfully.";s:29:"ID_PMTABLE_IMPORT_WITH_ERRORS";s:36:"File "{0}" imported but with errors:";s:29:"ID_PMTABLE_INVALID_FIELD_NAME";s:84:"The following fields cannot be created because they contain the reserved words "{0}"";s:38:"ID_PMTABLE_INVALID_FIELD_NAME_VARIABLE";s:177:"There is a conflict with some field names: "{0}", please rename them avoiding the use of numbers and considering that underscores are ignored when validating unique field names.";s:23:"ID_PMTABLE_INVALID_FILE";s:41:"Invalid PM table(s) file, import aborted!";s:23:"ID_PMTABLE_INVALID_NAME";s:77:"Could not create the table with the name "{0}" because it is a reserved word.";s:20:"ID_PMTABLE_NOT_FOUND";s:62:"The PM Table associated with this DynaForm could not be found.";s:33:"ID_PMTABLE_NOT_FOUNDED_SAVED_DATA";s:116:"The data from this case was saved in the database, but it was not saved in the PM Table, which it couldn\'t be found.";s:32:"ID_PMTABLE_NOT_IMPORT_HAS_ERRORS";s:39:"File "{0}" was not imported has errors:";s:52:"ID_PMTABLE_PRIMARY_KEY_FIELD_IS_MISSING_IN_ATTRIBUTE";s:74:"The primary key field {0} of the PM Table is missing in the attribute {1}.";s:19:"ID_PMTABLE_REQUIRED";s:35:"It is required to select a PM table";s:29:"ID_PMTABLE_SAVE_AND_DATA_LOST";s:36:"Save changes? All data will be lost.";s:61:"ID_PMTABLE_TOTAL_PRIMARY_KEY_FIELDS_IS_NOT_EQUAL_IN_ATTRIBUTE";s:92:"The total primary key fields of the PM Table is {0}, the attribute {1} has {2} primary keys.";s:33:"ID_PMTABLE_UPLOADING_FILE_PROBLEM";s:40:"A problem occurred while uploading file.";s:14:"ID_PM_DYNAFORM";s:17:"PM Table Dynaform";s:29:"ID_PM_ENV_HOME_SETTINGS_TITLE";s:13:"Home Settings";s:34:"ID_PM_ENV_SETTINGS_CASESLIST_TITLE";s:20:"Cases Lists Settings";s:39:"ID_PM_ENV_SETTINGS_REGIONFIELDSET_TITLE";s:17:"Regional Settings";s:24:"ID_PM_ENV_SETTINGS_TITLE";s:33:"Processmaker Environment Settings";s:37:"ID_PM_ENV_SETTINGS_USERFIELDSET_TITLE";s:28:"Display Information Settings";s:14:"ID_PM_FILENAME";s:17:"Download PM File:";s:12:"ID_PM_FOLDER";s:19:"ProcessMaker Folder";s:26:"ID_PM_FUNCTION_CHANGE_CASE";s:87:"The "{0}" function has {1} the current case, the script has stopped to avoid conflicts.";s:10:"ID_PM_GRID";s:6:"pmGrid";s:30:"ID_PM_HEARTBEAT_SETTINGS_TITLE";s:24:"Heart Beat Configuration";s:11:"ID_PM_TABLE";s:8:"PM Table";s:15:"ID_POLICY_ALERT";s:60:"Your password does not meet the following password policies:";s:20:"ID_POLICY_ALERT_INFO";s:47:"Your password must meet the following policies:";s:7:"ID_PORT";s:4:"Port";s:19:"ID_PORT_UNREACHABLE";s:28:"Destination Port Unreachable";s:11:"ID_POSITION";s:8:"Position";s:12:"ID_POSTED_AT";s:9:"Posted at";s:20:"ID_POSTED_DATA_EMPTY";s:25:"The posted data is empty!";s:39:"ID_PPP_CHANGE_PASSWORD_AFTER_NEXT_LOGIN";s:63:"Your previous password has expired, please enter a new password";s:20:"ID_PPP_EXPIRATION_IN";s:22:"Password Expiration in";s:21:"ID_PPP_MAXIMUM_LENGTH";s:14:"Maximum length";s:21:"ID_PPP_MAXIMUN_LENGTH";s:14:"Maximum length";s:21:"ID_PPP_MINIMUM_LENGTH";s:14:"Minimum length";s:21:"ID_PPP_MINIMUN_LENGTH";s:14:"Minimum length";s:35:"ID_PPP_NUMERICAL_CHARACTER_REQUIRED";s:31:"Numerical Character is required";s:33:"ID_PPP_SPECIAL_CHARACTER_REQUIRED";s:29:"Special Character is required";s:35:"ID_PPP_UPPERCASE_CHARACTER_REQUIRED";s:31:"Uppercase Character is required";s:14:"ID_PREFERENCES";s:11:"Preferences";s:9:"ID_PREFIX";s:6:"Prefix";s:18:"ID_PREINSTALLATION";s:22:"Pre-installation check";s:10:"ID_PREVIEW";s:7:"Preview";s:11:"ID_PREVIOUS";s:8:"Previous";s:17:"ID_PREVIOUS_MONTH";s:14:"Previous Month";s:19:"ID_PREVIOUS_QUARTER";s:16:"Previous quarter";s:16:"ID_PREVIOUS_STEP";s:13:"Previous Step";s:16:"ID_PREVIOUS_WEEK";s:13:"Previous Week";s:16:"ID_PREVIOUS_YEAR";s:13:"Previous Year";s:10:"ID_PREVIUS";s:8:"Previous";s:14:"ID_PREV_VALUES";s:15:"Previous Values";s:14:"ID_PRIMARY_KEY";s:11:"Primary Key";s:11:"ID_PRIORITY";s:8:"Priority";s:13:"ID_PRIORITY_H";s:4:"HIGH";s:13:"ID_PRIORITY_L";s:3:"LOW";s:13:"ID_PRIORITY_N";s:6:"NORMAL";s:14:"ID_PRIORITY_VH";s:9:"VERY HIGH";s:14:"ID_PRIORITY_VL";s:8:"VERY LOW";s:10:"ID_PRIVACY";s:7:"Privacy";s:10:"ID_PRIVATE";s:7:"Private";s:12:"ID_PROCESING";s:15:"Processing: {0}";s:10:"ID_PROCESS";s:7:"Process";s:12:"ID_PROCESSED";s:9:"Processed";s:12:"ID_PROCESSES";s:9:"Processes";s:13:"ID_PROCESSING";s:14:"Processing ...";s:15:"ID_PROCESSMAKER";s:12:"ProcessMaker";s:33:"ID_PROCESSMAKER_ALREADY_INSTALLED";s:34:"ProcessMaker is already installed.";s:39:"ID_PROCESSMAKER_FORGOT_PASSWORD_SERVICE";s:36:"ProcessMaker Forgot Password Service";s:28:"ID_PROCESSMAKER_INSTALLATION";s:25:"ProcessMaker Installation";s:23:"ID_PROCESSMAKER_LICENSE";s:32:"ProcessMaker Open Source License";s:33:"ID_PROCESSMAKER_REQUIREMENTS_APCU";s:4:"ACPU";s:34:"ID_PROCESSMAKER_REQUIREMENTS_CHECK";s:21:"Check PM Requirements";s:33:"ID_PROCESSMAKER_REQUIREMENTS_CURL";s:12:"cURL Version";s:40:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION";s:106:"If any of these items are not supported (marked as " No"), then please take actions to correct them.
      ";s:41:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION2";s:104:"Failure to do so correctly could lead to your ProcessMaker installation not functioning correctly!
      ";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP1_1";s:97:"If any of these items are not supported (marked as No), then please take actions to correct them.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP1_2";s:85:"Failure to do so could lead your ProcessMaker installation not functioning correctly.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP2_1";s:95:"These settings are recommended for PHP in order to ensure full compatibility with ProcessMaker.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP2_2";s:83:"However, ProcessMaker still operates if your settings do not match the recommended.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_1";s:119:"In order for ProcessMaker to function correctly it needs to be able to access or write to certain files or directories.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_2";s:135:"If you see "unwritable", change the permissions on the file or directory to allow ProcessMaker to write to it.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP4_1";s:141:"ProcessMaker stores all of its data in a database. This screen gives the installation program the information needed to create this database.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP4_2";s:123:"If you are installing ProcessMaker on a remote web server, you will need to get this information from your Database Server.";s:46:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP5";s:105:"ProcessMaker uses workspaces to store data. Please enter a valid workspace name and credentials to login.";s:46:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP6";s:3:"xxx";s:35:"ID_PROCESSMAKER_REQUIREMENTS_DOMXML";s:15:"DOM/XML Support";s:31:"ID_PROCESSMAKER_REQUIREMENTS_GD";s:10:"GD Support";s:33:"ID_PROCESSMAKER_REQUIREMENTS_LDAP";s:16:"LDAP Support (*)";s:42:"ID_PROCESSMAKER_REQUIREMENTS_LDAP_OPTIONAL";s:16:"LDAP is optional";s:40:"ID_PROCESSMAKER_REQUIREMENTS_MEMORYLIMIT";s:21:"Memory Limit >= 256MB";s:34:"ID_PROCESSMAKER_REQUIREMENTS_MSSQL";s:17:"MSSQL Support (*)";s:44:"ID_PROCESSMAKER_REQUIREMENTS_MULTIBYTESTRING";s:25:"Multibyte Strings Support";s:34:"ID_PROCESSMAKER_REQUIREMENTS_MYSQL";s:13:"MySQL Support";s:36:"ID_PROCESSMAKER_REQUIREMENTS_OPENSSL";s:19:"OpenSSL Version (*)";s:45:"ID_PROCESSMAKER_REQUIREMENTS_OPENSSL_OPTIONAL";s:20:"Open SSL is optional";s:32:"ID_PROCESSMAKER_REQUIREMENTS_PHP";s:76:"PHP recommended version 7.4, we maintain compatibility starting with PHP 7.3";s:33:"ID_PROCESSMAKER_REQUIREMENTS_SOAP";s:12:"Soap Support";s:23:"ID_PROCESSMAKER_SLOGAN1";s:48:"This Business Process is Powered By ProcessMaker";s:33:"ID_PROCESSMAKER_SUCCESS_INSTALLED";s:94:"ProcessMaker was successfully installed
      Workspace " {0} " was installed correctly.";s:30:"ID_PROCESSMAKER_UI_NOT_INSTALL";s:119:"The new ProcessMaker UI couldn\'t be applied on installation. You can enable it afterwards in ADMIN > Settings > System.";s:26:"ID_PROCESSMAKER_VALIDATION";s:113:"Please insert a valid processmaker user name and password, in order to assign the case to their respective owner.";s:34:"ID_PROCESSMAKER_WRITE_CONFIG_INDEX";s:59:"ProcessMaker couldn\'t write on configuration file: {0}
      ";s:37:"ID_PROCESSMAP_CALENDAR_CONFIRM_DELETE";s:46:"Are you sure you want to delete this calendar?";s:23:"ID_PROCESSMAP_DYNAFORMS";s:9:"DynaForms";s:24:"ID_PROCESSMAP_EVALUATION";s:10:"Evaluation";s:22:"ID_PROCESSMAP_MESSAGES";s:8:"Messages";s:38:"ID_PROCESSMAP_PARALLEL_EVALUATION_FORK";s:29:"Parallel by Evaluation (fork)";s:27:"ID_PROCESSMAP_PARALLEL_FORK";s:15:"Parallel (fork)";s:27:"ID_PROCESSMAP_PARALLEL_JOIN";s:15:"Parallel (join)";s:23:"ID_PROCESSMAP_SELECTION";s:9:"Selection";s:24:"ID_PROCESSMAP_SEQUENTIAL";s:10:"Sequential";s:19:"ID_PROCESSMAP_TITLE";s:13:"BPMN Designer";s:29:"ID_PROCESSNAME_ALREADY_EXISTS";s:32:"The Process Name already exists!";s:30:"ID_PROCESSTITLE_ALREADY_EXISTS";s:47:"The Process Title "{PRO_TITLE}" already exists!";s:28:"ID_PROCESS_ALREADY_IN_SYSTEM";s:85:"The process is already in the System and the value for importOption is not specified.";s:62:"ID_PROCESS_CANNOT_BE_UPDATED_THERE_ARE_TASKS_WITH_ACTIVE_CASES";s:237:"The process cannot be updated because there are tasks with active cases which are not presented in the new definition of the process, please verify that there are not active cases in those tasks before trying to import the process again.";s:22:"ID_PROCESS_CANT_DELETE";s:60:"You can\'t delete the process "{0}" because it has {1} cases.";s:19:"ID_PROCESS_CATEGORY";s:18:"Process Categories";s:32:"ID_PROCESS_DEFINITION_INCOMPLETE";s:91:"To create a new process all the process objects must be selected/included in the pmx2 file.";s:34:"ID_PROCESS_DEFINITION_NON_EXISTENT";s:59:"The PROCESS_DEFINITION is required to complete the process.";s:22:"ID_PROCESS_DEF_PROBLEM";s:80:"There is a problem in the process definition and/or an exception error occurred.";s:27:"ID_PROCESS_DELETE_ALL_LABEL";s:45:"Do you want to delete all selected processes?";s:23:"ID_PROCESS_DELETE_LABEL";s:43:"Do you want to delete the selected process?";s:18:"ID_PROCESS_DETAILS";s:15:"Process Details";s:25:"ID_PROCESS_DOES_NOT_EXIST";s:41:"The process with {0}: {1} does not exist.";s:21:"ID_PROCESS_EFFICIENCE";s:24:"Process Efficiency Index";s:27:"ID_PROCESS_EXIST_SOME_GROUP";s:119:"Some of the groups that you are trying to import already exist. Please select one of the following options to continue.";s:23:"ID_PROCESS_FILE_MANAGER";s:20:"Process File Manager";s:34:"ID_PROCESS_GROUP_MERGE_PREEXISTENT";s:106:"Merge the imported groups, with the preexistent local groups (no changes will be made to the local groups)";s:23:"ID_PROCESS_GROUP_RENAME";s:26:"Rename the imported groups";s:13:"ID_PROCESS_ID";s:10:"Process ID";s:23:"ID_PROCESS_INEFFICIENCE";s:25:"Process Inefficiency Cost";s:22:"ID_PROCESS_INFORMATION";s:19:"Process Information";s:22:"ID_PROCESS_IS_REQUIRED";s:25:"Process field is required";s:14:"ID_PROCESS_MAP";s:11:"Process Map";s:15:"ID_PROCESS_NAME";s:12:"Process Name";s:21:"ID_PROCESS_NOCATEGORY";s:11:"No Category";s:24:"ID_PROCESS_NONE_CATEGORY";s:15:"- No Category -";s:20:"ID_PROCESS_NOT_EXIST";s:247:"The report table \'{0}\' is related to a process not present in the workspace, import the related process first. To relate the report table to other process, open the process in the designer and import from there. The report table can\'t be imported.";s:22:"ID_PROCESS_NO_CATEGORY";s:11:"No Category";s:19:"ID_PROCESS_NO_EXIST";s:22:"Process doesn\'t exist!";s:22:"ID_PROCESS_PERMISSIONS";s:19:"Process Permissions";s:29:"ID_PROCESS_PERMISSIONS_CREATE";s:39:"Process Permission created successfully";s:27:"ID_PROCESS_PERMISSIONS_EDIT";s:38:"Process Permission edited successfully";s:31:"ID_PROCESS_PERMISSION_NOT_EXIST";s:54:"The process permission with {0}: \'{1}\' does not exist.";s:15:"ID_PROCESS_SAVE";s:12:"Process Save";s:23:"ID_PROCESS_SAVE_SUCCESS";s:35:"The process was saved successfully!";s:31:"ID_PROCESS_SUCESSFULLY_IMPORTED";s:28:"Process sucessfully imported";s:16:"ID_PROCESS_TASKS";s:14:"Process\'s Task";s:25:"ID_PROCESS_TITLE_REQUIRED";s:26:"Process Title is required.";s:14:"ID_PROCESS_UID";s:11:"Process UID";s:26:"ID_PROCESS_UID_NOT_DEFINED";s:31:"the process uid is not defined!";s:34:"ID_PROCESS_VARIABLE_DOES_NOT_EXIST";s:42:"The variable with {0}: {1} does not exist.";s:48:"ID_PROCESS_VARIABLE_REQUIRED_VARIABLES_FOR_QUERY";s:62:"The variable "{0}" requires the variables "{1}" for the query.";s:22:"ID_PROCESS_WAS_NOT_SET";s:27:"The Process ID was not set!";s:10:"ID_PROFILE";s:7:"Profile";s:34:"ID_PROJECT_CATEGORY_DOES_NOT_EXIST";s:50:"The project category with {0}: {1} does not exist.";s:25:"ID_PROJECT_DOES_NOT_EXIST";s:41:"The project with {0}: {1} does not exist.";s:29:"ID_PROJECT_DOWNLOAD_CORRECTLY";s:32:"Project downloaded successfully.";s:18:"ID_PROJECT_IS_BPMN";s:42:"The project with {0}: {1} is BPMN process.";s:20:"ID_PROJECT_NOT_EXIST";s:43:"The project with {0}: \'{1}\' does not exist.";s:30:"ID_PROJECT_PUBLISHED_CORRECTLY";s:37:"Project has been published correctly.";s:27:"ID_PROJECT_SHARED_CORRECTLY";s:34:"Project has been shared correctly.";s:31:"ID_PROJECT_TITLE_ALREADY_EXISTS";s:49:"The project title with {0}: "{1}" already exists.";s:22:"ID_PROJECT_WAS_NOT_SET";s:27:"The Project ID was not set!";s:13:"ID_PROPERTIES";s:10:"Properties";s:11:"ID_PROVIDER";s:8:"Provider";s:13:"ID_PROXY_HOST";s:4:"Host";s:17:"ID_PROXY_PASSWORD";s:8:"Password";s:13:"ID_PROXY_PORT";s:4:"Port";s:17:"ID_PROXY_SETTINGS";s:14:"Proxy Settings";s:13:"ID_PROXY_USER";s:4:"User";s:18:"ID_PRO_CREATE_DATE";s:12:"Date Created";s:12:"ID_PRO_DEBUG";s:5:"Debug";s:18:"ID_PRO_DESCRIPTION";s:19:"Process Description";s:23:"ID_PRO_EFFICIENCY_INDEX";s:24:"Process Efficiency Index";s:12:"ID_PRO_TITLE";s:13:"Process Title";s:29:"ID_PRO_UID_PARAMETER_IS_EMPTY";s:31:"The PRO_UID parameter is empty.";s:11:"ID_PRO_USER";s:14:"Assigned users";s:9:"ID_PUBLIC";s:6:"Public";s:20:"ID_PUBLIC_INDEX_FILE";s:17:"Public Index file";s:12:"ID_PUBLISHER";s:9:"Publisher";s:10:"ID_QUARTER";s:7:"Quarter";s:8:"ID_QUERY";s:5:"Query";s:14:"ID_QUOTA_TOTAL";s:11:"Quota total";s:13:"ID_QUOTA_TYPE";s:10:"Quota type";s:13:"ID_QUOTA_USED";s:10:"Quota used";s:19:"ID_RADIO_CREATE_NEW";s:30:"Create a new copy of the Table";s:21:"ID_RADIO_NOT_IMPORTED";s:23:"Do not import the Table";s:25:"ID_RADIO_NOT_IMPORTED_PMT";s:23:"Do not import the Table";s:25:"ID_RADIO_NOT_IMPORTED_RPT";s:30:"Do not import the report table";s:18:"ID_RADIO_OVERWRITE";s:28:"Overwrite the existing Table";s:24:"ID_RADIO_RELATED_PROCESS";s:43:"Import and relate it to the current process";s:9:"ID_RATING";s:6:"Rating";s:16:"ID_RBAC_DATABASE";s:13:"Rbac Database";s:21:"ID_RBAC_DATABASE_NAME";s:36:"Please enter the Rbac Database Name.";s:19:"ID_RB_DATABASE_NAME";s:18:"Rbac Database Name";s:13:"ID_REACTIVATE";s:10:"Reactivate";s:20:"ID_REACTIVATING_CASE";s:20:"Reactivating case...";s:28:"ID_READ_ONLINE_DOCUMENTATION";s:25:"Read Online Documentation";s:16:"ID_REALLY_SHOULD";s:23:"You really should do it";s:9:"ID_REASON";s:6:"Reason";s:18:"ID_REASON_REASSIGN";s:28:"Reason to reassign this case";s:11:"ID_REASSIGN";s:8:"Reassign";s:13:"ID_REASSIGNED";s:10:"Reassigned";s:16:"ID_REASSIGNED_TO";s:13:"Reassigned to";s:15:"ID_REASSIGNMENT";s:12:"REASSIGNMENT";s:21:"ID_REASSIGNMENT_ERROR";s:106:"The case has already been routed or assigned to another person. Try to open the case again to reassign it.";s:28:"ID_REASSIGNMENT_PAUSED_ERROR";s:42:"The case is paused and can\'t be reasigned.";s:23:"ID_REASSIGNMENT_SUCCESS";s:49:"Case #{APP_NUMBER} was reassigned to user {USER}.";s:29:"ID_REASSIGN_ALL_CASES_BY_TASK";s:26:"Reassign All Cases by Task";s:16:"ID_REASSIGN_CASE";s:13:"Reassign Case";s:17:"ID_REASSIGN_CASES";s:14:"Reassign Cases";s:19:"ID_REASSIGN_CONFIRM";s:33:"Do you want to reassign the case?";s:20:"ID_REASSIGN_MY_CASES";s:17:"Reassign my cases";s:14:"ID_REASSIGN_TO";s:8:"Reassign";s:17:"ID_REASSIGN_USERS";s:17:"User Reassignment";s:26:"ID_REBUILDING_TRANSLATIONS";s:23:"Rebuilding translations";s:18:"ID_REBUILD_SUCCESS";s:15:"REBUILD SUCCESS";s:26:"ID_RECEIVED_EMPTY_RESPONSE";s:26:"Received an empty response";s:24:"ID_RECENT_VERSION_PLUGIN";s:72:"Task does not have a routing rule. Please, check the process definition.";s:10:"ID_RECORDS";s:7:"Records";s:27:"ID_RECORD_CANNOT_BE_CREATED";s:33:"The record couldn’t be created!";s:24:"ID_RECORD_DOES_NOT_EXIST";s:21:"Record does not exist";s:33:"ID_RECORD_DOES_NOT_EXIST_IN_TABLE";s:46:"The record "{0}", does not exist in table {1}.";s:25:"ID_RECORD_EXISTS_IN_TABLE";s:37:"The record "{0}" exists in table {1}.";s:19:"ID_RECORD_NOT_FOUND";s:28:"Record not found for id: {0}";s:27:"ID_RECORD_SAVED_SUCCESFULLY";s:25:"Record saved successfully";s:15:"ID_REDIRECT_URL";s:59:"The System can try to redirect to the correct url. Try Now.";s:14:"ID_RED_ENDS_IN";s:11:"Red Ends In";s:16:"ID_RED_STARTS_IN";s:13:"Red Starts In";s:16:"ID_REFRESH_LABEL";s:7:"Refresh";s:27:"ID_REFRESH_LABEL_PLUGIN_TIP";s:23:"Refresh the plugin list";s:18:"ID_REFRESH_MESSAGE";s:21:"You clicked Ctrl + F5";s:21:"ID_REFRESH_TIME_SCOPE";s:54:"Only applied for counters in the home view folder list";s:23:"ID_REFRESH_TIME_SECONDS";s:31:"Counters Refresh Time (seconds)";s:15:"ID_REFRESH_VIEW";s:12:"Refresh view";s:13:"ID_REGENERATE";s:10:"Regenerate";s:25:"ID_REGENERATE_DATA_REPORT";s:22:"Regenerate Data Report";s:29:"ID_REGISTRY_CANNOT_BE_UPDATED";s:31:"The registry cannot be updated!";s:17:"ID_RELATED_GROUPS";s:14:"Related Groups";s:18:"ID_RELATED_PROCESS";s:15:"Related Process";s:16:"ID_RELATED_TASKS";s:13:"Related Tasks";s:16:"ID_RELATED_USERS";s:13:"Related Users";s:17:"ID_RELATION_EXIST";s:29:"This relation already exists!";s:9:"ID_RELOAD";s:6:"Reload";s:9:"ID_REMOVE";s:6:"Remove";s:10:"ID_REMOVED";s:7:"Removed";s:24:"ID_REMOVED_SESSION_FILES";s:36:"Older session files has been removed";s:25:"ID_REMOVE_ALL_BUTTON_FACE";s:2:"<<";s:20:"ID_REMOVE_ALL_GROUPS";s:17:"Remove All Groups";s:21:"ID_REMOVE_ALL_MEMBERS";s:18:"Remove All Members";s:25:"ID_REMOVE_ALL_PERMISSIONS";s:22:"Remove All Permissions";s:19:"ID_REMOVE_ALL_USERS";s:16:"Remove All Users";s:15:"ID_REMOVE_FIELD";s:12:"Remove field";s:14:"ID_REMOVE_LOGO";s:42:"Are you sure you want to delete this Logo?";s:16:"ID_REMOVE_PLUGIN";s:13:"Remove Plugin";s:14:"ID_REMOVE_ROLE";s:42:"Are you sure you want to delete this role?";s:29:"ID_REMOVE_SUPERVISOR_DYNAFORM";s:26:"Remove Supervisor Dynaform";s:26:"ID_REMOVE_SUPERVISOR_INPUT";s:23:"Remove Supervisor Input";s:14:"ID_REMOVE_USER";s:11:"Remove User";s:32:"ID_REMOVE_USERS_FROM_DEPARTAMENT";s:28:"Remove Users From Department";s:22:"ID_REMOVE_VARIABLES_IN";s:19:"Remove Variables In";s:23:"ID_REMOVE_VARIABLES_OUT";s:20:"Remove Variables Out";s:27:"ID_REMOVING_SELECTED_TABLES";s:40:"Removing selected table(s), please wait!";s:9:"ID_RENAME";s:6:"Rename";s:8:"ID_RENEW";s:5:"Renew";s:9:"ID_REOPEN";s:7:"re-open";s:15:"ID_REPEAT_EVERY";s:12:"Repeat every";s:12:"ID_REPEAT_ON";s:9:"Repeat on";s:14:"ID_REPLACED_BY";s:11:"Replaced by";s:16:"ID_REPLACED_LOGO";s:21:"The logo was replaced";s:14:"ID_REPLACE_ALL";s:11:"Replace all";s:15:"ID_REPLACE_LOGO";s:12:"Replace Logo";s:26:"ID_REPLACE_WITHOUT_CHANGES";s:33:"Replace the value without changes";s:10:"ID_REPORT1";s:33:"Case duration by process and task";s:10:"ID_REPORT2";s:27:"Number of cases per process";s:10:"ID_REPORT3";s:25:"Number of cases per month";s:10:"ID_REPORT4";s:33:"Number of cases per starting user";s:10:"ID_REPORT5";s:34:"Number of cases per executing user";s:10:"ID_REPORTS";s:7:"Reports";s:13:"ID_REPORTS_TO";s:10:"Reports to";s:18:"ID_REPORT_DATABASE";s:15:"Report Database";s:23:"ID_REPORT_DATABASE_NAME";s:38:"Please enter the Report Database Name.";s:16:"ID_REPORT_EDITED";s:32:"Report Table Edited Successfully";s:17:"ID_REPORT_REMOVED";s:42:"Report Table has been removed successfully";s:14:"ID_REPORT_SAVE";s:31:"Report Table Saved Successfully";s:15:"ID_REPORT_TABLE";s:12:"Report Table";s:16:"ID_REPORT_TABLES";s:13:"Report Tables";s:40:"ID_REPORT_TABLES_DATA_EXPORT_NOT_ALLOWED";s:45:"Data export for Report Tables is not allowed!";s:21:"ID_REPORT_TABLE_TITLE";s:5:"Title";s:17:"ID_REQUEST_ACTION";s:25:"You may request an action";s:27:"ID_REQUEST_ACTION_NOT_EXIST";s:35:"The requested action does not exist";s:20:"ID_REQUEST_DOCUMENTS";s:15:"Input Documents";s:15:"ID_REQUEST_SENT";s:13:"Request sent.";s:17:"ID_REQUIRED_FIELD";s:14:"Required Field";s:24:"ID_REQUIRED_FIELDS_ERROR";s:36:"Some required fields were not filled";s:23:"ID_REQUIRED_FIELDS_GRID";s:122:"The marked fields in the form are required and/or have errors in their format. Please verify the fields before continuing.";s:31:"ID_REQUIRED_NAME_CASE_SCHEDULER";s:41:"You forgot the name of the Case Scheduler";s:25:"ID_REQUIRED_NAME_DYNAFORM";s:23:"Dynaform name required.";s:9:"ID_RESEND";s:6:"Resend";s:16:"ID_RESERVED_WORD";s:29:"because it is a reserved word";s:8:"ID_RESET";s:5:"Reset";s:14:"ID_RESET_DATES";s:11:"Reset Dates";s:16:"ID_RESET_FILTERS";s:13:"Reset Filters";s:17:"ID_RESET_PASSWORD";s:14:"Reset password";s:25:"ID_RESOLVE_APPLICATION_ID";s:52:"Can not resolve the Apllication ID for this request.";s:30:"ID_RESPONSABILITIES_ASSIGNMENT";s:30:"Assignment of responsibilities";s:23:"ID_RESTORED_SUCESSFULLY";s:20:"Restored sucessfully";s:18:"ID_RESTORE_DEFAULT";s:15:"Restore default";s:15:"ID_RESTORE_LOGO";s:24:"Restore the default logo";s:17:"ID_RESTORING_CASE";s:14:"Restoring case";s:9:"ID_RESULT";s:6:"Result";s:9:"ID_RESUME";s:6:"Resume";s:25:"ID_RETURN_ADVANCED_SEARCH";s:6:"Return";s:8:"ID_RIGHT";s:5:"right";s:15:"ID_RIGHT_MARGIN";s:12:"Right Margin";s:7:"ID_ROLE";s:4:"Role";s:8:"ID_ROLES";s:5:"Roles";s:23:"ID_ROLES_CAN_NOT_DELETE";s:67:"This role cannot be deleted while it still has some assigned users.";s:12:"ID_ROLES_MSG";s:28:"You cannot modify this role.";s:23:"ID_ROLES_SUCCESS_DELETE";s:37:"Your role has been deleted correctly.";s:20:"ID_ROLES_SUCCESS_NEW";s:32:"Role has been created correctly.";s:23:"ID_ROLES_SUCCESS_UPDATE";s:32:"Role has been updated correctly.";s:27:"ID_ROLE_CODE_ALREADY_EXISTS";s:45:"The role code with {0}: "{1}" already exists.";s:30:"ID_ROLE_CODE_INVALID_CHARACTER";s:61:"The \'Code\' field cannot contain special characters or spaces.";s:22:"ID_ROLE_DOES_NOT_EXIST";s:38:"The role with {0}: {1} does not exist.";s:14:"ID_ROLE_EXISTS";s:25:"Role code already exists.";s:47:"ID_ROLE_FIELD_CANNOT_CONTAIN_SPECIAL_CHARACTERS";s:60:"The "{0}" field cannot contain special characters or spaces.";s:16:"ID_ROLE_INACTIVE";s:27:"The user\'s role is inactive";s:27:"ID_ROLE_NAME_ALREADY_EXISTS";s:45:"The role name with {0}: "{1}" already exists.";s:22:"ID_ROLE_NAME_NOT_EMPTY";s:34:"The \'Name\' field can not be empty.";s:38:"ID_ROLE_PERMISSION_IS_ALREADY_ASSIGNED";s:61:"The permission with {0}: {1} is already assigned to the role.";s:34:"ID_ROLE_PERMISSION_IS_NOT_ASSIGNED";s:57:"The permission with {0}: {1} is not assigned to the role.";s:54:"ID_ROLE_PERMISSION_ROLE_PERMISSIONS_CAN_NOT_BE_CHANGED";s:53:"The permissions of the "{0}" role can not be changed.";s:32:"ID_ROLE_USER_IS_ALREADY_ASSIGNED";s:55:"The user with {0}: {1} is already assigned to the role.";s:28:"ID_ROLE_USER_IS_NOT_ASSIGNED";s:51:"The user with {0}: {1} is not assigned to the role.";s:14:"ID_ROOT_FOLDER";s:11:"Root Folder";s:12:"ID_ROOT_USER";s:9:"Root User";s:18:"ID_ROOT_USER_SUPER";s:29:"Root User has SUPER privilege";s:21:"ID_ROUTED_CASE_STATUS";s:18:"Routed Case Status";s:22:"ID_ROUTE_BATCH_ROUTING";s:22:"Route cases per batch?";s:19:"ID_ROUTE_IS_SECJOIN";s:32:"The route is of "SEC-JOIN" type.";s:48:"ID_ROUTE_PARENT_DOES_NOT_EXIST_FOR_ROUTE_SECJOIN";s:66:"The parent route does not exist for this route of "SEC-JOIN" type.";s:47:"ID_ROUTE_TO_TASK_INTERMEDIATE-THROW-EMAIL-EVENT";s:50:"The following case is a "Intermediate Email Event"";s:49:"ID_ROUTE_TO_TASK_INTERMEDIATE_CATCH_MESSAGE_EVENT";s:67:"The case will be paused until you receive the corresponding message";s:47:"ID_ROUTE_TO_TASK_INTERMEDIATE_CATCH_TIMER_EVENT";s:63:"The case will be stopped until it has reached the time setting.";s:28:"ID_ROUTE_TO_TASK_SCRIPT_TASK";s:37:"The following case is a "Script-Task"";s:29:"ID_ROUTE_TO_TASK_SERVICE_TASK";s:38:"The following case is a "Service-Task"";s:41:"ID_ROUTING_SCREEN_TEMPLATE_DOES_NOT_EXIST";s:57:"The routing screen template with {0}: {1} does not exist.";s:7:"ID_ROWS";s:4:"Rows";s:16:"ID_ROWS_PER_PAGE";s:13:"Rows per Page";s:21:"ID_ROW_DOES_NOT_EXIST";s:24:"This row does not exist!";s:19:"ID_RP_DATABASE_NAME";s:20:"Report Database Name";s:27:"ID_RT_CONTINUE_TABLE_RENAME";s:27:"Continue renaming the table";s:21:"ID_RT_NOT_CHANGE_NAME";s:18:"Do not change name";s:23:"ID_RT_RENAME_NAME_TABLE";s:111:"All references to the previous table name are going to be invalid. Do you really want to change the table name?";s:24:"ID_RULES_AND_USER_GROUPS";s:21:"Rules and user groups";s:27:"ID_SALES_DEPARTMENT_REQUEST";s:64:"It sends a request to Sales Department, do you want to continue?";s:14:"ID_SAML_ENABLE";s:26:"SAML Authentication Enable";s:16:"ID_SAML_PROVIDER";s:28:"SAML Authentication Provider";s:10:"ID_SAMPLES";s:7:"Samples";s:6:"ID_SAT";s:3:"Sat";s:7:"ID_SAVE";s:4:"Save";s:8:"ID_SAVED";s:5:"Saved";s:9:"ID_SAVED2";s:8:"Saved...";s:21:"ID_SAVED_SUCCESSFULLY";s:18:"Saved Successfully";s:20:"ID_SAVE_AND_CONTINUE";s:17:"Save and Continue";s:15:"ID_SAVE_CHANGES";s:12:"Save Changes";s:39:"ID_SAVE_DERIVATION_RULES_BEFORE_CLOSING";s:49:"Save changes to the routing rules before closing?";s:44:"ID_SAVE_DYNAFORM_INFORMATION_BEFORE_PRINTING";s:64:"Do you want to save the dynaform information before printing it?";s:22:"ID_SAVE_GUIDE_POSITION";s:18:"Save Line Position";s:16:"ID_SAVE_NEW_STEP";s:13:"Save New Step";s:16:"ID_SAVE_SETTINGS";s:13:"Save Settings";s:21:"ID_SAVE_TASK_POSITION";s:18:"Save Task Position";s:23:"ID_SAVE_TASK_PROPERTIES";s:20:"Save Task Properties";s:21:"ID_SAVE_TEXT_POSITION";s:18:"Save Text Position";s:9:"ID_SAVING";s:9:"Saving...";s:30:"ID_SAVING_ENVIRONMENT_SETTINGS";s:27:"Saving Environment Settings";s:15:"ID_SAVING_LABEL";s:6:"Saving";s:17:"ID_SAVING_PROCESS";s:14:"Saving process";s:17:"ID_SCHEDULER_LIST";s:19:"New cases scheduler";s:16:"ID_SCHEDULER_LOG";s:20:"Cases Scheduler Logs";s:34:"ID_SCHEDULER_SUCCESS_CHANGE_STATUS";s:49:"Case Scheduler status has been changed correctly.";s:27:"ID_SCHEDULER_SUCCESS_DELETE";s:42:"Case Scheduler has been deleted correctly.";s:24:"ID_SCHEDULER_SUCCESS_NEW";s:42:"Case Scheduler has been created correctly.";s:27:"ID_SCHEDULER_SUCCESS_UPDATE";s:42:"Case Scheduler has been updated correctly.";s:17:"ID_SCHEDULER_TASK";s:17:"Scheduled Task ID";s:9:"ID_SCHEMA";s:6:"Schema";s:14:"ID_SCRIPT_TASK";s:11:"Script Task";s:42:"ID_SCRIPT_TASK_ACTIVITY_ALREADY_REGISTERED";s:50:"The Script-Task with {0}: "{1}" already registered";s:9:"ID_SEARCH";s:6:"Search";s:12:"ID_SEARCHING";s:12:"Searching...";s:27:"ID_SEARCHING_CANCEL_MESSAGE";s:135:"We are still gathering your search results. This may take a while based on your search criteria. You may cancel this search at any time";s:21:"ID_SEARCHING_TIME_OUT";s:21:"Your search timed out";s:29:"ID_SEARCHING_UNEXPECTED_ERROR";s:116:"An unexpected error occurred while searching for your results. Error Code {0} and Please contact your administrator.";s:37:"ID_SEARCHING_UNEXPECTED_ERROR_DEFAULT";s:97:"An unexpected error occurred while searching for your results. Please contact your administrator.";s:22:"ID_SEARCH_ALSO_APP_UID";s:32:"Search also in the APP_UID field";s:18:"ID_SEARCH_FOR_USER";s:15:"Search for user";s:17:"ID_SEARCH_PATTERN";s:14:"Search Pattern";s:16:"ID_SEARCH_RESULT";s:14:"Search results";s:14:"ID_SEARCH_USER";s:8:"Username";s:22:"ID_SEARCH_XML_METADATA";s:19:"Search XML metadata";s:9:"ID_SECOND";s:6:"Second";s:10:"ID_SECONDS";s:7:"Seconds";s:20:"ID_SECOND_ABBREVIATE";s:1:"s";s:16:"ID_SECOND_FIGURE";s:12:"Second Graph";s:6:"ID_SEE";s:3:"See";s:16:"ID_SEE_FULL_LIST";s:17:"See complete list";s:9:"ID_SELECT";s:6:"Select";s:11:"ID_SELECTED";s:8:"selected";s:17:"ID_SELECTED_FIELD";s:14:"selected field";s:25:"ID_SELECTED_IMAGE_DELETED";s:36:"The selected image has been deleted.";s:25:"ID_SELECTED_IMAGE_IS_LOGO";s:51:"The selected image has been established as the logo";s:13:"ID_SELECT_ALL";s:70:"You must define at least one \'ALL\' for other days you have not defined";s:18:"ID_SELECT_AN_IMAGE";s:22:"Please select an image";s:21:"ID_SELECT_AUTH_SOURCE";s:31:"Select Authentication Source...";s:19:"ID_SELECT_DATE_TIME";s:51:"Select the time and day you want this task to start";s:21:"ID_SELECT_DAY_OF_WEEK";s:35:"Select the day(s) of the week below";s:19:"ID_SELECT_DIRECTORY";s:18:"Select a directory";s:18:"ID_SELECT_DYNAFORM";s:31:"Please select the Dynaform Type";s:30:"ID_SELECT_DYNAFORM_USE_IN_CASE";s:86:"The "dyn_uid" parameter is required to configure a Web Entry of type "Single Dynaform"";s:14:"ID_SELECT_FILE";s:13:"Select a file";s:25:"ID_SELECT_FILE_PMT_IMPORT";s:25:"Please select a .pmt file";s:24:"ID_SELECT_FILE_PM_IMPORT";s:24:"Please select a .pm file";s:28:"ID_SELECT_FIRST_PM_TABLE_ROW";s:45:"First select a PM Table from the list please.";s:19:"ID_SELECT_FIRST_ROW";s:32:"First select a ROW from the list";s:14:"ID_SELECT_GRID";s:13:"Select a grid";s:28:"ID_SELECT_LANGUAGE_FROM_LIST";s:45:"First select a language from the list please.";s:21:"ID_SELECT_LEAST_FIELD";s:65:"Select at least one field (You can select a maximum of 80 fields)";s:22:"ID_SELECT_LICENSE_FILE";s:21:"Select a license file";s:22:"ID_SELECT_ONE_AT_LEAST";s:38:"Select at least one item from the list";s:28:"ID_SELECT_ONE_ITEM_FROM_LIST";s:47:"Select just one item from the list to be edited";s:20:"ID_SELECT_ONE_OPTION";s:17:"select one option";s:22:"ID_SELECT_OPTION_TABLE";s:73:"Select an option to export the schema or data from the selected table(s).";s:16:"ID_SELECT_PLUGIN";s:22:"Please select a plugin";s:21:"ID_SELECT_PLUGIN_FILE";s:20:"Select a plugin file";s:17:"ID_SELECT_PM_FILE";s:18:"Select a .pmt file";s:22:"ID_SELECT_PROCESS_FILE";s:21:"Select a process file";s:16:"ID_SELECT_STATUS";s:16:"Select status...";s:15:"ID_SELECT_TABLE";s:32:"Please select a table to export.";s:23:"ID_SELECT_TEMPLATE_FILE";s:22:"Select a template file";s:23:"ID_SELECT_USER_OR_GROUP";s:70:"Please select the name of a user or a group in the Group or User field";s:18:"ID_SELECT_VARIABLE";s:15:"Select Variable";s:19:"ID_SELECT_WORKSPACE";s:18:"Select a workspace";s:14:"ID_SELFSERVICE";s:12:"Self Service";s:15:"ID_SELF_SERVICE";s:12:"Self Service";s:17:"ID_SEL_AFTER_DATE";s:24:"Please select after date";s:18:"ID_SEL_BEFORE_DATE";s:25:"Please select before date";s:15:"ID_SEL_END_DATE";s:22:"Please select end date";s:17:"ID_SEL_START_DATE";s:24:"Please select start date";s:11:"ID_SEMESTER";s:8:"Semester";s:7:"ID_SEND";s:4:"Post";s:18:"ID_SENDING_REQUEST";s:18:"Sending Request...";s:35:"ID_SENDING_REQUEST_SALES_DEPARTMENT";s:64:"Sending request to ProcessMaker Sales Department, please wait...";s:25:"ID_SENDMAIL_NOT_INSTALLED";s:149:"An error has occured, please verify on which server "SendMail" has been installed or any other mail service, and if it has been configured correctly.";s:10:"ID_SEND_AT";s:7:"send at";s:31:"ID_SEND_EMAIL_CASE_PARTICIPANTS";s:30:"Send Email (Case Participants)";s:29:"ID_SEND_EMAIL_TO_PARTICIPANTS";s:26:"Send email to participants";s:7:"ID_SENT";s:12:"Participated";s:10:"ID_SENT_BY";s:7:"Sent By";s:9:"ID_SERVER";s:6:"Server";s:17:"ID_SERVER_ADDRESS";s:14:"Server Address";s:29:"ID_SERVER_COMMUNICATION_ERROR";s:31:"Failed to connect to the server";s:15:"ID_SERVER_ERROR";s:12:"Server error";s:12:"ID_SERVER_IP";s:17:"Server IP Address";s:14:"ID_SERVER_NAME";s:14:"Server Address";s:14:"ID_SERVER_PORT";s:11:"Server Port";s:17:"ID_SERVER_PROBLEM";s:16:"Server Problem :";s:18:"ID_SERVER_PROTOCOL";s:15:"Server Protocol";s:18:"ID_SERVER_REPORTED";s:15:"Server reported";s:10:"ID_SERVICE";s:7:"Service";s:10:"ID_SESSION";s:7:"Session";s:17:"ID_SESSION_ACTIVE";s:14:"Session active";s:20:"ID_SESSION_DIRECTORY";s:17:"Session directory";s:18:"ID_SESSION_EXPIRED";s:24:"The session has expired.";s:11:"ID_SETTINGS";s:8:"Settings";s:27:"ID_SETTINGS_HEARTBEAT_TITLE";s:15:"Display Setting";s:18:"ID_SETTING_MESSAGE";s:29:"The Settings tool was clicked";s:16:"ID_SETTING_SUPER";s:23:"Setting SUPER privilege";s:8:"ID_SETUP";s:5:"Admin";s:23:"ID_SETUP_MAILCONF_TITLE";s:20:"Test SMTP Connection";s:20:"ID_SETUP_WEBSERVICES";s:5:"Setup";s:19:"ID_SET_A_TABLE_NAME";s:16:"Set a Table Name";s:14:"ID_SET_COLUMNS";s:11:"Set Columns";s:14:"ID_SET_MANAGER";s:11:"Set Manager";s:22:"ID_SET_MANAGER_SUCCESS";s:26:"Manager assigned correctly";s:17:"ID_SET_NO_MANAGER";s:16:"Unassign Manager";s:17:"ID_SET_SUPERVISOR";s:14:"Set Supervisor";s:25:"ID_SET_SUPERVISOR_SUCCESS";s:29:"Supervisor assigned correctly";s:24:"ID_SET_TABLE_DESCRIPTION";s:23:"Set a Table Description";s:35:"ID_SHOULD_SELECT_LANGUAGE_FROM_LIST";s:32:"Select a language from the list.";s:19:"ID_SHOW_CASES_NOTES";s:15:"Show Case Notes";s:12:"ID_SHOW_DIRS";s:9:"Show Dirs";s:24:"ID_SHOW_HIDE_CASES_STEPS";s:28:"Show or hide the Cases Steps";s:30:"ID_SHOW_RETURN_ADVANCED_SEARCH";s:25:"Return to Advanced Search";s:10:"ID_SIGN_IN";s:7:"Sign In";s:11:"ID_SIGN_OUT";s:8:"Sign out";s:16:"ID_SIMPLE_REPORT";s:13:"Simple Report";s:7:"ID_SITE";s:4:"Site";s:16:"ID_SITE_CREATING";s:16:"site creating...";s:7:"ID_SIZE";s:4:"Size";s:16:"ID_SIZE_IN_BYTES";s:13:"Size in bytes";s:28:"ID_SIZE_VERY_LARGE_PERMITTED";s:53:"The file is too large . Please upload a smaller file.";s:8:"ID_SKINS";s:5:"Skins";s:22:"ID_SKIN_ALREADY_EXISTS";s:19:"Skin already exists";s:12:"ID_SKIN_BASE";s:9:"Base skin";s:29:"ID_SKIN_CONFIGURATION_MISSING";s:31:"Missing skin configuration file";s:16:"ID_SKIN_CREATING";s:15:"Generating Skin";s:20:"ID_SKIN_DOESNT_EXIST";s:19:"Skin does not exist";s:24:"ID_SKIN_ERROR_EXTRACTING";s:21:"Error extracting skin";s:17:"ID_SKIN_EXCEPTION";s:21:"Skin Engine Exception";s:17:"ID_SKIN_EXPORTING";s:14:"Exporting Skin";s:21:"ID_SKIN_FILE_REQUIRED";s:18:"Skin file required";s:14:"ID_SKIN_FOLDER";s:11:"Folder name";s:29:"ID_SKIN_FOLDER_NOT_DELETEABLE";s:25:"Can\'t delete default skin";s:26:"ID_SKIN_FOLDER_PERMISSIONS";s:53:"You do not have permissions to access the Skin Folder";s:23:"ID_SKIN_FOLDER_REQUIRED";s:28:"Skin folder name is required";s:17:"ID_SKIN_IMPORTING";s:14:"Importing Skin";s:28:"ID_SKIN_INCORRECT_VERIFY_URL";s:79:"You\'re trying to get a resource from an incorrect skin, please verify your url.";s:24:"ID_SKIN_LAYOUT_NOT_FOUND";s:16:"Layout not Found";s:21:"ID_SKIN_NAME_REQUIRED";s:21:"Skin Name is required";s:22:"ID_SKIN_SUCCESS_CREATE";s:25:"Skin successfully created";s:22:"ID_SKIN_SUCCESS_DELETE";s:25:"Skin successfully deleted";s:24:"ID_SKIN_SUCCESS_IMPORTED";s:26:"Skin successfully imported";s:17:"ID_SKIN_SWITCHING";s:14:"Switching Skin";s:12:"ID_SKIN_TEAM";s:17:"ProcessMaker Team";s:7:"ID_SLOW";s:4:"slow";s:25:"ID_SMTP_ALREADY_CONNECTED";s:29:"Already connected to a server";s:31:"ID_SMTP_ERROR_AUTH_NOT_ACCEPTED";s:37:"Authentication not accepted in server";s:33:"ID_SMTP_ERROR_CALLED_DATA_WITHOUT";s:37:"Called Data() without being connected";s:34:"ID_SMTP_ERROR_CALLED_HELLO_WITHOUT";s:38:"Called Hello() without being connected";s:33:"ID_SMTP_ERROR_CALLED_MAIL_WITHOUT";s:37:"Called Mail() without being connected";s:33:"ID_SMTP_ERROR_CALLED_QUIT_WITHOUT";s:37:"Called Quit() without being connected";s:38:"ID_SMTP_ERROR_CALLED_RECIPIENT_WITHOUT";s:42:"Called Recipient() without being connected";s:34:"ID_SMTP_ERROR_CALLED_RESET_WITHOUT";s:38:"Called Reset() without being connected";s:40:"ID_SMTP_ERROR_CALLED_SENDANDMAIL_WITHOUT";s:44:"Called SendAndMail() without being connected";s:28:"ID_SMTP_ERROR_COULD_NOT_AUTH";s:22:"Could not authenticate";s:35:"ID_SMTP_ERROR_DATA_COM_NOT_ACCEPTED";s:35:"DATA command not accepted by server";s:31:"ID_SMTP_ERROR_DATA_NOT_ACCEPTED";s:27:"DATA not accepted by server";s:27:"ID_SMTP_ERROR_ENABLE_PHPINI";s:52:"You need to enable some modules in your php.ini file";s:24:"ID_SMTP_ERROR_EOF_CAUGHT";s:38:"EOF caught while checking if connected";s:31:"ID_SMTP_ERROR_MAIL_NOT_ACCEPTED";s:31:"MAIL not accepted by the server";s:43:"ID_SMTP_ERROR_MET_TURN_SMTP_NOT_IMPLEMENTED";s:46:"The method TURN of the SMTP is not implemented";s:26:"ID_SMTP_ERROR_NOT_ACCEPTED";s:22:"not accepted by server";s:35:"ID_SMTP_ERROR_PASSWORD_NOT_ACCEPTED";s:35:"Password not accepted by the server";s:31:"ID_SMTP_ERROR_RCPT_NOT_ACCEPTED";s:31:"RCPT not accepted by the server";s:25:"ID_SMTP_ERROR_RSET_FAILED";s:11:"RSET failed";s:31:"ID_SMTP_ERROR_SAML_NOT_ACCEPTED";s:31:"SAML not accepted by the server";s:29:"ID_SMTP_ERROR_SERVER_REJECTED";s:33:"SMTP server rejected quit command";s:23:"ID_SMTP_ERROR_START_TLS";s:41:"Called StartTLS() without being connected";s:36:"ID_SMTP_ERROR_START_TLS_NOT_ACCEPTED";s:35:"STARTTLS not accepted by the server";s:35:"ID_SMTP_ERROR_USERNAME_NOT_ACCEPTED";s:35:"Username not accepted by the server";s:29:"ID_SMTP_FAILED_CONNECT_SERVER";s:27:"Failed to connect to server";s:16:"ID_SNAP_GEOMETRY";s:13:"Snap Geometry";s:18:"ID_SOMETHING_WRONG";s:19:"Something was wrong";s:31:"ID_SOME_ACTORS_ALREADY_ASSIGNED";s:56:"Some actor(s) is/are already assigned to task {0}";s:23:"ID_SOME_FIELDS_REQUIRED";s:25:"Some Fields are required.";s:10:"ID_SORT_BY";s:7:"Sort by";s:13:"ID_SOUTHPANEL";s:10:"southPanel";s:27:"ID_SPECIFY_DELEGATION_INDEX";s:35:"Please specify the delegation index";s:15:"ID_SPLIT_BUTTON";s:12:"Split Button";s:13:"ID_SQL_ESCAPE";s:42:"Replace the value for use in SQL sentences";s:19:"ID_SQL_FILE_INVALID";s:32:"File {0} is not a valid sql file";s:8:"ID_STAGE";s:5:"Stage";s:9:"ID_STAGES";s:6:"Stages";s:19:"ID_STANDARD_LOGGING";s:9:"Log Files";s:16:"ID_STARTED_CASES";s:16:"My Started Cases";s:23:"ID_STARTED_SUCCESSFULLY";s:20:"Started successfully";s:20:"ID_STARTING_LOG_FILE";s:17:"Starting log file";s:20:"ID_STARTING_NEW_CASE";s:17:"Starting new case";s:16:"ID_STARTING_TIME";s:13:"Starting time";s:23:"ID_START_A_NEW_CASE_FOR";s:21:"Start a new case for:";s:13:"ID_START_CASE";s:3:"New";s:13:"ID_START_DATE";s:10:"Start Date";s:17:"ID_START_DATE_MDY";s:22:"* Start Date ("m/d/Y")";s:23:"ID_START_DATE_NOT_VALID";s:64:"The start date provided is not valid, please enter a valid date.";s:14:"ID_START_HH_MM";s:12:"Start(hh:mm)";s:32:"ID_START_MESSAGE_EVENT_WEB_ENTRY";s:30:"Start Message Event(Web Entry)";s:17:"ID_START_NEW_CASE";s:16:"Start a new case";s:13:"ID_START_TASK";s:13:"Starting Task";s:19:"ID_START_TIME_EVENT";s:34:"Start Timer Event (Case Scheduler)";s:15:"ID_STATE_REGION";s:15:"State or Region";s:41:"ID_STATIC_PARTIAL_JOIN_MULTIPLE_INSTANCES";s:41:"Static Partial Join for Multiple Instance";s:9:"ID_STATUS";s:6:"Status";s:14:"ID_STATUS_CASE";s:11:"Status Case";s:22:"ID_STATUS_REASSIGNMENT";s:19:"Status Reassignment";s:8:"ID_STEPS";s:5:"Steps";s:11:"ID_STEPS_OF";s:8:"Steps Of";s:20:"ID_STEPS_UNAVAILABLE";s:61:"No steps are available. All Steps have been already assigned.";s:16:"ID_STEP_ASSIGNED";s:35:"Step has been assigned successfully";s:14:"ID_STEP_DELETE";s:11:"Step Delete";s:22:"ID_STEP_DOES_NOT_EXIST";s:38:"The step with {0}: {1} does not exist.";s:12:"ID_STEP_DOWN";s:9:"Step Down";s:12:"ID_STEP_LIST";s:9:"Step List";s:15:"ID_STEP_REMOVED";s:34:"Step has been removed successfully";s:10:"ID_STEP_UP";s:7:"Step Up";s:22:"ID_STRATEGIC_DASHBOARD";s:4:"KPIs";s:10:"ID_SUBJECT";s:7:"Subject";s:9:"ID_SUBMIT";s:6:"submit";s:14:"ID_SUBMIT_NOTE";s:9:"Post Note";s:13:"ID_SUBPROCESS";s:11:"Sub-Process";s:18:"ID_SUBPROCESS_NAME";s:16:"Sub-Process name";s:18:"ID_SUBPROCESS_SAVE";s:52:"Sub-process properties have been saved successfully.";s:18:"ID_SUBPROCESS_USER";s:18:"(Sub-Process User)";s:16:"ID_SUBSCRIPTIONS";s:13:"Subscriptions";s:10:"ID_SUCCESS";s:7:"Success";s:15:"ID_SUCCESSFULLY";s:12:"Successfully";s:25:"ID_SUCCESSFULLY_CONNECTED";s:22:"Successfully connected";s:24:"ID_SUCCESSFULLY_UPLOADED";s:22:"Successfully uploaded.";s:24:"ID_SUCCESSFUL_CONNECTION";s:21:"Successful connection";s:31:"ID_SUCCESS_DIRECTORIES_WRITABLE";s:47:"Success, all required directories are writable.";s:17:"ID_SUCCESS_RECORD";s:16:"Success Records:";s:12:"ID_SUCESSFUL";s:9:"Sucessful";s:10:"ID_SUMMARY";s:7:"Summary";s:35:"ID_SUMMARY_DERIVATION_BATCH_ROUTING";s:22:"Summary of Derivations";s:15:"ID_SUMMARY_FORM";s:12:"Summary form";s:30:"ID_SUMMARY_FORM_NO_PERMISSIONS";s:56:"You do not have permission to access to the summary form";s:6:"ID_SUN";s:3:"Sun";s:14:"ID_SUPERVISING";s:11:"Supervising";s:13:"ID_SUPERVISOR";s:10:"Supervisor";s:22:"ID_SUPERVISOR_ASSIGNED";s:54:"Supervisor has been successfully assigned to a Process";s:37:"ID_SUPERVISOR_DOES_NOT_HAVE_DYNAFORMS";s:54:"Supervisor does not have a permission for Dynaform(s).";s:20:"ID_SUPERVISOR_FAILED";s:44:"Failed saving Supervisor Assigned to process";s:21:"ID_SUPERVISOR_REMOVED";s:53:"Supervisor has been removed successfully from Process";s:19:"ID_SUPERVISOR_TASKS";s:16:"Supervisor Tasks";s:25:"ID_SUPERVISOR_UNAVAILABLE";s:73:"No supervisors are available. All supervisors have been already assigned.";s:10:"ID_SUPPORT";s:7:"Support";s:16:"ID_SWITCH_EDITOR";s:13:"Switch Editor";s:19:"ID_SWITCH_INTERFACE";s:16:"Switch Interface";s:9:"ID_SYSTEM";s:6:"System";s:14:"ID_SYSTEM_INFO";s:18:"System information";s:26:"ID_SYSTEM_REDIRECT_CONFIRM";s:64:"You must login again to view the changes. Do you want do it now?";s:18:"ID_SYSTEM_SETTINGS";s:15:"System Settings";s:8:"ID_TABLE";s:5:"Table";s:30:"ID_TABLES_REMOVED_SUCCESSFULLY";s:27:"tables removed Successfully";s:29:"ID_TABLES_REMOVED_WITH_ERRORS";s:30:"tables removed but with errors";s:19:"ID_TABLES_TO_EXPORT";s:16:"Tables To Export";s:23:"ID_TABLE_ALREADY_EXISTS";s:20:"Table already exists";s:23:"ID_TABLE_INVALID_SYNTAX";s:14:"Invalid syntax";s:13:"ID_TABLE_NAME";s:10:"Table Name";s:25:"ID_TABLE_NAME_IS_REQUIRED";s:23:"Table Name is required.";s:23:"ID_TABLE_NAME_TOO_SHORT";s:66:"The table name is too short, it should have at least 4 characters.";s:26:"ID_TABLE_NOT_EXIST_SKIPPED";s:32:"Table does not exist... skipped!";s:18:"ID_TABLE_NOT_FOUND";s:15:"Table Not found";s:13:"ID_TABLE_TYPE";s:10:"Table Type";s:7:"ID_TAGS";s:4:"Tags";s:7:"ID_TAKE";s:4:"Take";s:17:"ID_TAREA_COLGANTE";s:9:"Leaf task";s:9:"ID_TARGET";s:6:"Target";s:26:"ID_TARGET_ORIGIN_USER_SAME";s:35:"Target and Origin user are the same";s:14:"ID_TARGET_TASK";s:11:"Target Task";s:34:"ID_TARGET_USER_DESTINATION_INVALID";s:38:"The target user destination is invalid";s:35:"ID_TARGET_USER_DOES_NOT_HAVE_RIGHTS";s:56:"The target user does not have rights to execute the task";s:7:"ID_TASK";s:4:"Task";s:8:"ID_TASKS";s:5:"Tasks";s:19:"ID_TASK_CANT_DELETE";s:57:"You can\'t delete the task "{0}" because it has {1} cases.";s:33:"ID_TASK_DEFINED_MANUAL_ASSIGNMENT";s:41:"The task is defined for Manual assignment";s:34:"ID_TASK_DOES_NOT_HAVE_ROUTING_RULE";s:72:"Task does not have a routing rule. Please, check the process definition.";s:16:"ID_TASK_DURATION";s:13:"Task Duration";s:10:"ID_TASK_ID";s:7:"Task ID";s:19:"ID_TASK_INFORMATION";s:16:"Task Information";s:38:"ID_TASK_INVALID_USER_NOT_ASSIGNED_TASK";s:52:"Task invalid or the user is not assigned to the task";s:19:"ID_TASK_IN_PROGRESS";s:16:"Task in Progress";s:17:"ID_TASK_NOT_EXIST";s:40:"The task with {0}: \'{1}\' does not exist.";s:17:"ID_TASK_NOT_FOUND";s:26:"Task not found for id: {0}";s:19:"ID_TASK_NOT_RELATED";s:23:"[Not related to a task]";s:16:"ID_TASK_NO_STEPS";s:31:"The task doesn\'t have any steps";s:15:"ID_TASK_OVERDUE";s:7:"Overdue";s:23:"ID_TASK_PROPERTIES_SAVE";s:43:"Task properties has been saved successfully";s:21:"ID_TASK_REASSIGNMENTS";s:18:"Task Reassignments";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_ACTION_EMAIL";s:24:"Action by Email Response";s:35:"ID_TASK_SCHEDULER_ACTION_EMAIL_DESC";s:47:"Action by email response account email revision";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";s:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:35:"ID_TASK_SCHEDULER_CALCULATE_ELAPSED";s:27:"Calculated the elapsed time";s:40:"ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC";s:98:"Calculates the elapsed time according to the configured calendar of all open tasks in active cases";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:12:"Case actions";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case emails";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:28:"ID_TASK_SCHEDULER_CLEAN_SELF";s:25:"Clean self service tables";s:33:"ID_TASK_SCHEDULER_CLEAN_SELF_DESC";s:86:"Clean unused records for Self-Service Value-Based feature. It is a maintenance command";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";s:22:"ID_TASK_SCHEDULER_LDAP";s:22:"ProcessMaker LDAP cron";s:27:"ID_TASK_SCHEDULER_LDAP_DESC";s:55:"Synchronize advance LDAP attributes from their settings";s:32:"ID_TASK_SCHEDULER_MESSAGE_EVENTS";s:14:"Message events";s:37:"ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC";s:32:"Intermediate and end email event";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_REPORTING";s:9:"Reporting";s:32:"ID_TASK_SCHEDULER_REPORT_PROCESS";s:21:"KPI Report by process";s:37:"ID_TASK_SCHEDULER_REPORT_PROCESS_DESC";s:40:"Recalculate KPI\'s information by process";s:30:"ID_TASK_SCHEDULER_REPORT_USERS";s:18:"KPI Report by user";s:35:"ID_TASK_SCHEDULER_REPORT_USERS_DESC";s:37:"Recalculate KPI\'s information by user";s:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile notifications";s:28:"ID_TASK_SCHEDULER_UNASSIGNED";s:15:"Unassigned case";s:33:"ID_TASK_SCHEDULER_UNASSIGNED_DESC";s:77:"Run the trigger for self-service cases that have a configured timeout setting";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:16:"ID_TASK_TRANSFER";s:18:"Task Transfer Date";s:28:"ID_TASK_WAS_ASSIGNED_TO_USER";s:131:"Manual assignment shouldn\'t be used with sub-processes.
      The task "{0}" from case {1} was assigned to user {2} ( {3} {4} )";s:23:"ID_TAS_DURATION_REQUIRE";s:22:"Duration task required";s:11:"ID_TAS_EDIT";s:17:"Tasks (Edit mode)";s:29:"ID_TAS_UID_PARAMETER_IS_EMPTY";s:31:"The TAS_UID parameter is empty.";s:11:"ID_TAS_VIEW";s:17:"Tasks (View mode)";s:12:"ID_TEMPLATES";s:9:"Templates";s:26:"ID_TEMPLATE_FILE_NOT_EXIST";s:47:"Template file \'{FILE_TEMPLATE}\' does not exist.";s:27:"ID_TEMPLATE_PARAMETER_EMPTY";s:32:"The TEMPLATE parameter is empty.";s:12:"ID_TERMS_USE";s:12:"Terms of use";s:7:"ID_TEST";s:4:"Test";s:21:"ID_TESTING_CONNECTION";s:21:"Testing connection...";s:21:"ID_TEST_CONFIGURATION";s:18:"Test Configuration";s:18:"ID_TEST_CONNECTION";s:15:"Test Connection";s:27:"ID_TEST_DATABASE_ORACLE_TNS";s:8:"Test TNS";s:20:"ID_TEST_EMAIL_SERVER";s:17:"Test Email Server";s:24:"ID_TEST_ERROR_ORACLE_TNS";s:58:"Error Testing Connection: Opening database type TNS failed";s:12:"ID_TEST_USER";s:9:"Test User";s:17:"ID_TEST_WEB_ENTRY";s:14:"Test Web Entry";s:7:"ID_TEXT";s:4:"TEXT";s:22:"ID_THANKS_USE_SERVICES";s:42:"Thanks for using the ProcessMaker services";s:6:"ID_THE";s:3:"The";s:26:"ID_THERE_ARE_NO_LDAP_USERS";s:23:"There are no LDAP Users";s:28:"ID_THERE_MUST__LEAST_HOLIDAY";s:32:"There must be at least a holiday";s:30:"ID_THERE_PROBLEM_SENDING_EMAIL";s:40:"There was a problem sending the email to";s:34:"ID_THE_APPLICATION_IS_NOT_CANCELED";s:43:"Error: The application {0} is not canceled.";s:28:"ID_THE_DEFAULT_CONFIGURATION";s:41:"The default configuration was not defined";s:31:"ID_THE_FILE_COULDNT_BE_UPLOADED";s:101:"The file couldn’t be uploaded please review the allowed files or contact your System Administrator.";s:51:"ID_THE_FILE_SIZE_IS_BIGGER_THAN_THE_MAXIMUM_ALLOWED";s:89:"The file size is bigger than the maximum allowed, the maximum size allowed is {0} Mbytes.";s:37:"ID_THE_MAXIMUM_VALUE_OF_THIS_FIELD_IS";s:39:"The maximum value of this field is {0}.";s:31:"ID_THE_MIMETYPE_EXTENSION_ERROR";s:86:"The mime type does not correspond to the permitted extension, please verify your file.";s:38:"ID_THE_NAME_CHANGE_MAY_CAUSE_DATA_LOSS";s:74:"The change might cause data loss in the PM table. Do you want to continue?";s:39:"ID_THE_PHP_FILES_EXECUTION_WAS_DISABLED";s:77:"The PHP files execution was disabled please contact the system administrator.";s:33:"ID_THE_REASON_REASSIGN_USER_EMPTY";s:36:"Please complete the reassign reason.";s:69:"ID_THE_REPORT_TABLE_IS_REGENERATING_PLEASE_COME_BACK_IN_A_FEW_MINUTES";s:67:"The report table is regenerating please come back in a few minutes.";s:39:"ID_THE_UPLOAD_OF_PHP_FILES_WAS_DISABLED";s:77:"The upload of PHP files was disabled please contact the system administrator.";s:34:"ID_THE_USERNAME_EMAIL_IS_INCORRECT";s:34:"The username or email is incorrect";s:13:"ID_THIS_MONTH";s:10:"This Month";s:15:"ID_THIS_QUARTER";s:12:"This quarter";s:12:"ID_THIS_WEEK";s:9:"This Week";s:12:"ID_THIS_YEAR";s:9:"This Year";s:15:"ID_THREAD_INDEX";s:12:"Thread Index";s:51:"ID_THREAD_STATUS_DOES_NOT_EXIST_FOR_THE_APPLICATION";s:60:"Error: Thread status does not exist for the application {0}.";s:6:"ID_THU";s:3:"Thu";s:14:"ID_TIMER_EVENT";s:11:"Timer event";s:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";s:19:"ID_TIMER_EVENT_DESC";s:50:"Executes timer start and intermediate timer events";s:29:"ID_TIMER_EVENT_DOES_NOT_EXIST";s:47:"The Timer-Event with {0}: "{1}" does not exist.";s:37:"ID_TIMER_EVENT_DOES_NOT_IS_REGISTERED";s:55:"The Timer-Event with {0}: "{1}" does not is registered.";s:21:"ID_TIME_EXIST_IN_LIST";s:34:"The day and time exist in the list";s:13:"ID_TIME_HOURS";s:12:"Time (Hours)";s:10:"ID_TIME_IN";s:12:"time in ${0}";s:13:"ID_TIME_LABEL";s:4:"Time";s:16:"ID_TIME_NEXT_RUN";s:13:"Time Next Run";s:16:"ID_TIME_REQUIRED";s:16:"Time is required";s:27:"ID_TIME_STARTING_EXCEED_END";s:46:"The starting time must not exceed the end time";s:23:"ID_TIME_START_WITH_TASK";s:25:"The time starts with task";s:12:"ID_TIME_UNIT";s:9:"Time Unit";s:12:"ID_TIME_ZONE";s:9:"Time Zone";s:27:"ID_TIME_ZONE_DOES_NOT_EXIST";s:45:"The time zone with {0}: "{1}" does not exist.";s:31:"ID_TIME_ZONE_LOGIN_DESCRIPTION1";s:74:"Your local machine time zone does not match your current profile settings.";s:31:"ID_TIME_ZONE_LOGIN_DESCRIPTION2";s:87:"Your time zone profile settings will be updated in accordance to your current location.";s:31:"ID_TIME_ZONE_LOGIN_DESCRIPTION3";s:55:"This operation will help you avoid date storage issues.";s:38:"ID_TIME_ZONE_LOGIN_DESCRIPTION_DETAILS";s:68:"Your current profile time zone: {0}, is going to be updated to: {1}.";s:24:"ID_TIME_ZONE_LOGIN_TITLE";s:23:"Time zone configuration";s:17:"ID_TIMING_CONTROL";s:14:"Timing Control";s:21:"ID_TINY_ALL_VARIABLES";s:13:"All variables";s:22:"ID_TINY_GRID_VARIABLES";s:14:"Grid Variables";s:25:"ID_TINY_PROCESS_VARIABLES";s:17:"Process Variables";s:23:"ID_TINY_SYSTEM_VARIABLE";s:15:"System Variable";s:24:"ID_TINY_SYSTEM_VARIABLES";s:16:"System Variables";s:21:"ID_TINY_TYPE_VARIABLE";s:13:"Type Variable";s:8:"ID_TITLE";s:5:"Title";s:34:"ID_TITLE_AUTHENTICATION_SOURCE_INF";s:33:"Authentication Source Information";s:18:"ID_TITLE_CANCELLED";s:8:"Canceled";s:18:"ID_TITLE_COMPLETED";s:9:"Completed";s:18:"ID_TITLE_DASHBOARD";s:25:"Dashboard Indicator Title";s:14:"ID_TITLE_DRAFT";s:5:"Draft";s:22:"ID_TITLE_EXPORT_RESULT";s:14:"Export Summary";s:20:"ID_TITLE_EXPORT_TOOL";s:14:"Exporting Tool";s:14:"ID_TITLE_FIELD";s:5:"Title";s:23:"ID_TITLE_FIELD_DYNAFORM";s:5:"title";s:14:"ID_TITLE_INBOX";s:5:"Inbox";s:19:"ID_TITLE_LOG_DETAIL";s:10:"Log Detail";s:19:"ID_TITLE_NO_INSTALL";s:26:"SYSTEM INSTALLATION FAILED";s:21:"ID_TITLE_PARTICIPATED";s:12:"Participated";s:15:"ID_TITLE_PAUSED";s:6:"Paused";s:17:"ID_TITLE_REQUIRED";s:18:"Title is required.";s:19:"ID_TITLE_START_CASE";s:10:"Start Case";s:19:"ID_TITLE_UNASSIGNED";s:10:"Unassigned";s:5:"ID_TO";s:2:"To";s:8:"ID_TODAY";s:5:"Today";s:8:"ID_TOOLS";s:5:"Tools";s:20:"ID_TOO_MANY_REQUESTS";s:76:"Upon configurations, you have reached the maximum number of files to upload.";s:13:"ID_TOP_MARGIN";s:10:"Top Margin";s:14:"ID_TOTAL_CASES";s:11:"Total Cases";s:25:"ID_TOTAL_CASES_REASSIGNED";s:22:"Total Cases Reassigned";s:8:"ID_TO_DO";s:5:"To do";s:11:"ID_TO_FLOAT";s:36:"Replace the value converted to float";s:13:"ID_TO_INTEGER";s:38:"Replace the value converted to integer";s:14:"ID_TO_REASSIGN";s:8:"Reassign";s:12:"ID_TO_REVISE";s:6:"Review";s:12:"ID_TO_STRING";s:27:"Replace the value in quotes";s:9:"ID_TO_URL";s:35:"Replace the value with URL encoding";s:19:"ID_TRANSFER_HISTORY";s:16:"Transfer History";s:25:"ID_TRANSLATIONS_DIRECTORY";s:22:"Translations Directory";s:28:"ID_TRANSLATION_NOT_WRITEABLE";s:80:"The translation file is not writable.
      Please give write permission to file:";s:11:"ID_TRIGGERS";s:8:"Triggers";s:17:"ID_TRIGGERS_SAVED";s:13:"Trigger saved";s:23:"ID_TRIGGERS_UNAVAILABLE";s:67:"No triggers are available. All triggers have been already assigned.";s:26:"ID_TRIGGERS_VALIDATE_EERR1";s:37:"* The {Object} {Description} depends.";s:22:"ID_TRIGGERS_VALIDATION";s:67:"No Dependencies were found for this trigger in {Object} definitions";s:27:"ID_TRIGGERS_VALIDATION_ERR2";s:66:"({N}) Dependencies were found for this trigger in {Object} objects";s:27:"ID_TRIGGERS_VALIDATION_ERR3";s:37:"* The {Object} {Description} depends.";s:17:"ID_TRIGGER_ASSIGN";s:40:"Triggers has been assigned successfully.";s:22:"ID_TRIGGER_COPY_OPTION";s:35:"Copy/Import Triggers from a Process";s:34:"ID_TRIGGER_COPY_OPTION_DESCRIPTION";s:86:"With this option you can copy/import a trigger from any other processes in the system.";s:21:"ID_TRIGGER_COPY_TITLE";s:19:"Copy/Import Trigger";s:13:"ID_TRIGGER_DB";s:7:"Trigger";s:25:"ID_TRIGGER_DOES_NOT_EXIST";s:41:"The trigger with {0}: {1} does not exist.";s:37:"ID_TRIGGER_EDITOR_HINT_ADVISE_MESSAGE";s:58:"Press Ctrl + Space in the Editor, to get the function list";s:56:"ID_TRIGGER_HAS_BEEN_MODIFIED_MANUALLY_INVALID_FOR_WIZARD";s:83:"The trigger with {0}: {1} has been manually modified. It is invalid for the wizard.";s:43:"ID_TRIGGER_HAS_NOT_BEEN_CREATED_WITH_WIZARD";s:64:"The trigger with {0}: {1}, has not been created with the wizard.";s:20:"ID_TRIGGER_NOT_EXIST";s:43:"The trigger with {0}: \'{1}\' does not exist.";s:17:"ID_TRIGGER_REMOVE";s:38:"Trigger has been removed successfully.";s:19:"ID_TRIGGER_REQUIRED";s:19:"Trigger is required";s:23:"ID_TRIGGER_RETURN_LABEL";s:29:"Variable to hold return value";s:23:"ID_TRIGGER_RETURN_TITLE";s:12:"Return value";s:22:"ID_TRIGGER_SOURCE_LINK";s:16:"Edit Source Code";s:31:"ID_TRIGGER_TITLE_ALREADY_EXISTS";s:49:"The trigger title with {0}: "{1}" already exists.";s:7:"ID_TRUE";s:4:"TRUE";s:16:"ID_TRYING_CANCEL";s:86:"You are tying to cancel the current case. Please be aware this action cannot be undone";s:6:"ID_TUE";s:3:"Tue";s:16:"ID_TWICE_PER_DAY";s:13:"Twice per day";s:7:"ID_TYPE";s:4:"Type";s:15:"ID_TYPE_PROCESS";s:12:"Process Type";s:6:"ID_UID";s:3:"UID";s:24:"ID_UNABLE_GET_DASHBOARDS";s:24:"Unable to get Dashboards";s:20:"ID_UNABLE_START_CASE";s:22:"Unable to start a case";s:17:"ID_UNABLE_TO_EDIT";s:62:"Unable to edit. Make sure your file has an editable extension.";s:23:"ID_UNABLE_TO_SEND_EMAIL";s:41:"Unable to send email, the task is closed.";s:13:"ID_UNASSIGNED";s:10:"Unassigned";s:19:"ID_UNASSIGNED_INBOX";s:16:"Unassigned Inbox";s:21:"ID_UNASSIGNED_MESSAGE";s:22:"unassignedMessage.html";s:20:"ID_UNASSIGNED_STATUS";s:17:"Unassigned Status";s:19:"ID_UNASSIGNED_USERS";s:16:"Unassigned Users";s:10:"ID_UNCHECK";s:7:"Uncheck";s:30:"ID_UNDEFINED_VALUE_IS_REQUIRED";s:42:"Undefined value for "{0}", it is required.";s:35:"ID_UNEXPECTED_ERROR_OCCURRED_PLEASE";s:52:"An unexpected error occurred please try again later.";s:11:"ID_UNISTALL";s:9:"Uninstall";s:15:"ID_UNISTALL_TIP";s:21:"Uninstall this plugin";s:8:"ID_UNITS";s:5:"Units";s:10:"ID_UNKNOWN";s:7:"Unknown";s:14:"ID_UNKNOW_USER";s:11:"Unknow user";s:10:"ID_UNPAUSE";s:7:"Unpause";s:15:"ID_UNPAUSE_CASE";s:7:"Unpause";s:15:"ID_UNPAUSE_DATE";s:12:"Unpause Date";s:15:"ID_UNPAUSE_TIME";s:12:"Unpause Time";s:17:"ID_UNPAUSING_CASE";s:17:"Unpausing case...";s:27:"ID_UNSAVED_CHANGES_QUESTION";s:96:"You are about to close a window and there may be some unsaved changes. Are you sure to continue?";s:26:"ID_UNSAVED_TRIGGERS_WINDOW";s:88:"You have unsaved changes in popup! If you leave the page all the windows will be closed.";s:16:"ID_UNTITLED_TASK";s:13:"Untitled task";s:15:"ID_UN_CHECK_ALL";s:12:"Un-Check All";s:5:"ID_UP";s:2:"Up";s:9:"ID_UPDATE";s:6:"Update";s:23:"ID_UPDATED_SUCCESSFULLY";s:20:"Updated Successfully";s:21:"ID_UPDATE_AUTH_SOURCE";s:28:"Update Authentication Source";s:18:"ID_UPDATE_CALENDAR";s:15:"Update Calendar";s:24:"ID_UPDATE_CASE_SCHEDULER";s:21:"Update Case Scheduler";s:18:"ID_UPDATE_CATEGORY";s:15:"Update Category";s:26:"ID_UPDATE_DASHLET_INSTANCE";s:23:"Update Dashlet Instance";s:29:"ID_UPDATE_DATABASE_CONNECTION";s:26:"Update Database Connection";s:22:"ID_UPDATE_DATA_PMTABLE";s:25:"Update Data from PM Table";s:14:"ID_UPDATE_DATE";s:6:"Update";s:21:"ID_UPDATE_DEPARTAMENT";s:17:"Update Department";s:18:"ID_UPDATE_DYNAFORM";s:34:"Update Dynaform add/deleted fields";s:22:"ID_UPDATE_EMAIL_SERVER";s:19:"Update Email Server";s:24:"ID_UPDATE_EMAIL_SETTINGS";s:21:"Update Email Settings";s:30:"ID_UPDATE_ENVIRONMENT_SETTINGS";s:27:"Update Environment Settings";s:16:"ID_UPDATE_FAILED";s:14:"Updated Failed";s:15:"ID_UPDATE_GROUP";s:12:"Update Group";s:24:"ID_UPDATE_INPUT_DOCUMENT";s:21:"Update Input Document";s:17:"ID_UPDATE_LICENSE";s:14:"Upload License";s:24:"ID_UPDATE_LOGIN_SETTINGS";s:21:"Update Login Settings";s:25:"ID_UPDATE_OUTPUT_DOCUMENT";s:22:"Update Output Document";s:17:"ID_UPDATE_PMTABLE";s:15:"Update PM Table";s:14:"ID_UPDATE_ROLE";s:11:"Update Role";s:25:"ID_UPDATE_SUB_DEPARTAMENT";s:21:"Update Sub Department";s:14:"ID_UPDATE_TEXT";s:9:"Edit Text";s:17:"ID_UPDATE_TRIGGER";s:14:"Update trigger";s:14:"ID_UPDATE_USER";s:11:"Update User";s:23:"ID_UPDATING_LICENSE_MSG";s:29:"Uploading the license file...";s:17:"ID_UPDATING_TABLE";s:30:"Updating table, please wait...";s:10:"ID_UPGRADE";s:14:"Upgrade System";s:19:"ID_UPGRADES_PATCHES";s:16:"Upgrades/Patches";s:21:"ID_UPGRADE_ENTERPRISE";s:115:"This feature is not available in ProcessMaker Community Edition. Please upgrade to ProcessMaker Enterprise Edition.";s:19:"ID_UPGRADE_FINISHED";s:17:"Upgrade finished.";s:16:"ID_UPGRADE_LABEL";s:7:"Upgrade";s:24:"ID_UPGRADE_NEVER_UPGRADE";s:14:"Never upgraded";s:14:"ID_UPGRADE_NOW";s:11:"Upgrade now";s:16:"ID_UPGRADE_READY";s:29:"System upgraded from revision";s:19:"ID_UPGRADE_STARTING";s:44:"Please wait while the upgrade is starting...";s:17:"ID_UPGRADE_SYSTEM";s:14:"Upgrade System";s:19:"ID_UPGRADE_VIEW_LOG";s:8:"View log";s:19:"ID_UPGRADING_PLUGIN";s:41:"Please wait while upgrading the plugin...";s:9:"ID_UPLOAD";s:6:"Upload";s:21:"ID_UPLOADED_DOCUMENTS";s:18:"Uploaded Documents";s:17:"ID_UPLOADING_FILE";s:17:"Uploading file...";s:29:"ID_UPLOADING_IMAGE_WRONG_SIZE";s:38:"Error uploading image, wrong file size";s:25:"ID_UPLOADING_PROCESS_FILE";s:29:"Uploading the process file...";s:29:"ID_UPLOADING_TRANSLATION_FILE";s:33:"Uploading the translation file...";s:18:"ID_UPLOAD_COMPLETE";s:15:"Upload complete";s:24:"ID_UPLOAD_ERR_CANT_WRITE";s:28:"Failed to write file to disk";s:23:"ID_UPLOAD_ERR_EXTENSION";s:32:"File upload stopped by extension";s:23:"ID_UPLOAD_ERR_FORM_SIZE";s:89:"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form";s:22:"ID_UPLOAD_ERR_INI_SIZE";s:70:"The uploaded file exceeds the upload_max_filesize directive in php.ini";s:35:"ID_UPLOAD_ERR_NOT_ALLOWED_EXTENSION";s:110:"The file has not been attached because the extension is not allowed or because the content doesn\'t correspond.";s:21:"ID_UPLOAD_ERR_NO_FILE";s:20:"No file was uploaded";s:24:"ID_UPLOAD_ERR_NO_TMP_DIR";s:26:"Missing a temporary folder";s:21:"ID_UPLOAD_ERR_PARTIAL";s:45:"The uploaded file was only partially uploaded";s:21:"ID_UPLOAD_ERR_UNKNOWN";s:20:"Unknown upload error";s:44:"ID_UPLOAD_ERR_WRONG_ALLOWED_EXTENSION_FORMAT";s:91:"The format is incorrect, check the following examples: *.* *.png *.pdf, *.doc, *.xls";s:14:"ID_UPLOAD_FILE";s:11:"Upload File";s:19:"ID_UPLOAD_FROM_FILE";s:16:"Upload from file";s:15:"ID_UPLOAD_IMAGE";s:12:"Upload image";s:34:"ID_UPLOAD_INVALID_DOC_MAX_FILESIZE";s:44:"File size exceeds the allowable limit of {0}";s:31:"ID_UPLOAD_INVALID_DOC_TYPE_FILE";s:79:"Invalid file format, please upload a file with one of the following formats {0}";s:18:"ID_UPLOAD_LANGUAGE";s:15:"Upload Language";s:20:"ID_UPLOAD_LEAST_FILE";s:32:"You may upload at least one file";s:14:"ID_UPLOAD_LOGO";s:11:"Upload Logo";s:16:"ID_UPLOAD_PLUGIN";s:13:"Upload Plugin";s:25:"ID_UPLOAD_SYSTEM_SETTINGS";s:22:"Upload System Settings";s:24:"ID_UPLOAD_VALID_CSV_FILE";s:30:"Please upload a valid CSV file";s:13:"ID_UP_TRIGGER";s:10:"Up Trigger";s:7:"ID_USER";s:4:"User";s:11:"ID_USERNAME";s:8:"Username";s:26:"ID_USERNAME_ALREADY_EXISTS";s:35:"Username \'{USER_ID}\' already exists";s:19:"ID_USERNAME_CORRECT";s:18:"Available Username";s:20:"ID_USERNAME_FORMAT_1";s:20:"@firstName @lastName";s:20:"ID_USERNAME_FORMAT_2";s:32:"@firstName @lastName (@userName)";s:20:"ID_USERNAME_FORMAT_3";s:9:"@userName";s:20:"ID_USERNAME_FORMAT_4";s:32:"@userName (@firstName @lastName)";s:20:"ID_USERNAME_FORMAT_5";s:20:"@lastName @firstName";s:20:"ID_USERNAME_FORMAT_6";s:21:"@lastName, @firstName";s:20:"ID_USERNAME_FORMAT_7";s:33:"@lastName, @firstName (@userName)";s:24:"ID_USERNAME_OR_WORKSPACE";s:28:"Username (or Live Workspace)";s:20:"ID_USERNAME_REQUIRED";s:20:"Username is required";s:19:"ID_USERNAME_TESTING";s:31:"Verifying username availability";s:8:"ID_USERS";s:5:"Users";s:15:"ID_USERS_ACTORS";s:12:"Users Actors";s:28:"ID_USERS_DELETE_WITH_HISTORY";s:131:"The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?";s:15:"ID_USERS_GROUPS";s:21:"Users and User Groups";s:27:"ID_USERS_HAS_ASSIGNED_CASES";s:60:"The user has assigned cases. Do you want to continue anyway?";s:13:"ID_USERS_LIST";s:5:"Users";s:16:"ID_USERS_REMOVED";s:34:"User has been removed successfully";s:23:"ID_USERS_SUCCESS_DELETE";s:32:"User has been deleted correctly.";s:20:"ID_USERS_UNAVAILABLE";s:60:"No users are available. All users have been already assigned";s:28:"ID_USER_ALREADY_EXISTS_GROUP";s:32:"User already exists in the group";s:16:"ID_USER_ASSIGNED";s:35:"User has been successfully assigned";s:15:"ID_USER_BROWSER";s:14:"User\'s Browser";s:39:"ID_USER_CANT_BE_DELETED_FOR_THE_PROCESS";s:105:"The user can\'t be deleted because it is referenced in the process {processTitle} in a process permission.";s:26:"ID_USER_CAN_NOT_BE_DELETED";s:74:"The user with usr_uid: {0}, cannot be deleted while it has cases assigned.";s:22:"ID_USER_CAN_NOT_UPDATE";s:40:"This user: {0}, can not update the data.";s:23:"ID_USER_CASES_NOT_START";s:69:"User can\'t start a case because doesn\'t have a starting task assigned";s:28:"ID_USER_CREATED_SUCCESSFULLY";s:60:"User {FIRSTNAME} {LASTNAME} [{USER_ID}] created successfully";s:28:"ID_USER_CREDENTIALS_REQUIRED";s:30:"User credentials are required.";s:30:"ID_USER_DEFINED_TIMING_CONTROL";s:33:"Allow user defined timing control";s:27:"ID_USER_DOES_NOT_CORRESPOND";s:75:"Wrong authentication. This user does not correspond with the email address.";s:32:"ID_USER_DOES_NOT_CORRESPOND_TYPE";s:52:"This id: {0} does not correspond to a registered {1}";s:22:"ID_USER_DOES_NOT_EXIST";s:38:"The User with {0}: {1} does not exist.";s:39:"ID_USER_DOES_NOT_HAVE_ACTIVITY_ASSIGNED";s:57:"The user "{0}" does not have the activity "{1}" assigned.";s:18:"ID_USER_EXPERIENCE";s:15:"User Experience";s:13:"ID_USER_FIELD";s:10:"User Field";s:14:"ID_USER_GROUPS";s:10:"Groups for";s:20:"ID_USER_GROUPS_ADHOC";s:29:"Users and User Groups(Ad Hoc)";s:28:"ID_USER_GROUP_NOT_CORRESPOND";s:36:"This id: {0} not correspond to a {1}";s:26:"ID_USER_HAVENT_RIGHTS_PAGE";s:39:"User does not have rights on this page.";s:28:"ID_USER_HAVENT_RIGHTS_SYSTEM";s:39:"User does not have access to the system";s:10:"ID_USER_ID";s:8:"Username";s:18:"ID_USER_IDENTIFIER";s:15:"User Identifier";s:16:"ID_USER_INACTIVE";s:14:"User inactive!";s:24:"ID_USER_INACTIVE_BY_DATE";s:26:"User\'s account has expired";s:20:"ID_USER_INEFFICIENCE";s:25:"Inefficience Cost By User";s:19:"ID_USER_INFORMATION";s:16:"User Information";s:56:"ID_USER_IS_SUPERVISOR_DOES_NOT_ASSOCIATED_INPUT_DOCUMENT";s:73:"The user is supervisor, but it does not have an associated input document";s:12:"ID_USER_LIST";s:9:"User List";s:42:"ID_USER_MUST_CHANGE_PASSWORD_AT_NEXT_LOGON";s:39:"User must change password at next logon";s:12:"ID_USER_NAME";s:9:"User Name";s:27:"ID_USER_NAME_ALREADY_EXISTS";s:45:"The User Name with {0}: "{1}" already exists.";s:18:"ID_USER_NOT_ACTIVE";s:23:"The user is not active.";s:20:"ID_USER_NOT_ACTIVITY";s:51:"The usr_uid: {0} does not have an activity assigned";s:25:"ID_USER_NOT_ASSIGNED_TASK";s:36:"The user is not assigned to the task";s:17:"ID_USER_NOT_EXIST";s:40:"The user with {0}: \'{1}\' does not exist.";s:28:"ID_USER_NOT_EXIST_DEPARTMENT";s:53:"The user with "{0}", does not exist in the Department";s:17:"ID_USER_NOT_FOUND";s:15:"User not found.";s:25:"ID_USER_NOT_FUNCTIONALITY";s:108:"This functionality is not available for users who have an external authentication source related (i.e. LDAP)";s:27:"ID_USER_NOT_HAVE_PERMISSION";s:64:"The user with "{0}" not have permissions to perform this action.";s:49:"ID_USER_NOT_HAVE_PERMISSION_DELETE_INPUT_DOCUMENT";s:69:"The user with "{0}" not have permission to delete the input document.";s:50:"ID_USER_NOT_HAVE_PERMISSION_DELETE_OUTPUT_DOCUMENT";s:70:"The user with "{0}" not have permission to delete the output document.";s:23:"ID_USER_NOT_ID_ACTIVITY";s:65:"The usr_uid: {0} does not have the activity act_uid: {1} assigned";s:30:"ID_USER_NOT_INITIAL ACTIVITIES";s:80:"This user usr_uid: {0} does not have initial activities assigned in this project";s:45:"ID_USER_NOT_IT_BELONGS_CASE_OR_NOT_SUPERVISOR";s:58:"The user does not belong to case or user not is supervisor";s:20:"ID_USER_NOT_REGISTER";s:24:"the user is not register";s:22:"ID_USER_NOT_REGISTERED";s:20:"User not registered!";s:28:"ID_USER_NOT_REGISTERED_GROUP";s:32:"User not registered in the group";s:29:"ID_USER_NOT_REGISTERED_SYSTEM";s:33:"User not registered in the system";s:29:"ID_USER_NOT_RESPONDED_REQUEST";s:43:"The user has not responded to this request.";s:18:"ID_USER_ONVACATION";s:83:"User on vacation! Contact to your System Administrator if you want to login. please";s:20:"ID_USER_ON_VACATIONS";s:29:"User on vacation was replaced";s:25:"ID_USER_PROCESS_NOT_START";s:36:"You don\'t have processes to start...";s:18:"ID_USER_REGISTERED";s:24:"User name already exists";s:42:"ID_USER_ROLE_CANT_CHANGED_TO_ADMINISTRATOR";s:52:"The administrator role cannot be changed or created.";s:17:"ID_USER_SAVE_FAIL";s:35:"Failed saving User Assigned to Task";s:19:"ID_USER_TO_REASSIGN";s:12:"Reassign to:";s:24:"ID_USER_UID_DOESNT_EXIST";s:48:"The row \'{USR_UID}\' in table USER doesn\'t exist!";s:17:"ID_USER_WITH_ROLE";s:15:"Users with role";s:19:"ID_USE_LANGUAGE_URL";s:23:"Use the language of URL";s:13:"ID_UXS_NORMAL";s:6:"Normal";s:17:"ID_UXS_SIMPLIFIED";s:6:"Mobile";s:13:"ID_UXS_SINGLE";s:18:"Single Application";s:17:"ID_UXS_SWITCHABLE";s:10:"Switchable";s:11:"ID_VACATION";s:8:"Vacation";s:19:"ID_VALIDATED_FIELDS";s:40:"The following fields have invalid values";s:20:"ID_VALIDATION_ERRORS";s:17:"validation Errors";s:19:"ID_VALID_ADMIN_NAME";s:36:"Please enter a valid Admin Username.";s:23:"ID_VALID_ADMIN_PASSWORD";s:32:"Please enter the Admin Password.";s:20:"ID_VALID_CREDENTIALS";s:30:"Please enter valid credentials";s:13:"ID_VALID_FROM";s:4:"From";s:11:"ID_VALID_TO";s:2:"To";s:18:"ID_VALID_WORKSPACE";s:36:"Please enter a valid Workspace Name.";s:14:"ID_VALUE_BASED";s:11:"Value Based";s:33:"ID_VALUE_SPECIFIED_DOES_NOT_EXIST";s:50:"Value specified for "{0}" does not exist in "{1}".";s:10:"ID_VARCHAR";s:7:"VARCHAR";s:12:"ID_VARIABLES";s:9:"Variables";s:26:"ID_VARIABLES_CASE_PRIORITY";s:26:"Variable for Case priority";s:15:"ID_VARIABLES_IN";s:12:"Variables In";s:35:"ID_VARIABLES_INSTANCES_TO _COMPLETE";s:45:"Variable for number of instances to complete.";s:25:"ID_VARIABLES_NO_INSTANCES";s:33:"Variable for number of instances.";s:16:"ID_VARIABLES_OUT";s:13:"Variables Out";s:28:"ID_VARIABLES_PARAM_NOT_ARRAY";s:35:"The variables param is not an array";s:23:"ID_VARIABLES_PARAM_ZERO";s:34:"The variables param length is zero";s:21:"ID_VARIABLES_RECEIVED";s:18:"variables received";s:17:"ID_VARIABLES_SENT";s:14:"variables sent";s:29:"ID_VARIABLES_VALUE_ASSIGNMENT";s:35:"Variable for Value Based Assignment";s:40:"ID_VARIABLE_ASSOCIATED_WITH_REPORT_TABLE";s:62:"The variable with "{0}", it is associated with a report table.";s:18:"ID_VARIABLE_IN_USE";s:125:"This variable can not be deleted because it is being used in DynaForm : {0}. To delete it, first remove it from the DynaForm.";s:22:"ID_VARIABLE_NO_IS_GRID";s:42:"The Variable with {0}: "{1}" is not a grid";s:18:"ID_VARIABLE_PICKER";s:16:"pmVariablePicker";s:10:"ID_VERSION";s:7:"Version";s:13:"ID_VERSIONING";s:10:"Versioning";s:18:"ID_VERSION_HISTORY";s:15:"Version History";s:16:"ID_VERTICAL_LINE";s:13:"Vertical Line";s:7:"ID_VIEW";s:4:"View";s:20:"ID_VIEW_EDIT_PROFILE";s:17:"View/Edit Profile";s:12:"ID_VIEW_INFO";s:16:"View Information";s:16:"ID_VIEW_RESPONSE";s:13:"View Response";s:18:"ID_VIEW_USER_GROUP";s:6:"Groups";s:10:"ID_VISIBLE";s:7:"Visible";s:8:"ID_VISIT";s:5:"Visit";s:25:"ID_WAIT_INSTALLING_PLUGIN";s:50:"Please wait while the plugin is being installed...";s:36:"ID_WAIT_WHILE_UPGRADING_PROCESSMAKER";s:43:"Please wait while upgrading ProcessMaker...";s:10:"ID_WARNING";s:7:"WARNING";s:33:"ID_WARNING_ENTERPRISE_LICENSE_MSG";s:35:"Please select a valid license file.";s:37:"ID_WARNING_ENTERPRISE_LICENSE_MSG_DAT";s:67:"The file doesn\'t have a .dat extension, please select another file.";s:25:"ID_WARNING_ERROR_UPDATING";s:33:"Error uploading the license file.";s:44:"ID_WARNING_GATEWAY_CONVERGENT_WITH_CONDITION";s:65:"Your Gateway Convergent has a condition, save again your process.";s:19:"ID_WARNING_PMTABLES";s:31:"Error uploading the PM Table(s)";s:9:"ID_WEBBOT";s:7:"Webbots";s:16:"ID_WEBENTRY_LINK";s:14:"Web Entry Link";s:12:"ID_WEB_ENTRY";s:9:"Web Entry";s:57:"ID_WEB_ENTRY_ACTIVITY_DOES_NOT_HAVE_VALID_ASSIGNMENT_TYPE";s:164:"Web entry only works with activities which have "Cyclical Assignment". The activity "{0}" does not have a valid assignment type. Please change the Assignment Rules.";s:27:"ID_WEB_ENTRY_DOES_NOT_EXIST";s:43:"The web entry with {0}: {1} does not exist.";s:37:"ID_WEB_ENTRY_EVENT_ALREADY_REGISTERED";s:46:"The event with {0}: {1} already is registered.";s:33:"ID_WEB_ENTRY_EVENT_DOES_NOT_EXIST";s:48:"The WebEntry-Event with {0}: {1} does not exist.";s:41:"ID_WEB_ENTRY_EVENT_DOES_NOT_IS_REGISTERED";s:42:"The event with {0}: {1} is not registered.";s:56:"ID_WEB_ENTRY_EVENT_FLOW_EVENT_TO_ACTIVITY_DOES_NOT_EXIST";s:45:"The flow of event to activity does not exist.";s:39:"ID_WEB_ENTRY_EVENT_TITLE_ALREADY_EXISTS";s:56:"The WebEntry-Event title with {0}: "{1}" already exists.";s:17:"ID_WEB_ENTRY_LINK";s:14:"Web Entry Link";s:27:"ID_WEB_ENTRY_SUCCESS_DELETE";s:27:"Web Entry deleted correctly";s:24:"ID_WEB_ENTRY_SUCCESS_NEW";s:37:"Web Entry has been created correctly.";s:20:"ID_WEB_ENTRY_SUMMARY";s:17:"Web Entry Summary";s:33:"ID_WEB_ENTRY_TITLE_ALREADY_EXISTS";s:51:"The web entry title with {0}: "{1}" already exists.";s:13:"ID_WEB_SERVER";s:10:"Web Server";s:15:"ID_WEB_SERVICES";s:17:"Web Services Test";s:23:"ID_WEB_SERVICE_PASSWORD";s:20:"Web Service Password";s:19:"ID_WEB_SERVICE_USER";s:16:"Web Service User";s:7:"ID_WEEK";s:4:"Week";s:12:"ID_WEEKDAY_0";s:6:"Sunday";s:12:"ID_WEEKDAY_1";s:6:"Monday";s:12:"ID_WEEKDAY_2";s:7:"Tuesday";s:12:"ID_WEEKDAY_3";s:9:"Wednesday";s:12:"ID_WEEKDAY_4";s:8:"Thursday";s:12:"ID_WEEKDAY_5";s:6:"Friday";s:12:"ID_WEEKDAY_6";s:8:"Saturday";s:16:"ID_WEEKDAY_ABB_0";s:3:"Sun";s:16:"ID_WEEKDAY_ABB_1";s:3:"Mon";s:16:"ID_WEEKDAY_ABB_2";s:3:"Tue";s:16:"ID_WEEKDAY_ABB_3";s:3:"Wed";s:16:"ID_WEEKDAY_ABB_4";s:3:"Thu";s:16:"ID_WEEKDAY_ABB_5";s:3:"Fri";s:16:"ID_WEEKDAY_ABB_6";s:3:"Sat";s:8:"ID_WEEKS";s:5:"Weeks";s:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";s:28:"ID_WEVE_MADE_IT_EASY_FOR_YOU";s:57:"We\'ve made it easy for you to make the following requests";s:19:"ID_WF_DATABASE_NAME";s:22:"Workflow Database Name";s:17:"ID_WITHOUT_RESUME";s:15:"Without resume!";s:53:"ID_WIZARD_LIBRARY_AND_FUNCTION_IS_INVALID_FOR_TRIGGER";s:95:"The wizard with the library "{0}" and function "{1}", is invalid for the trigger with {2}: {3}.";s:25:"ID_WORFLOW_DATA_DIRECTORY";s:23:"Workflow Data Directory";s:20:"ID_WORKFLOW_DATABASE";s:17:"Workflow Database";s:25:"ID_WORKFLOW_DATABASE_NAME";s:39:"Please enter the Workflow Database Name";s:35:"ID_WORKFLOW_DATA_DIRECTORY_REQUIRED";s:38:""Workflow Data Directory" is required.";s:16:"ID_WORKING_CASES";s:13:"% In Progress";s:15:"ID_WORKING_DAYS";s:12:"Working days";s:12:"ID_WORKSPACE";s:9:"Workspace";s:13:"ID_WORKSPACES";s:10:"WORKSPACES";s:26:"ID_WORKSPACE_ADMINISTRATOR";s:23:"Workspace Administrator";s:26:"ID_WORKSPACE_CONFIGURATION";s:23:"Workspace Configuration";s:17:"ID_WORKSPACE_NAME";s:14:"Workspace Name";s:18:"ID_WORKSPACE_USING";s:15:"Using workspace";s:12:"ID_WORK_DAYS";s:9:"Work days";s:13:"ID_WORK_HOURS";s:10:"Work hours";s:12:"ID_WRITEABLE";s:8:"Writable";s:13:"ID_WRONG_PASS";s:14:"Wrong password";s:18:"ID_WRONG_USER_PASS";s:27:"Wrong username or password.";s:7:"ID_WSDL";s:37:"The Server Host or Workspace is blank";s:6:"ID_XML";s:3:"XML";s:20:"ID_XMLFROM_DIRECTORY";s:17:"Xmlform Directory";s:16:"ID_XPDL_FILENAME";s:19:"Download XPDL File:";s:14:"ID_XPDL_IMPORT";s:11:"Import XPDL";s:7:"ID_YEAR";s:4:"Year";s:8:"ID_YEARS";s:5:"Years";s:17:"ID_YELLOW_ENDS_IN";s:14:"Yellow Ends In";s:19:"ID_YELLOW_STARTS_IN";s:16:"Yellow Starts In";s:6:"ID_YES";s:3:"Yes";s:12:"ID_YESTERDAY";s:9:"Yesterday";s:12:"ID_YES_VALUE";s:3:"Yes";s:25:"ID_YOUR_FILE_HAS_EXCEEDED";s:58:"Your file has exceeded the file maximum size that is 10MB.";s:35:"ID_YOUR_IMAGE_HAS_BEEN_SUCCESSFULLY";s:41:"Your image has been successfully uploaded";s:15:"ID_YOUR_LICENSE";s:12:"Your license";s:19:"ID_YOUR_PASSWORD_IS";s:16:"Your password is";s:19:"ID_YOUR_USERMANE_IS";s:16:"Your username is";s:21:"ID_YOU_ARE_FIRST_STEP";s:26:"You are in the first step!";s:31:"ID_YOU_ARE_NOT_CAN_SELECT_PHOTO";s:39:"You can not select more than one photo.";s:29:"ID_YOU_DO_NOT_HAVE_PERMISSION";s:34:"Error: You do not have permission.";s:39:"ID_YOU_DO_NOT_SELECT_ANY_USER_TO_IMPORT";s:36:"You do not select any user to import";s:17:"ID_YOU_HAVE_ERROR";s:17:"you have an error";s:45:"ID_YOU_UPLOADED_AN_UNSUPPORTED_FILE_EXTENSION";s:135:"You uploaded an unsupported file extension, please review the permitted files uploaded in the wiki of ProcessMaker for the cases notes.";s:11:"ID_ZIP_CODE";s:8:"Zip Code";s:12:"IMAGE_DETAIL";s:12:"Image detail";s:31:"IMPORT_LANGUAGE_ERR_NO_WRITABLE";s:39:"The XML forms directory is not writable";s:32:"IMPORT_LANGUAGE_ERR_NO_WRITABLE2";s:182:"Some files within XMLFORM directory are not writable, to install or update the translations the system requires that all files are writable. Contact your system administrator please.";s:23:"IMPORT_LANGUAGE_SUCCESS";s:47:"The translation file was successfully imported.";s:22:"IMPORT_PROCESS_DISABLE";s:67:"Disable the current process and create a new version of the process";s:18:"IMPORT_PROCESS_NEW";s:68:"Create a completely new process without changing the current process";s:26:"IMPORT_PROCESS_OVERWRITING";s:59:"Update the current process, overwriting all tasks and steps";s:21:"INCOMING_PORT_DEFAULT";s:27:"Incoming Port (default 143)";s:12:"INVALID_FILE";s:13:"Invalid file!";s:27:"IS_USER_NAME_DISPLAY_FORMAT";s:24:"User Name Display Format";s:5:"LOGIN";s:5:"Login";s:8:"LOGIN_AS";s:8:"Login as";s:16:"LOGIN_VERIFY_MSG";s:12:"Verifying...";s:7:"MAIL_TO";s:7:"Mail to";s:12:"MIME_DES_AVI";s:14:"AVI Video File";s:12:"MIME_DES_BMP";s:11:"BMP Picture";s:14:"MIME_DES_BZIP2";s:13:"BZIP2 Archive";s:12:"MIME_DES_CGI";s:10:"CGI Script";s:13:"MIME_DES_CPPH";s:15:"C++ Header File";s:13:"MIME_DES_CPPS";s:15:"C++ Source File";s:12:"MIME_DES_CSS";s:8:"CSS File";s:12:"MIME_DES_DIR";s:9:"Directory";s:12:"MIME_DES_DOC";s:13:"Word Document";s:13:"MIME_DES_DOCX";s:13:"Word Document";s:14:"MIME_DES_EXCEL";s:14:"Excel Document";s:12:"MIME_DES_EXE";s:15:"Executable File";s:13:"MIME_DES_FILE";s:4:"File";s:14:"MIME_DES_FLASH";s:16:"Flash Movie File";s:12:"MIME_DES_GIF";s:11:"GIF Picture";s:13:"MIME_DES_GZIP";s:12:"GZIP Archive";s:13:"MIME_DES_HTML";s:9:"HTML Page";s:14:"MIME_DES_JAVAC";s:15:"Java Class File";s:14:"MIME_DES_JAVAS";s:16:"Java Source File";s:12:"MIME_DES_JPG";s:11:"JPG Picture";s:11:"MIME_DES_JS";s:15:"Javascript File";s:13:"MIME_DES_MIDI";s:15:"MIDI Audio File";s:12:"MIME_DES_MOV";s:10:"Movie File";s:12:"MIME_DES_MP3";s:14:"MP3 Audio File";s:12:"MIME_DES_MPG";s:14:"MPG Video File";s:12:"MIME_DES_PAS";s:11:"Pascal File";s:12:"MIME_DES_PDF";s:8:"PDF File";s:13:"MIME_DES_PERL";s:11:"PERL Script";s:12:"MIME_DES_PHP";s:10:"PHP Script";s:11:"MIME_DES_PM";s:15:"PM Process File";s:12:"MIME_DES_PNG";s:11:"PNG Picture";s:12:"MIME_DES_PPT";s:15:"PowerPoint File";s:13:"MIME_DES_PPTX";s:15:"PowerPoint File";s:12:"MIME_DES_RAR";s:11:"RAR Archive";s:13:"MIME_DES_REAL";s:14:"RealAudio File";s:12:"MIME_DES_RTF";s:14:"Rich Text File";s:12:"MIME_DES_SQL";s:8:"SQL File";s:16:"MIME_DES_SYMLINK";s:13:"Symbolic Link";s:12:"MIME_DES_TAR";s:11:"TAR Archive";s:13:"MIME_DES_TEXT";s:9:"Text File";s:12:"MIME_DES_TXT";s:9:"Text File";s:12:"MIME_DES_WAV";s:14:"WAV Audio File";s:13:"MIME_DES_WORD";s:13:"Word Document";s:12:"MIME_DES_XLS";s:14:"Excel Document";s:13:"MIME_DES_XLSX";s:14:"Excel Document";s:12:"MIME_DES_ZIP";s:11:"ZIP Archive";s:30:"MISSING_OR_NOT_CONFIGURED_SMTP";s:77:"SMTP mail is missing or it\'s not configured. Please, check the configuration.";s:12:"MSGS_HISTORY";s:16:"Messages History";s:25:"MSG_CONDITION_NOT_DEFINED";s:30:"Condition variable not defined";s:22:"MSG_PO_FILE_BAD_FORMAT";s:30:"The .po file has a bad format!";s:28:"MSG_PO_FILE_INVALID_LANGUAJE";s:37:"The .po file has an invalid language!";s:12:"MSG_REQ_AUTH";s:54:"First you have to check the Require Authentication box";s:3:"NaN";s:1:"a";s:26:"NEW_SITE_CONFIRM_TO_CREATE";s:33:"Are you sure to create this site?";s:22:"NEW_SITE_NOT_AVAILABLE";s:57:"Workspace already exists, please choose a different name.";s:16:"NEW_SITE_SUCCESS";s:49:"Your new site was successfully created with name:";s:24:"NEW_SITE_SUCCESS_CONFIRM";s:30:"Do you want open the new site?";s:28:"NEW_SITE_SUCCESS_CONFIRMNOTE";s:68:"Note.- If you open the new site your current session will be closed.";s:11:"OPEN_NEW_WS";s:13:"Open new site";s:21:"OUTGOING_PORT_DEFAULT";s:26:"Outgoing Port (default 25)";s:13:"OUTPUT_CREATE";s:45:"Output document has been created successfully";s:16:"PASSWORD_HISTORY";s:16:"Password history";s:6:"PAUSED";s:5:"Pause";s:27:"PENTAHO_LABEL_CONFIGURATION";s:13:"Configuration";s:24:"PENTAHO_LABEL_DATASOURCE";s:15:"Datasource Name";s:23:"PENTAHO_LABEL_DB_EXISTS";s:24:"Datasource already exist";s:24:"PENTAHO_LABEL_DB_SUCCESS";s:31:"Datasource created successfully";s:26:"PENTAHO_LABEL_DRIVER_CLASS";s:12:"Driver Class";s:29:"PENTAHO_LABEL_JNDI_CONNECTION";s:15:"JNDI Connection";s:30:"PENTAHO_LABEL_JNDI_INFORMATION";s:16:"JNDI Information";s:22:"PENTAHO_LABEL_PASSWORD";s:8:"Password";s:21:"PENTAHO_LABEL_REBUILD";s:7:"Rebuild";s:27:"PENTAHO_LABEL_ROLES_MANAGER";s:13:"Roles Manager";s:20:"PENTAHO_LABEL_SERVER";s:20:"Pentaho Server (URL)";s:35:"PENTAHO_LABEL_SHOW_JNDI_INFORMATION";s:14:"Show JNDI Info";s:18:"PENTAHO_LABEL_SYNC";s:24:"Sync to Pentaho Solution";s:33:"PENTAHO_LABEL_TABLE_ALREADY_SYNCH";s:52:"Workspace already synchronized with Pentaho Solution";s:27:"PENTAHO_LABEL_TABLE_SUCCESS";s:60:"Table APP_CACHE_VIEW and triggers are installed successfully";s:27:"PENTAHO_LABEL_TABLE_SYNCHED";s:44:"Workspace synchronized with Pentaho Solution";s:28:"PENTAHO_LABEL_TABLE_TRIGGERS";s:28:"Database tables and triggers";s:17:"PENTAHO_LABEL_URL";s:3:"URL";s:26:"PENTAHO_LABEL_USER_CONSOLE";s:20:"Pentaho User Console";s:25:"PENTAHO_LABEL_USER_CREATE";s:22:"Create user in Pentaho";s:26:"PENTAHO_LABEL_USER_CREATED";s:25:"User created successfully";s:24:"PENTAHO_LABEL_USER_EXIST";s:19:"User already exists";s:23:"PENTAHO_LABEL_USER_NAME";s:9:"User Name";s:24:"PENTAHO_LABEL_WS_SYNCHED";s:44:"Workspace synchronized with Pentaho Solution";s:30:"PENTAHO_LABEL_WS_USER_PASSWORD";s:35:"Pentaho Workspace User and Password";s:23:"PENTAHO_TABLES_TRIGGERS";s:28:"Database tables and triggers";s:13:"PHOTO_GALLERY";s:13:"Photo gallery";s:12:"PORT_DEFAULT";s:17:"Port (default 25)";s:22:"REQUIRE_AUTHENTICATION";s:22:"Require authentication";s:14:"RESOLVING_NAME";s:19:"Resolving Host Name";s:18:"SENDING_TEST_EMAIL";s:22:"Sending a test mail to";s:14:"SEND_TEST_MAIL";s:16:"Send a test mail";s:15:"SERVER_RESPONSE";s:15:"Server Response";s:11:"SMTP_SERVER";s:11:"SMTP Server";s:5:"STEP1";s:6:"Step 1";s:5:"STEP2";s:6:"Step 2";s:5:"STEP3";s:6:"Step 3";s:5:"STEP4";s:6:"Step 4";s:9:"STEP_MODE";s:4:"Mode";s:18:"TESTING_EMAIL_CONF";s:27:"Testing email configuration";s:8:"TEST_HAS";s:12:"The test has";s:5:"TO_DO";s:5:"To Do";s:18:"UID_UNDEFINED_USER";s:14:"Undefined user";s:11:"UNCHECK_ALL";s:11:"Uncheck All";s:21:"USE_SECURE_CONNECTION";s:21:"Use Secure Connection";s:15:"VIEW_ROLE_USERS";s:5:"Users";s:19:"WEBEN_ONLY_BALANCED";s:103:"Web Entry only works with tasks which have Cyclical Assignment.
      Please change the Assignment Rules";s:23:"WRONG_LOGIN_CREDENTIALS";s:23:"Wrong login credentials";}'); +This page will be closed.";s:16:"ID_BOTTOM_MARGIN";s:13:"Bottom Margin";s:14:"ID_BPMN_EDITOR";s:18:"BPMN Editor (Beta)";s:27:"ID_BPMN_PROCESS_DEF_PROBLEM";s:85:"There is a problem in the BPMN process definition and/or an exception error occurred.";s:19:"ID_BREAK_DW_PROCESS";s:34:"were lost by a connection problem.";s:9:"ID_BROWSE";s:6:"Browse";s:24:"ID_BROWSER_NOT_SUPPORTED";s:30:"This browser is not supported.";s:17:"ID_BROWSE_LIBRARY";s:14:"Browse Library";s:14:"ID_BUILD_CACHE";s:11:"Build Cache";s:9:"ID_BUTTON";s:6:"Button";s:10:"ID_BUY_NOW";s:7:"Buy now";s:18:"ID_CACHE_BTN_BUILD";s:11:"Build Cache";s:26:"ID_CACHE_BTN_SETUP_PASSWRD";s:14:"Setup Password";s:26:"ID_CACHE_BTN_SETUP_SESSION";s:26:"Delete older session files";s:29:"ID_CACHE_BUILDER_CURRENT_USER";s:12:"Current User";s:25:"ID_CACHE_BUILDER_LANGUAGE";s:8:"Language";s:30:"ID_CACHE_BUILDER_MYSQL_VERSION";s:13:"MySQL Version";s:21:"ID_CACHE_BUILDER_ROWS";s:22:"Rows in APP_CACHE_VIEW";s:22:"ID_CACHE_BUILDER_TABLE";s:20:"Table APP_CACHE_VIEW";s:43:"ID_CACHE_BUILDER_TRIGGER_APPLICATION_DELETE";s:26:"Trigger APPLICATION DELETE";s:43:"ID_CACHE_BUILDER_TRIGGER_APPLICATION_UPDATE";s:26:"Trigger APPLICATION UPDATE";s:39:"ID_CACHE_BUILDER_TRIGGER_CONTENT_UPDATE";s:22:"Trigger CONTENT UPDATE";s:31:"ID_CACHE_BUILDER_TRIGGER_INSERT";s:29:"Trigger APP_DELEGATION INSERT";s:31:"ID_CACHE_BUILDER_TRIGGER_UPDATE";s:29:"Trigger APP_DELEGATION UPDATE";s:37:"ID_CACHE_BUILDER_USER_SUPER_PRIVILEGE";s:42:"The current user has SUPERUSER privileges.";s:17:"ID_CACHE_BUILDING";s:38:"Building Workflow Application Cache...";s:24:"ID_CACHE_DELETED_SUCCESS";s:39:"All cache data was deleted successfully";s:27:"ID_CACHE_DIR_ISNOT_WRITABLE";s:63:"The cache directory is not writable, change permissions please!";s:13:"ID_CACHE_FILE";s:11:"Cache file:";s:13:"ID_CACHE_HOST";s:4:"Host";s:17:"ID_CACHE_LANGUAGE";s:8:"Language";s:17:"ID_CACHE_PASSWORD";s:8:"Password";s:25:"ID_CACHE_SUBTITLE_REBUILD";s:34:"Rebuild Workflow Application Cache";s:26:"ID_CACHE_SUBTITLE_SETUP_DB";s:25:"Setup MySql Root Password";s:31:"ID_CACHE_SUBTITLE_SETUP_SESSION";s:19:"Session Maintenance";s:19:"ID_CACHE_TITLE_INFO";s:32:"Workflow Applications Cache Info";s:13:"ID_CACHE_USER";s:4:"User";s:11:"ID_CALENDAR";s:8:"Calendar";s:12:"ID_CALENDARS";s:9:"Calendars";s:32:"ID_CALENDAR_CREATED_SUCCESSFULLY";s:43:"Your calendar has been created successfully";s:22:"ID_CALENDAR_DEFINITION";s:19:"Calendar Definition";s:23:"ID_CALENDAR_DESCRIPTION";s:20:"Calendar Description";s:26:"ID_CALENDAR_DOES_NOT_EXIST";s:42:"The calendar with {0}: {1} does not exist.";s:24:"ID_CALENDAR_INVALID_NAME";s:33:"The calendar name already exists!";s:31:"ID_CALENDAR_NAME_ALREADY_EXISTS";s:49:"The calendar name with {0}: "{1}" already exists.";s:26:"ID_CALENDAR_SUCCESS_DELETE";s:36:"Calendar has been deleted correctly.";s:32:"ID_CALENDAR_UPDATED_SUCCESSFULLY";s:43:"Your calendar has been updated successfully";s:9:"ID_CANCEL";s:6:"Cancel";s:12:"ID_CANCELLED";s:8:"Canceled";s:13:"ID_CANCELLING";s:10:"Cancelling";s:14:"ID_CANCEL_CASE";s:11:"Cancel Case";s:18:"ID_CANCEL_NEW_NOTE";s:15:"Cancel New Note";s:40:"ID_CANCEL_PARTIAL_JOIN_MULTIPLE_INSTANCE";s:45:"Cancelling Partial Join for Multiple Instance";s:34:"ID_CANNOT_CHANGE_STATUS_ADMIN_USER";s:45:"Can\'t change the status of the Administrator!";s:27:"ID_CANNOT_DELETE_ADMIN_USER";s:31:"Can\'t delete the administrator!";s:16:"ID_CANNOT_IMPORT";s:13:"CANNOT IMPORT";s:37:"ID_CANNOT_REMOVE_TEMPLATE_EMAIL_EVENT";s:82:"You can not delete the template {0} because it has a relationship with Email Event";s:38:"ID_CANT_DELETE_DEPARTMENT_HAS_CHILDREN";s:74:"It is not possible to delete the department because it has subdepartments.";s:35:"ID_CANT_DELETE_DEPARTMENT_HAS_USERS";s:57:"Department cannot be deleted while it has assigned users.";s:27:"ID_CANT_RESOLVE_APPLICATION";s:49:"Can\'t resolve the Aplication ID for this request.";s:20:"ID_CANT_SAVE_TRIGGER";s:60:"A trigger with the same name already exists in this process.";s:19:"ID_CAN_NOT_BE_EMPTY";s:21:"{0}, can not be empty";s:18:"ID_CAN_NOT_BE_NULL";s:20:"{0}, can not be null";s:18:"ID_CAN_NOT_REMOVED";s:18:"Can not be removed";s:39:"ID_CAN_NOT_ROUTE_CASE_USING_WEBSERVICES";s:61:"Can not route a case with Manual Assignment using webservices";s:19:"ID_CAPS_LOCK_ALERT1";s:69:"Having Caps Lock on may cause you to enter your password incorrectly.";s:19:"ID_CAPS_LOCK_ALERT2";s:72:"You should press Caps Lock to turn it off before entering your password.";s:18:"ID_CAPS_LOCK_IS_ON";s:15:"Caps Lock is On";s:15:"ID_CAPTCHA_CODE";s:4:"Code";s:25:"ID_CAPTCHA_CODE_INCORRECT";s:29:"The Captcha Code is incorrect";s:21:"ID_CAPTCHA_INPUT_CODE";s:13:"Security Code";s:23:"ID_CAPTCHA_REFRESH_CODE";s:21:"Click to refresh code";s:7:"ID_CASE";s:4:"Case";s:13:"ID_CASECANCEL";s:35:"No actions available for this case.";s:11:"ID_CASEDEMO";s:9:"Case Demo";s:8:"ID_CASES";s:4:"HOME";s:9:"ID_CASES1";s:5:"Cases";s:29:"ID_CASESLIST_APP_CURRENT_USER";s:12:"Current User";s:26:"ID_CASESLIST_APP_DEL_INDEX";s:9:"Del Index";s:34:"ID_CASESLIST_APP_DEL_PREVIOUS_USER";s:7:"Sent by";s:28:"ID_CASESLIST_APP_FINISH_DATE";s:11:"Finish Date";s:23:"ID_CASESLIST_APP_NUMBER";s:1:"#";s:26:"ID_CASESLIST_APP_PRO_TITLE";s:7:"Process";s:23:"ID_CASESLIST_APP_STATUS";s:6:"Status";s:26:"ID_CASESLIST_APP_TAS_TITLE";s:4:"Task";s:29:"ID_CASESLIST_APP_THREAD_INDEX";s:12:"Thread Index";s:22:"ID_CASESLIST_APP_TITLE";s:4:"Case";s:20:"ID_CASESLIST_APP_UID";s:7:"Case Id";s:28:"ID_CASESLIST_APP_UPDATE_DATE";s:11:"Last Modify";s:22:"ID_CASESLIST_DEL_INDEX";s:10:"Case Index";s:25:"ID_CASESLIST_DEL_PRIORITY";s:8:"Priority";s:30:"ID_CASESLIST_DEL_TASK_DUE_DATE";s:8:"Due Date";s:27:"ID_CASESLIST_FIELD_COMPLETE";s:26:"Complete all system fields";s:30:"ID_CASESLIST_FIELD_COMPLETE_ID";s:64:"Complete all system fields with the label ID for its translation";s:30:"ID_CASESLIST_FIELD_LABEL_RESET";s:33:"Restart labels with system fields";s:33:"ID_CASESLIST_FIELD_LABEL_RESET_ID";s:78:"Restart labels with system fields with the ID of the label for its translation";s:24:"ID_CASESLIST_FIELD_RESET";s:41:"Restart everything with the system fields";s:27:"ID_CASESLIST_FIELD_RESET_ID";s:87:"Restart everything with the system fields, with the ID of the label for its translation";s:16:"ID_CASESREASSIGN";s:33:"You still have cases to reassign.";s:20:"ID_CASES_ASSIGNED_BY";s:23:"Cases to be Assigned by";s:18:"ID_CASES_DATE_MASK";s:11:"Date Format";s:27:"ID_CASES_DELETE_SUCCESFULLY";s:36:"All Cases were deleted successfully.";s:30:"ID_CASES_INCORRECT_INFORMATION";s:57:"Incorrect or unavailable information about this case: {0}";s:29:"ID_CASES_INPUT_DOES_NOT_EXIST";s:57:"This input document with app_doc_uid: {0} does not exist!";s:38:"ID_CASES_INPUT_FILENAME_DOES_NOT_EXIST";s:29:"This filename does not exist!";s:13:"ID_CASES_LIST";s:11:"Cases Lists";s:20:"ID_CASES_LIST_FIELDS";s:16:"Case List Fields";s:26:"ID_CASES_LIST_GRID_LOADING";s:34:"Loading Cases List, please wait...";s:19:"ID_CASES_LIST_SETUP";s:10:"Case Lists";s:19:"ID_CASES_MENU_ADMIN";s:18:"Process Supervisor";s:21:"ID_CASES_MENU_FOLDERS";s:5:"Cases";s:20:"ID_CASES_MENU_SEARCH";s:6:"Search";s:14:"ID_CASES_NOTES";s:10:"Case Notes";s:18:"ID_CASES_NOTES_ADD";s:12:"Add new note";s:21:"ID_CASES_NOTES_CANCEL";s:16:"Cancel this note";s:29:"ID_CASES_NOTES_NO_PERMISSIONS";s:52:"You do not have permission to access the cases notes";s:19:"ID_CASES_NOTES_POST";s:11:"Post a Note";s:21:"ID_CASES_NOTE_POSTING";s:14:"Posting a Note";s:24:"ID_CASES_NOTE_POST_ERROR";s:10:"Post Error";s:25:"ID_CASES_NOTE_POST_FAILED";s:23:"There is a server error";s:26:"ID_CASES_NOTE_POST_SUCCESS";s:24:"Note successfully posted";s:18:"ID_CASES_NOT_START";s:70:"You can\'t start a case because you don\'t have a starting task assigned";s:12:"ID_CASES_NUM";s:7:"# Cases";s:30:"ID_CASES_OUTPUT_DOES_NOT_EXIST";s:57:"This output document with app_doc_id: {0} does not exist!";s:19:"ID_CASES_ROW_NUMBER";s:23:"Number of Rows per Page";s:19:"ID_CASES_START_PAGE";s:11:"Start Pages";s:25:"ID_CASES_STATUS_CANCELLED";s:8:"Canceled";s:25:"ID_CASES_STATUS_COMPLETED";s:9:"Completed";s:21:"ID_CASES_STATUS_DRAFT";s:5:"Draft";s:22:"ID_CASES_STATUS_PAUSED";s:6:"Paused";s:21:"ID_CASES_STATUS_TO_DO";s:5:"To Do";s:14:"ID_CASES_STEPS";s:11:"Cases Steps";s:16:"ID_CASES_SUMMARY";s:13:"Cases Summary";s:30:"ID_CASES_TO_REASSIGN_TASK_LIST";s:29:"Cases to reassign - Task List";s:24:"ID_CASE_ALREADY_CANCELED";s:34:"The case \'{0}\' is already canceled";s:25:"ID_CASE_ALREADY_DERIVATED";s:19:"Case already routed";s:29:"ID_CASE_ASSIGNED_ANOTHER_USER";s:37:"This case is assigned to another user";s:17:"ID_CASE_CANCELLED";s:27:"The case {0} was cancelled!";s:26:"ID_CASE_CANCELLED_PARALLEL";s:104:"To cancel a case, no parallel threads must be active. Only cases with one active thread can be canceled.";s:25:"ID_CASE_CANCEL_LABEL_NOTE";s:29:"The case was canceled due to:";s:21:"ID_CASE_CANCEL_REASON";s:32:"Reason why the case was canceled";s:12:"ID_CASE_CODE";s:9:"Case Code";s:28:"ID_CASE_COULD_NOT_REASSIGNED";s:33:"The case could not be reassigned.";s:15:"ID_CASE_CREATED";s:12:"Case created";s:33:"ID_CASE_DELEGATION_ALREADY_CLOSED";s:56:"This case delegation is already closed or does not exist";s:28:"ID_CASE_DELETED_SUCCESSFULLY";s:47:"The Case {APP_NUMBER} was deleted successfully!";s:26:"ID_CASE_DELETE_SUCCESFULLY";s:34:"The Case was deleted successfully.";s:32:"ID_CASE_DEL_INDEX_DOES_NOT_EXIST";s:47:"The case {0}: {1} with {2}: {3} does not exist.";s:19:"ID_CASE_DESCRIPTION";s:16:"Case Description";s:22:"ID_CASE_DOES_NOT_EXIST";s:33:"Case {CASE_NUMBER} does not exist";s:23:"ID_CASE_DOES_NOT_EXIST2";s:38:"The case with {0}: {1} does not exist.";s:23:"ID_CASE_DOES_NOT_EXISTS";s:24:"This case does not exist";s:25:"ID_CASE_DOES_NOT_EXIST_JS";s:23:"Case {0} does not exist";s:13:"ID_CASE_FIELD";s:10:"Case Field";s:15:"ID_CASE_HISTORY";s:12:"Case History";s:17:"ID_CASE_IN_STATUS";s:22:"This case is in status";s:19:"ID_CASE_IS_CANCELED";s:26:"The case \'{0}\' is canceled";s:20:"ID_CASE_IS_COMPLETED";s:28:"The case "{0}" is completed.";s:38:"ID_CASE_IS_CURRENTLY_WITH_ANOTHER_USER";s:44:"The case is currently opened by another user";s:14:"ID_CASE_LABELS";s:11:"Case Labels";s:12:"ID_CASE_LIST";s:9:"Case List";s:12:"ID_CASE_NOTE";s:9:"Case Note";s:19:"ID_CASE_NOTES_EMPTY";s:19:"No notes to Display";s:23:"ID_CASE_NOTES_HINT_SEND";s:57:"A copy of this note will be sent to all Case Participants";s:24:"ID_CASE_NOTES_LABEL_SEND";s:30:"Send email (Case Participants)";s:21:"ID_CASE_NOTES_LOADING";s:16:"Loading Notes...";s:18:"ID_CASE_NOTES_MORE";s:15:"Show more notes";s:18:"ID_CASE_NOT_EXISTS";s:23:"The case does not exist";s:16:"ID_CASE_NOT_OPEN";s:21:"This case is not open";s:18:"ID_CASE_NOT_PAUSED";s:27:"Case with "{0}" not paused.";s:23:"ID_CASE_NOT_YET_STARTED";s:20:"Case not started yet";s:51:"ID_CASE_NO_CURRENT_TASKS_BECAUSE_CASE_ITS_COMPLETED";s:69:"There are no current tasks because case {0}: {1} has COMPLETED status";s:14:"ID_CASE_NUMBER";s:11:"Case number";s:26:"ID_CASE_NUMBER_CAPITALIZED";s:11:"Case Number";s:38:"ID_CASE_OUTPUT_DOCUMENT_DOES_NOT_EXIST";s:50:"This output document with {0}: {1} does not exist.";s:27:"ID_CASE_PAUSED_SUCCESSFULLY";s:92:"The Case {APP_NUMBER} was paused successfully and it will be unpaused on date {UNPAUSE_DATE}";s:24:"ID_CASE_PAUSE_LABEL_NOTE";s:27:"The case was paused due to:";s:20:"ID_CASE_PAUSE_REASON";s:24:"Reason to pause the case";s:23:"ID_CASE_PROPERTIES_SAVE";s:42:"Case Tracker Properties Saved Successfully";s:32:"ID_CASE_REACTIVATED_SUCCESSFULLY";s:51:"The case {APP_NUMBER} was reactivated successfully!";s:30:"ID_CASE_RESPONSE_NOT_AVAILABLE";s:57:"No response available, please review the case information";s:17:"ID_CASE_ROUTED_TO";s:14:"Case routed to";s:17:"ID_CASE_SCHEDULER";s:14:"Case Scheduler";s:25:"ID_CASE_SCHEDULER_CLASSIC";s:34:"Case Scheduler (classic processes)";s:32:"ID_CASE_SCHEDULER_DOES_NOT_EXIST";s:53:"This case scheduler with sch_uid: {0} does not exist!";s:27:"ID_CASE_SCHEDULER_DUPLICATE";s:29:"Duplicate Case Scheduler name";s:23:"ID_CASE_SCHEDULER_SAVED";s:32:"Case Scheduler Saved Sucessfully";s:25:"ID_CASE_SCHEDULER_SUMMARY";s:22:"Case Scheduler Summary";s:32:"ID_CASE_SCHEDULER_VALIDATE_ALERT";s:26:"User or password is empty.";s:13:"ID_CASE_START";s:10:"Start Case";s:23:"ID_CASE_STOPPED_TRIGGER";s:44:"The case has not stopped due to its trigger.";s:13:"ID_CASE_TITLE";s:10:"Case Title";s:16:"ID_CASE_TRACKERS";s:13:"Case trackers";s:37:"ID_CASE_TRACKER_OBJECT_DOES_NOT_EXIST";s:53:"The case tracker object with {0}: {1} does not exist.";s:16:"ID_CASE_UNARHIVE";s:13:"Case Unarhive";s:29:"ID_CASE_UNPAUSED_SUCCESSFULLY";s:48:"The Case {APP_NUMBER} was unpaused successfully!";s:32:"ID_CASE_USER_INVALID_CANCEL_CASE";s:50:"The user with "{0}" is invalid to cancel the Case.";s:32:"ID_CASE_USER_INVALID_PAUSED_CASE";s:49:"The user with "{0}" is invalid to pause the case.";s:33:"ID_CASE_USER_INVALID_UNPAUSE_CASE";s:51:"The user with "{0}" is invalid to Unpause the Case.";s:32:"ID_CASE_USER_NOT_HAVE_PERMISSION";s:67:"The user with "{0}" did not have permission to perform this action.";s:31:"ID_CASE_VARIABLE_ALREADY_EXISTS";s:51:"The Variable with {0}: "{1}" already exists in Case";s:31:"ID_CASE_VARIABLE_DOES_NOT_EXIST";s:51:"The Variable with {0}: "{1}" does not exist in Case";s:11:"ID_CATEGORY";s:8:"Category";s:18:"ID_CATEGORY_EXISTS";s:29:"Category name already exists.";s:16:"ID_CATEGORY_NAME";s:13:"Category Name";s:31:"ID_CATEGORY_NAME_ALREADY_EXISTS";s:49:"The category name with {0}: "{1}" already exists.";s:21:"ID_CATEGORY_NOT_EXIST";s:44:"The category with {0}: \'{1}\' does not exist.";s:26:"ID_CATEGORY_SUCCESS_DELETE";s:44:"Process category has been deleted correctly.";s:23:"ID_CATEGORY_SUCCESS_NEW";s:44:"Process category has been created correctly.";s:26:"ID_CATEGORY_SUCCESS_UPDATE";s:44:"Process category has been updated correctly.";s:9:"ID_CENTER";s:6:"center";s:16:"ID_CHANGES_SAVED";s:13:"Changes saved";s:23:"ID_CHANGE_DATABASE_NAME";s:20:"Change database name";s:18:"ID_CHANGE_PASSWORD";s:15:"Change Password";s:16:"ID_CHANGE_STATUS";s:13:"Change Status";s:14:"ID_CHANGE_VIEW";s:11:"Change view";s:8:"ID_CHECK";s:5:"Check";s:11:"ID_CHECKING";s:11:"Checking...";s:14:"ID_CHECK_AGAIN";s:11:"Check again";s:12:"ID_CHECK_ALL";s:9:"Check All";s:24:"ID_CHECK_FIELDS_MARK_RED";s:38:"Please check the fields marked in red.";s:13:"ID_CHECK_PORT";s:13:"Checking port";s:20:"ID_CHECK_PORT_FAILED";s:46:"Error Testing Connection: Checking port failed";s:16:"ID_CHECK_UPDATES";s:60:"Check for updates (you need to be connected to the Internet)";s:32:"ID_CHECK_WORKSPACE_CONFIGURATION";s:29:"Check Workspace Configuration";s:16:"ID_CHOOSE_OPTION";s:16:"Choose an option";s:18:"ID_CHOOSE_PROVIDER";s:22:"Please select provider";s:14:"ID_CHOOSE_TIME";s:13:"Choose a time";s:8:"ID_CLAIM";s:5:"Claim";s:17:"ID_CLASSIC_EDITOR";s:14:"Classic Editor";s:23:"ID_CLASS_ALREADY_EXISTS";s:20:"Class already exists";s:27:"ID_CLASS_TABLE_DOESNT_EXIST";s:31:"This Class Table doesn\'t exist!";s:19:"ID_CLEAN_WEBENTRIES";s:17:"Clean web-entries";s:24:"ID_CLEAN_WEBENTRIES_DESC";s:17:"Clean web-entries";s:8:"ID_CLEAR";s:5:"Clear";s:14:"ID_CLEAR_CACHE";s:11:"Clear Cache";s:23:"ID_CLEAR_CACHE_CONFIRM1";s:26:"Clear all cache files now?";s:19:"ID_CLEAR_CACHE_MSG1";s:26:"All cache data was deleted";s:19:"ID_CLEAR_CACHE_MSG2";s:28:"The cache directory is empty";s:13:"ID_CLEAR_CRON";s:10:"Clear Cron";s:12:"ID_CLEAR_LOG";s:9:"Clear Log";s:13:"ID_CLICK_LOCK";s:31:"Click the lock to make changes.";s:15:"ID_CLICK_UNLOCK";s:42:"Click the lock to prevent further changes.";s:12:"ID_CLIENT_ID";s:9:"Client ID";s:16:"ID_CLIENT_SECRET";s:13:"Client Secret";s:8:"ID_CLOSE";s:5:"Close";s:15:"ID_CLOSE_EDITOR";s:12:"Close Editor";s:7:"ID_CODE";s:4:"Code";s:13:"ID_CODE_CRYPT";s:5:"Code:";s:15:"ID_COLLAPSE_ALL";s:12:"Collapse All";s:32:"ID_COLOSA_AND_CERTIFIED_PARTNERS";s:129:"Supplied free of charge with no support, certification, warranty, maintenance nor indemnity by Colosa and its Certified Partners.";s:10:"ID_COLUMNS";s:7:"columns";s:32:"ID_COMMAND_EXECUTED_SUCCESSFULLY";s:29:"Command executed successfully";s:31:"ID_COMMAND_EXECUTED_SUCCESSFULY";s:29:"command executed successfully";s:11:"ID_COMMENTS";s:8:"Comments";s:12:"ID_COMPLETED";s:9:"Completed";s:20:"ID_COMPLETED_BY_USER";s:17:"Completed By User";s:18:"ID_COMPLETED_CASES";s:15:"Completed Cases";s:17:"ID_COMPLETED_TASK";s:14:"Completed Task";s:19:"ID_COMPLETE_VARCHAR";s:31:"Complete the Varchar field size";s:12:"ID_CONDITION";s:9:"Condition";s:20:"ID_CONDITIONS_EDITOR";s:17:"Conditions editor";s:29:"ID_CONDITIONS_EDITOR_DYNAFORM";s:37:"Updated conditions editor in dynaform";s:16:"ID_CONFIGURATION";s:13:"Configuration";s:12:"ID_CONFIGURE";s:9:"Configure";s:19:"ID_CONFIG_DIRECTORY";s:16:"Config Directory";s:10:"ID_CONFIRM";s:7:"Confirm";s:25:"ID_CONFIRM_ADHOCUSER_CASE";s:31:"Are you sure you want to do it?";s:24:"ID_CONFIRM_ASSIGNED_GRID";s:59:"Do you want to delete the data in the row you just created?";s:22:"ID_CONFIRM_CANCEL_CASE";s:42:"Are you sure you want to cancel this case?";s:32:"ID_CONFIRM_DELETE_AUTHENTICATION";s:57:"Do you want to delete the selected authentication source?";s:26:"ID_CONFIRM_DELETE_CALENDAR";s:44:"Do you want to delete the selected calendar?";s:22:"ID_CONFIRM_DELETE_CASE";s:42:"Are you sure you want to delete this case?";s:32:"ID_CONFIRM_DELETE_CASE_SCHEDULER";s:45:"Do you want to delete current Case Scheduler?";s:26:"ID_CONFIRM_DELETE_CATEGORY";s:44:"Do you want to delete the selected category?";s:27:"ID_CONFIRM_DELETE_DASHBOARD";s:55:"Are you sure you want to delete the selected Dashboard?";s:33:"ID_CONFIRM_DELETE_DASHBOARD_OWNER";s:42:"Are you sure you want to delete this user?";s:34:"ID_CONFIRM_DELETE_DASHLET_INSTANCE";s:44:"Do you want to delete this Dashlet Instance?";s:28:"ID_CONFIRM_DELETE_DEPARTMENT";s:46:"Do you want to delete the selected department?";s:25:"ID_CONFIRM_DELETE_ELEMENT";s:30:"Approval of consolidated tasks";s:35:"ID_CONFIRM_DELETE_INPUT_AND_HISTORY";s:65:"This action will delete the current document and all its versions";s:27:"ID_CONFIRM_DELETE_INPUT_DOC";s:50:"Do you want to delete the selected Input Document?";s:24:"ID_CONFIRM_DELETE_PLUGIN";s:49:"Are you sure that you want to remove this plugin?";s:32:"ID_CONFIRM_DELETE_PLUGIN_WARNING";s:52:"Uninstalling the plugin can affect other workspaces.";s:26:"ID_CONFIRM_DELETE_PM_TABLE";s:42:"Do you want to delete the selected tables?";s:22:"ID_CONFIRM_DELETE_SKIN";s:40:"Do you want to delete the selected skin?";s:27:"ID_CONFIRM_DELETE_WEB_ENTRY";s:40:"Do you want to delete current web entry?";s:26:"ID_CONFIRM_DISCARD_CHANGES";s:28:"Do you want discard changes?";s:26:"ID_CONFIRM_IMPORT_DYNAFORM";s:125:"If the selected form is imported, you may lose the information in the current form. Are you sure you want to import the form?";s:19:"ID_CONFIRM_PASSWORD";s:16:"Confirm Password";s:26:"ID_CONFIRM_REACTIVATE_CASE";s:46:"Are you sure you want to reactivate this case?";s:23:"ID_CONFIRM_REMOVE_FIELD";s:40:"Do you want to remove the selected rows?";s:24:"ID_CONFIRM_REMOVE_FIELDS";s:35:"Do you want to remove these fields?";s:18:"ID_CONFIRM_ROUTING";s:15:"Confirm Routing";s:22:"ID_CONFIRM_TO_REASSIGN";s:77:"There are cases which were not reassigned to a user. Do you want to continue?";s:23:"ID_CONFIRM_UNPAUSE_CASE";s:43:"Are you sure you want to unpause this case?";s:13:"ID_CONNECTING";s:13:"Connecting...";s:32:"ID_CONNECTING_TO_DATABASE_FAILED";s:49:"Error Testing Connection: Opening database failed";s:21:"ID_CONNECTING_TO_HOST";s:18:"Connecting to host";s:28:"ID_CONNECTING_TO_HOST_FAILED";s:51:"Error Testing Connection: Connecting to host failed";s:19:"ID_CONNECTION_ERROR";s:21:"Connection Error: {0}";s:29:"ID_CONNECTION_ERROR_PRIVILEGE";s:112:"Connection Error: User "{0}" can\'t create databases and users.
      Please, provide a user with SUPER privileges.";s:33:"ID_CONNECTION_ERROR_SECURITYADMIN";s:146:"Connection Error: User "{0}" can\'t create databases and Users
      Please provide an user with sysadmin role or dbcreator and securityadmin roles.";s:15:"ID_CONNECT_HOST";s:25:"Trying to connect to host";s:20:"ID_CONNECT_TO_SERVER";s:47:"Connected to server {0} :{1} using user: \'{2}\'";s:25:"ID_CONSOLIDATED_CASE_LIST";s:22:"Consolidated Case List";s:33:"ID_CONSOLIDATED_DYNAFORM_REQUIRED";s:73:"The process has no type template Dynaform grid, this Dynaform is required";s:16:"ID_CONTACT_ADMIN";s:40:"Please contact your system administrator";s:11:"ID_CONTINUE";s:8:"Continue";s:23:"ID_CONTINUE_WITH_OPTION";s:20:"Continue with option";s:27:"ID_CONVERT_NATIVE_REP_TABLE";s:30:"Convert to native Report Table";s:24:"ID_CONVERT_SIMPLE_REPORT";s:24:"Convert to Simple Report";s:7:"ID_COPY";s:4:"Copy";s:12:"ID_COPYRIGHT";s:58:"Copyright © 2003-2011 Colosa, Inc. All rights reserved.";s:16:"ID_COPYRIGHT_COL";s:32:"Colosa, Inc. All rights reserved";s:17:"ID_COPYRIGHT_FROM";s:22:"Copyright © 2003-";s:10:"ID_COPY_OF";s:7:"Copy of";s:8:"ID_COSTS";s:5:"Costs";s:15:"ID_COST_BY_HOUR";s:12:"Cost by hour";s:10:"ID_COUNTRY";s:7:"Country";s:13:"ID_COUNT_DAYS";s:13:"Count Days by";s:9:"ID_CREATE";s:6:"Create";s:10:"ID_CREATED";s:7:"Created";s:13:"ID_CREATED_BY";s:10:"Created By";s:22:"ID_CREATED_CASE_STATUS";s:19:"Created Case Status";s:21:"ID_CREATE_AUTH_SOURCE";s:28:"Create Authentication Source";s:18:"ID_CREATE_CALENDAR";s:15:"Create Calendar";s:24:"ID_CREATE_CASE_SCHEDULER";s:25:"Create new Case Scheduler";s:18:"ID_CREATE_CATEGORY";s:15:"Create Category";s:26:"ID_CREATE_DASHLET_INSTANCE";s:23:"Create Dashlet Instance";s:29:"ID_CREATE_DATABASE_CONNECTION";s:30:"Create New Database connection";s:14:"ID_CREATE_DATE";s:11:"Create Date";s:21:"ID_CREATE_DEPARTAMENT";s:17:"Create Department";s:18:"ID_CREATE_DYNAFORM";s:15:"Create Dynaform";s:22:"ID_CREATE_EMAIL_SERVER";s:19:"Create Email Server";s:24:"ID_CREATE_EMAIL_SETTINGS";s:21:"Create Email Settings";s:16:"ID_CREATE_FOLDER";s:17:"Create New Folder";s:28:"ID_CREATE_FOLDER_NAME_FOLDER";s:4:"Name";s:28:"ID_CREATE_FOLDER_PATH_FOLDER";s:4:"Path";s:15:"ID_CREATE_GROUP";s:16:"Create New Group";s:21:"ID_CREATE_GROUP_TITLE";s:16:"Create New Group";s:24:"ID_CREATE_INPUT_DOCUMENT";s:25:"Create New Input Document";s:26:"ID_CREATE_LOG_INSTALLATION";s:37:"Could not create the installation log";s:13:"ID_CREATE_NEW";s:10:"Create new";s:21:"ID_CREATE_NEW_ACCOUNT";s:20:"Create a New Account";s:25:"ID_CREATE_NEW_PROCESS_UID";s:49:"Do you wish to create a new UID for this process?";s:25:"ID_CREATE_OUTPUT_DOCUMENT";s:26:"Create new Output Document";s:17:"ID_CREATE_PMTABLE";s:15:"Create PM Table";s:18:"ID_CREATE_PM_TABLE";s:22:"Create from a PM Table";s:17:"ID_CREATE_PROCESS";s:14:"Create Process";s:14:"ID_CREATE_ROLE";s:15:"Create New Role";s:20:"ID_CREATE_ROLE_TITLE";s:15:"Create New Role";s:14:"ID_CREATE_SKIN";s:11:"Create Skin";s:25:"ID_CREATE_SUB_DEPARTAMENT";s:21:"Create Sub Department";s:17:"ID_CREATE_TRIGGER";s:18:"Create New trigger";s:14:"ID_CREATE_USER";s:11:"Create User";s:11:"ID_CREATING";s:14:"Creating : {0}";s:17:"ID_CREATING_TABLE";s:30:"Creating table, please wait...";s:21:"ID_CREATING_WORKSPACE";s:22:"Creating workspace {0}";s:19:"ID_CREDENTIAL_ERROR";s:17:"Credentials Error";s:15:"ID_CRON_ACTIONS";s:4:"Cron";s:19:"ID_CRON_ACTIONS_LOG";s:16:"Cron Actions Log";s:36:"ID_CRON_GRID_PAGE_DISPLAYING_MESSAGE";s:35:"Displaying actions {0} - {1} of {2}";s:12:"ID_CRON_INFO";s:16:"Cron Information";s:17:"ID_CRON_LOG_CLEAR";s:35:"Are you sure to clear the cron log?";s:14:"ID_CRON_STATUS";s:11:"Cron status";s:21:"ID_CRON_STATUS_ACTIVE";s:6:"Active";s:23:"ID_CRON_STATUS_INACTIVE";s:8:"Inactive";s:11:"ID_CSV_FILE";s:8:"CSV File";s:22:"ID_CURLFUN_ISUNDEFINED";s:83:"The process was not downloaded, because the curl extension for php is not installed";s:33:"ID_CURRENT_ASSING_TYPE_WITH_CASES";s:52:"The current activity has cases and cannot be deleted";s:32:"ID_CURRENT_BROWSER_NOT_SUPPORTED";s:173:"Your browser is not supported. See the list of supported browsers. List of supported browsers is a link to the wiki page: http://wiki.processmaker.com/3.0/Supported_Browsers";s:18:"ID_CURRENT_LICENSE";s:15:"Current license";s:15:"ID_CURRENT_USER";s:12:"Current User";s:16:"ID_CURRENT_USERS";s:13:"Current Users";s:17:"ID_CURRENT_VALUES";s:14:"Current Values";s:18:"ID_CURRENT_VERSION";s:15:"Current version";s:20:"ID_CURRENT_WORKSPACE";s:17:"Current Workspace";s:21:"ID_CUSTOM_CASES_LISTS";s:16:"Custom Case List";s:27:"ID_CUSTOM_SCHEDULE_SETTINGS";s:24:"Custom schedule settings";s:18:"ID_CUSTOM_SETTINGS";s:15:"Custom settings";s:17:"ID_CUSTOM_TRIGGER";s:14:"Custom Trigger";s:29:"ID_CUSTOM_TRIGGER_DESCRIPTION";s:14:"Custom Trigger";s:20:"ID_CYCLIC_ASSIGNMENT";s:17:"Cyclic Assignment";s:12:"ID_DASHBOARD";s:10:"Dashboards";s:24:"ID_DASHBOARD_BTNCOLUMNS1";s:10:"One Column";s:24:"ID_DASHBOARD_BTNCOLUMNS2";s:11:"Two columns";s:24:"ID_DASHBOARD_BTNCOLUMNS3";s:13:"Three columns";s:34:"ID_DASHBOARD_INDICATOR_INFORMATION";s:21:"Indicator Information";s:33:"ID_DASHBOARD_OWNER_SUCCESS_DELETE";s:43:"Owner Dashboard has been deleted correctly.";s:27:"ID_DASHBOARD_SUCCESS_DELETE";s:37:"Dashboard has been deleted correctly.";s:18:"ID_DASHBOARD_TITLE";s:15:"Dashboard Title";s:10:"ID_DASHLET";s:7:"Dashlet";s:21:"ID_DASHLETS_INSTANCES";s:17:"Dashlet Instances";s:19:"ID_DASHLET_INSTANCE";s:16:"Dashlet Instance";s:33:"ID_DASHLET_INSTANCE_CONFIGURATION";s:30:"Dashlet Instance Configuration";s:25:"ID_DASHLET_SUCCESS_DELETE";s:37:"Dashlet instance deleted sucessfully.";s:23:"ID_DASHLET_TITLE_EXISTS";s:29:"Dashlet title already exists.";s:21:"ID_DASH_CLICK_TO_VIEW";s:117:"You can click on one of the dashboards to view the data or click on the favorite icon to make it your main dashboard.";s:15:"ID_DASH_COMPARE";s:7:"Compare";s:26:"ID_DASH_COMPARE_END_PERIOD";s:4:"with";s:27:"ID_DASH_COMPARE_INIT_PERIOD";s:18:"Compare this month";s:21:"ID_DASH_COMPARE_MONTH";s:23:"Compare this month with";s:25:"ID_DASH_HELP_INBOX_STATUS";s:100:"Percentage of cases that are in Overdue (red), At Risk (yellow), On Time (green) in the user Inbox.";s:24:"ID_DASH_HELP_IND_COMPARE";s:75:"Indicator\'s absolute and porcentual variation compared with the last month.";s:21:"ID_DASH_HELP_IND_COST";s:87:"Amount of money savings or costs generated by the process or task in the current month.";s:27:"ID_DASH_HELP_IND_EFFICIENCY";s:39:"Indicator\'s value in the current month.";s:26:"ID_DASH_HELP_IND_TASK_COST";s:85:"Amount of money savings or costs generated by the group or user in the current month.";s:32:"ID_DASH_HELP_IND_TASK_EFFICIENCY";s:46:"Group or user efficiency in the current month.";s:22:"ID_DASH_HELP_IND_VALUE";s:39:"Indicator\'s value in the current month.";s:28:"ID_DASH_HELP_SYMBOL_SELECTOR";s:53:"Indicator\'s trend in comparision with the last month.";s:7:"ID_DATA";s:4:"Data";s:11:"ID_DATABASE";s:9:"Data Base";s:25:"ID_DATABASE_CONFIGURATION";s:22:"Database Configuration";s:18:"ID_DATABASE_ENGINE";s:15:"Database Engine";s:28:"ID_DATABASE_EXISTS_OVERWRITE";s:95:"Database already exists, check "Delete Databases if exists" to overwrite the exiting databases.";s:16:"ID_DATABASE_NAME";s:13:"Database Name";s:19:"ID_DATABASE_OPTIONS";s:16:"Database Options";s:18:"ID_DATABASE_SERVER";s:16:"Data Base Server";s:15:"ID_DATA_CORRECT";s:29:"The configuration is correct.";s:37:"ID_DATA_LIST_NOT_AVAILABLE_FOR_OLDVER";s:43:"Data List is not available for old version.";s:7:"ID_DATE";s:4:"DATE";s:14:"ID_DATE_FORMAT";s:11:"Date Format";s:16:"ID_DATE_FORMAT_1";s:11:"Y-m-d H:i:s";s:17:"ID_DATE_FORMAT_10";s:8:"D d M, Y";s:17:"ID_DATE_FORMAT_11";s:6:"D M, Y";s:17:"ID_DATE_FORMAT_12";s:6:"d M, Y";s:17:"ID_DATE_FORMAT_13";s:6:"d m, Y";s:17:"ID_DATE_FORMAT_14";s:5:"d.m.Y";s:17:"ID_DATE_FORMAT_15";s:6:"M d, Y";s:17:"ID_DATE_FORMAT_16";s:6:"m D, Y";s:17:"ID_DATE_FORMAT_17";s:52:"dd de M de Y (Date format only for Spanish language)";s:16:"ID_DATE_FORMAT_2";s:5:"d/m/Y";s:16:"ID_DATE_FORMAT_3";s:5:"m/d/Y";s:16:"ID_DATE_FORMAT_4";s:5:"Y/d/m";s:16:"ID_DATE_FORMAT_5";s:5:"Y/m/d";s:16:"ID_DATE_FORMAT_6";s:13:"F j, Y, g:i a";s:16:"ID_DATE_FORMAT_7";s:5:"m.d.y";s:16:"ID_DATE_FORMAT_8";s:7:"j, n, Y";s:16:"ID_DATE_FORMAT_9";s:15:"D M j G:i:s T Y";s:13:"ID_DATE_LABEL";s:4:"Date";s:17:"ID_DATE_NOT_VALID";s:57:"The value \'{0}\' is not a valid date for the format \'{1}\'.";s:6:"ID_DAY";s:3:"Day";s:7:"ID_DAYS";s:4:"Days";s:11:"ID_DAY_DAYS";s:6:"Day(s)";s:14:"ID_DBCNN_TITLE";s:29:"Checking server configuration";s:12:"ID_DBC_CHECK";s:26:"Checking server parameters";s:21:"ID_DBC_DBNAME_INVALID";s:64:"The database connection with dbs_database_name: \'{0}\' is invalid";s:21:"ID_DBC_ENCODE_INVALID";s:57:"The database connection with dbs_encode: \'{0}\' is invalid";s:16:"ID_DBC_NOT_EXIST";s:55:"The database connection with {0}: \'{1}\' does not exist.";s:19:"ID_DBC_PORT_INVALID";s:55:"The database connection with dbs_port: \'{0}\' is invalid";s:21:"ID_DBC_SERVER_INVALID";s:58:"The database connection with dbs_server: \'{0}\', is invalid";s:19:"ID_DBC_TYPE_INVALID";s:55:"The database connection with dbs_type: \'{0}\' is invalid";s:22:"ID_DBS_CONNECTION_EDIT";s:30:"Connection Edited Successfully";s:22:"ID_DBS_CONNECTION_SAVE";s:29:"Connection Saved Successfully";s:22:"ID_DBS_CONNECTION_TEST";s:30:"Connection Tested Successfully";s:11:"ID_DBS_EDIT";s:32:"Edit the current Database Source";s:11:"ID_DBS_LIST";s:20:"Database Source List";s:13:"ID_DBS_SOURCE";s:23:"Add New Database Source";s:16:"ID_DB_CONNECTION";s:13:"DB Connection";s:17:"ID_DB_CONNECTIONS";s:20:"Database Connections";s:25:"ID_DB_CONNECTION_NO_EXIST";s:28:"DB Connection doesn\'t exist!";s:13:"ID_DEACTIVATE";s:10:"Deactivate";s:10:"ID_DEATACH";s:6:"Detach";s:8:"ID_DEBUG";s:8:"Debugger";s:16:"ID_DEBUG_MESSAGE";s:14:"Debug Messages";s:13:"ID_DEBUG_MODE";s:10:"Debug Mode";s:20:"ID_DEBUG_PANEL_TITLE";s:21:"ProcessMaker Debugger";s:19:"ID_DEFAULT_CALENDAR";s:16:"Default Calendar";s:28:"ID_DEFAULT_CASES_MENU_OPTION";s:25:"Default Cases Menu option";s:26:"ID_DEFAULT_EXPIRATION_YEAR";s:32:"Default User Expiry Date (Years)";s:35:"ID_DEFAULT_EXPIRATION_YEAR_VALIDATE";s:58:"Default Expiration Year value has to be a positive integer";s:19:"ID_DEFAULT_LANGUAGE";s:16:"Default Language";s:27:"ID_DEFAULT_MAIN_MENU_OPTION";s:24:"Default Main Menu Option";s:17:"ID_DEFAULT_SET_TO";s:55:"(Default set to (&(!(objectClass=organizationalUnit))))";s:15:"ID_DEFAULT_SKIN";s:12:"Default Skin";s:13:"ID_DEFINITION";s:10:"Definition";s:14:"ID_DELAY_FIELD";s:11:"Delay Field";s:21:"ID_DELEGATE_DATE_FROM";s:9:"Date from";s:19:"ID_DELEGATE_DATE_TO";s:2:"to";s:16:"ID_DELEGATE_USER";s:14:"Delegated User";s:18:"ID_DELEGATION_DATE";s:15:"Delegation Date";s:9:"ID_DELETE";s:6:"Delete";s:10:"ID_DELETED";s:7:"Deleted";s:23:"ID_DELETED_SUCCESSFULLY";s:20:"Deleted Successfully";s:16:"ID_DELETE_ACTION";s:11:"Delete case";s:20:"ID_DELETE_ALL_FIELDS";s:33:"Do you want to delete all fields?";s:26:"ID_DELETE_ALL_REPORT_TABLE";s:40:"Do you want to delete all report tables?";s:21:"ID_DELETE_AUTH_SOURCE";s:28:"Delete Authentication Source";s:18:"ID_DELETE_CALENDAR";s:15:"Delete Calendar";s:15:"ID_DELETE_CASES";s:12:"Delete Cases";s:23:"ID_DELETE_CASE_NO_OWNER";s:61:"You can\'t delete the case because you didn\'t create the case.";s:24:"ID_DELETE_CASE_NO_STATUS";s:85:"You can\'t delete the case because it\'s not in Draft status and was already derivated.";s:24:"ID_DELETE_CASE_SCHEDULER";s:21:"Delete Case Scheduler";s:18:"ID_DELETE_CATEGORY";s:15:"Delete Category";s:20:"ID_DELETE_CONNECTION";s:22:"Delete the connection?";s:26:"ID_DELETE_DASHLET_INSTANCE";s:23:"Delete Dashlet Instance";s:19:"ID_DELETE_DATABASES";s:28:"Delete database if it exists";s:29:"ID_DELETE_DATABASE_CONNECTION";s:26:"Delete Database Connection";s:22:"ID_DELETE_DATA_PMTABLE";s:25:"Delete Data from PM Table";s:21:"ID_DELETE_DEPARTAMENT";s:17:"Delete Department";s:18:"ID_DELETE_DOCUMENT";s:44:"Do you want to delete the selected document?";s:18:"ID_DELETE_DYNAFORM";s:15:"Delete Dynaform";s:22:"ID_DELETE_EMAIL_SERVER";s:19:"Delete Email Server";s:16:"ID_DELETE_FIELDS";s:42:"Do you want to delete the selected fields?";s:20:"ID_DELETE_FIELD_SURE";s:43:"Are you sure you want to delete this field?";s:15:"ID_DELETE_GROUP";s:12:"Remove Group";s:20:"ID_DELETE_GROUP_TASK";s:17:"Delete Group Task";s:24:"ID_DELETE_INDICATOR_SURE";s:47:"Are you sure you want to delete this Indicator?";s:31:"ID_DELETE_INPUTDOCUMENT_CONFIRM";s:81:"The item will be deleted the day of the work hour’s list. Do you want continue?";s:24:"ID_DELETE_INPUT_DOCUMENT";s:21:"Delete Input Document";s:17:"ID_DELETE_LAGUAGE";s:15:"Delete Language";s:18:"ID_DELETE_LANGUAGE";s:6:"Remove";s:26:"ID_DELETE_LANGUAGE_CONFIRM";s:51:"Are you sure you want to delete the language "{0}"?";s:26:"ID_DELETE_LANGUAGE_WARNING";s:57:"To delete a language, first select an item from the list.";s:14:"ID_DELETE_LINE";s:11:"Delete Line";s:15:"ID_DELETE_LINES";s:16:"Delete All Lines";s:14:"ID_DELETE_LOGO";s:11:"Delete Logo";s:17:"ID_DELETE_MANAGER";s:31:"You cannot unassign the manager";s:25:"ID_DELETE_OUTPUT_DOCUMENT";s:22:"Delete Output Document";s:20:"ID_DELETE_PERMISSION";s:45:"Do you want to deleted the permission of {0}?";s:21:"ID_DELETE_PERMISSIONS";s:18:"Delete Permissions";s:28:"ID_DELETE_PERMISSION_TO_ROLE";s:25:"Delete Permission To Role";s:17:"ID_DELETE_PMTABLE";s:15:"Delete PM Table";s:17:"ID_DELETE_PROCESS";s:14:"Delete Process";s:23:"ID_DELETE_PROCESS_CASES";s:74:"Are you sure you want to delete all the cases of the selected process(es)?";s:22:"ID_DELETE_REPORT_TABLE";s:49:"Do you want to delete the selected report tables?";s:14:"ID_DELETE_ROLE";s:11:"Delete Role";s:16:"ID_DELETE_ROUTES";s:13:"Delete Routes";s:24:"ID_DELETE_SELECTED_ITEMS";s:43:"Do you want to deleted selected({0}) items?";s:23:"ID_DELETE_SELECTED_LOGO";s:40:"Do you want to delete the selected logo?";s:14:"ID_DELETE_SKIN";s:11:"Delete Skin";s:21:"ID_DELETE_SUB_PROCESS";s:18:"Delete Sub-Process";s:20:"ID_DELETE_SUPERVISOR";s:34:"You cannot unassign the supervisor";s:26:"ID_DELETE_TABLE_COLLECTION";s:38:"Do you want to delete this collection?";s:14:"ID_DELETE_TASK";s:11:"Delete Task";s:14:"ID_DELETE_TEXT";s:11:"Delete Text";s:22:"ID_DELETE_TRANSLATIONS";s:33:"Delete the selected translations?";s:17:"ID_DELETE_TRIGGER";s:14:"Delete Trigger";s:14:"ID_DELETE_USER";s:11:"Delete User";s:19:"ID_DELETE_USER_TASK";s:16:"Delete User Task";s:22:"ID_DELETE_USER_TO_ROLE";s:20:"Delete Users To Role";s:16:"ID_DELETING_CASE";s:16:"Deleting case...";s:20:"ID_DELETING_ELEMENTS";s:33:"Deleting elements, please wait...";s:24:"ID_DELETION_SUCCESSFULLY";s:21:"DELETION SUCCESSFULLY";s:15:"ID_DELIMITED_BY";s:12:"Delimited by";s:12:"ID_DEL_INDEX";s:9:"Del Index";s:20:"ID_DEL_THREAD_STATUS";s:13:"Thread Status";s:20:"ID_DEPARTAMENT_USERS";s:11:"Departments";s:13:"ID_DEPARTMENT";s:10:"Department";s:14:"ID_DEPARTMENTS";s:11:"Departments";s:26:"ID_DEPARTMENTS_SYNCHRONIZE";s:23:"Synchronize Departments";s:20:"ID_DEPARTMENTS_USERS";s:11:"Departments";s:37:"ID_DEPARTMENT_CHECK_PARENT_DEPARTMENT";s:78:"It\'s necessary to check the parent-department: {0} for the sub-department: {1}";s:34:"ID_DEPARTMENT_CREATED_SUCCESSFULLY";s:81:"{DEPARTMENT_NAME}, {PARENT_UID} Department {DEPARTMENT_NAME} created successfully";s:26:"ID_DEPARTMENT_ERROR_CREATE";s:25:"Error creating department";s:20:"ID_DEPARTMENT_EXISTS";s:31:"Department name already exists.";s:27:"ID_DEPARTMENT_MANAGER_EXIST";s:42:"The user: {0} is other department manager.";s:18:"ID_DEPARTMENT_NAME";s:15:"Department Name";s:27:"ID_DEPARTMENT_NAME_REQUIRED";s:27:"Department name is required";s:23:"ID_DEPARTMENT_NOT_EXIST";s:46:"The department with {0}: \'{1}\' does not exist.";s:35:"ID_DEPARTMENT_NOT_REGISTERED_SYSTEM";s:51:"Department {DEP_ID} is not registered in the system";s:28:"ID_DEPARTMENT_SUCCESS_DELETE";s:38:"Department has been deleted correctly.";s:25:"ID_DEPARTMENT_SUCCESS_NEW";s:38:"Department has been created correctly.";s:28:"ID_DEPARTMENT_SUCCESS_UPDATE";s:38:"Department has been updated correctly.";s:34:"ID_DEPARTMENT_TITLE_ALREADY_EXISTS";s:52:"The department title with {0}: "{1}" already exists.";s:12:"ID_DERIVATED";s:6:"Routed";s:16:"ID_DERIVATION_DB";s:10:"Derivation";s:21:"ID_DERIVATION_HISTORY";s:15:"Routing History";s:20:"ID_DERIVATION_RESULT";s:17:"Derivation Result";s:18:"ID_DERIVATION_RULE";s:15:"Derivation Rule";s:10:"ID_DERIVED";s:4:"Sent";s:14:"ID_DESCRIPTION";s:11:"Description";s:11:"ID_DESIGNER";s:8:"Designer";s:40:"ID_DESIGNER_PROCESS_DESIGNER_IS_DISABLED";s:48:"The designer of this type of process is disabled";s:14:"ID_DESTINATION";s:11:"Destination";s:19:"ID_DESTINATION_PATH";s:16:"Destination Path";s:9:"ID_DETAIL";s:6:"Detail";s:10:"ID_DETAILS";s:7:"Details";s:22:"ID_DETAILS_WEBSERVICES";s:7:"Details";s:14:"ID_DETAIL_CASE";s:11:"Detail Case";s:12:"ID_DE_ASSIGN";s:6:"Remove";s:30:"ID_DIAGRAM_VALIDATED_CORRECTLY";s:37:"Diagram has been validated correctly.";s:12:"ID_DIRECTION";s:9:"Direction";s:27:"ID_DIRECTORIES_NOT_WRITABLE";s:56:"Some directories and/or files inside it are not writable";s:12:"ID_DIRECTORY";s:9:"Directory";s:28:"ID_DIRECTORY_FILE_PERMISSION";s:16:"File Permissions";s:38:"ID_DIRECTORY_NAME_EXISTS_ENTER_ANOTHER";s:52:"The name "{0}" already exists, please enter another.";s:10:"ID_DISABLE";s:7:"Disable";s:11:"ID_DISABLED";s:8:"Disabled";s:30:"ID_DISABLED_CODE_CODE_AND_LINE";s:15:"{0} (Lines {1})";s:23:"ID_DISABLED_CODE_PLUGIN";s:72:"The plugin has the following unwanted code (this code should be removed)";s:24:"ID_DISABLED_CODE_PROCESS";s:84:"The process "{0}" has the following unwanted code (this code should be removed): {1}";s:24:"ID_DISABLED_CODE_TRIGGER";s:78:"The trigger has the following unwanted code (this code should be removed): {0}";s:35:"ID_DISABLED_CODE_TRIGGER_TO_EXECUTE";s:79:"The following triggers has unwanted code (these triggers are not executed): {0}";s:17:"ID_DISABLE_ACTION";s:14:"Disable Action";s:20:"ID_DISABLE_AUDIT_LOG";s:17:"Disable Audit Log";s:16:"ID_DISABLE_DEBUG";s:18:"Disable Debug Mode";s:26:"ID_DISABLE_FORGOT_PASSWORD";s:28:"Forgot password was disabled";s:21:"ID_DISABLE_HEART_BEAT";s:18:"Disable Heart Beat";s:17:"ID_DISABLE_PLUGIN";s:14:"Disable Plugin";s:21:"ID_DISABLE_PLUGIN_TIP";s:27:"Disable the selected plugin";s:15:"ID_DISABLE_USER";s:12:"Disable User";s:20:"ID_DISABLE_WORKSPACE";s:17:"Disable Workspace";s:17:"ID_DISB_WORKSPACE";s:21:"This site is disabled";s:18:"ID_DISCARD_CHANGES";s:15:"Discard Changes";s:23:"ID_DISPATCH_PARAMS_BODY";s:40:"Invalid Request, multipart without body.";s:24:"ID_DISPATCH_PARAMS_CALLS";s:46:"Invalid Request, multipart body without calls.";s:27:"ID_DISPLAYING_DB_CONNECTION";s:41:"Displaying DB Connection {0} - {1} of {2}";s:16:"ID_DISPLAY_EMPTY";s:16:"Displaying Empty";s:16:"ID_DISPLAY_ITEMS";s:30:"Display Items {0} - {1} of {2}";s:13:"ID_DISPLAY_OF";s:2:"of";s:20:"ID_DISPLAY_PROCESSES";s:37:"Displaying Processes {0} - {1} of {2}";s:16:"ID_DISPLAY_TOTAL";s:9:"Total {2}";s:21:"ID_DISTINGUISHED_NAME";s:18:"Distinguished Name";s:10:"ID_DOCLICK";s:22:"Double click to insert";s:16:"ID_DOCUMENT_TYPE";s:7:"PM Type";s:20:"ID_DOES NOT_DYNAFORM";s:69:"This id for dyn_uid: {0} does not correspond to a registered Dynaform";s:26:"ID_DOES NOT_INPUT_DOCUMENT";s:79:"This id for inp_doc_uid: {0} does not correspond to a registered Input Document";s:22:"ID_DOES_NOT_CORRESPOND";s:52:"This id: {0} does not correspond to a registered {1}";s:17:"ID_DOES_NOT_EXIST";s:14:"does not exist";s:38:"ID_DOES_NOT_EXIST_AVAILABLE_CONNECTION";s:38:"Does not exist an available connection";s:7:"ID_DONE";s:4:"Done";s:23:"ID_DONT_MODIFY_PK_VALUE";s:57:"You can not modify the primary key value for "{0}" field.";s:7:"ID_DOWN";s:4:"Down";s:11:"ID_DOWNLOAD";s:8:"Download";s:19:"ID_DOWNLOADING_FILE";s:16:"Downloading file";s:22:"ID_DOWNLOADING_UPGRADE";s:20:"Downloading upgrade:";s:20:"ID_DOWNLOAD_MANUALLY";s:33:"You can download it manually here";s:15:"ID_DOWN_TRIGGER";s:12:"Down Trigger";s:8:"ID_DRAFT";s:5:"Draft";s:20:"ID_DRIVE_HELP_ENABLE";s:128:"When this option is enabled, all input, output and attached documents generated in your processes can be stored in Google Drive.";s:23:"ID_DROP_DATABASE_EXISTS";s:23:"Drop database if exists";s:11:"ID_DUE_DATE";s:8:"Due Date";s:32:"ID_DUPLICATE_CASE_SCHEDULER_NAME";s:30:"Duplicate Case Scheduler name.";s:26:"ID_DUPLICATE_CATEGORY_NAME";s:24:"Duplicate category name.";s:30:"ID_DUPLICATE_ENTRY_PRIMARY_KEY";s:31:"Duplicate entry for primary key";s:19:"ID_DYANFORM_CREATED";s:38:"Dynaform has been created successfully";s:18:"ID_DYANFORM_REMOVE";s:51:"Dynaform has been removed successfully from Process";s:10:"ID_DYNADOC";s:27:"My Case Forms and Documents";s:11:"ID_DYNAFORM";s:8:"DynaForm";s:12:"ID_DYNAFORMS";s:9:"DynaForms";s:18:"ID_DYNAFORM_ASSIGN";s:52:"Dynaform has been successfully assigned to a Process";s:25:"ID_DYNAFORM_ASSIGN_FAILED";s:47:"Failed saving DynaForm assigned to the process.";s:16:"ID_DYNAFORM_COPY";s:20:"Copy/Import Dynaform";s:25:"ID_DYNAFORM_COPY_REQUIRED";s:44:"Select the dynaform you want to copy/import.";s:26:"ID_DYNAFORM_DOES_NOT_EXIST";s:42:"The DynaForm with {0}: {1} does not exist.";s:18:"ID_DYNAFORM_EDITOR";s:15:"DynaForm Editor";s:30:"ID_DYNAFORM_EDITOR_LOGIN_AGAIN";s:89:"You have lost your session and you have to login to continue. Please enter your password.";s:31:"ID_DYNAFORM_EDITOR_SAVE_CHANGES";s:28:"Do you want to save changes?";s:17:"ID_DYNAFORM_FIELD";s:14:"Dynaform Field";s:18:"ID_DYNAFORM_FIELDS";s:15:"Dynaform Fields";s:26:"ID_DYNAFORM_HASNOSUBMITBTN";s:94:"Warning: This DynaForm does not include a [Submit] or [Button] field to save any entered data.";s:19:"ID_DYNAFORM_HISTORY";s:10:"Change Log";s:23:"ID_DYNAFORM_INFORMATION";s:20:"Dynaform Information";s:39:"ID_DYNAFORM_IS_NOT_ASSIGNED_TO_ACTIVITY";s:53:"The DynaForm "{0}" is not assigned to activity "{1}".";s:23:"ID_DYNAFORM_IS_NOT_GRID";s:40:"The DynaForm with {0}: {1}, is not grid.";s:50:"ID_DYNAFORM_IT_IS_TRYING_CREATE_BY_SEVERAL_METHODS";s:88:"It is trying to create a DynaForm by "{0}", please send only one attribute for creation.";s:21:"ID_DYNAFORM_NOT_EXIST";s:44:"The dynaform with {0}: \'{1}\' does not exist.";s:19:"ID_DYNAFORM_REMOVED";s:38:"Dynaform has been removed successfully";s:24:"ID_DYNAFORM_SAVE_CHANGES";s:28:"Do you want to save changes?";s:32:"ID_DYNAFORM_TITLE_ALREADY_EXISTS";s:50:"The DynaForm title with {0}: "{1}" already exists.";s:26:"ID_DYNAFORM_TITLE_REQUIRED";s:23:"Dynaform Title Required";s:29:"ID_DYN_UID_PARAMETER_IS_EMPTY";s:31:"The DYN_UID parameter is empty.";s:12:"ID_EASTPANEL";s:9:"eastPanel";s:7:"ID_EDIT";s:4:"Edit";s:19:"ID_EDITING_DYNAFORM";s:20:"Editing the dynaform";s:14:"ID_EDIT_ACTION";s:11:"Edit Action";s:12:"ID_EDIT_BPMN";s:9:"Edit BPMN";s:16:"ID_EDIT_CATEGORY";s:21:"Edit Process Category";s:26:"ID_EDIT_CONDITIONS_OF_STEP";s:20:"Edit step conditions";s:11:"ID_EDIT_DBC";s:24:"Edit Database Connection";s:18:"ID_EDIT_DEPARTMENT";s:15:"Edit Department";s:16:"ID_EDIT_DYNAFORM";s:13:"Edit DynaForm";s:13:"ID_EDIT_EVENT";s:10:"Edit Event";s:13:"ID_EDIT_FIELD";s:10:"Edit Field";s:19:"ID_EDIT_GROUP_TITLE";s:10:"Edit Group";s:17:"ID_EDIT_INPUTDOCS";s:19:"Edit Input Document";s:16:"ID_EDIT_MEMBEROF";s:14:"Edit Member Of";s:15:"ID_EDIT_MEMBERS";s:12:"Edit Members";s:19:"ID_EDIT_PERMISSIONS";s:16:"Edit Permissions";s:15:"ID_EDIT_PROCESS";s:14:"Process Edited";s:20:"ID_EDIT_REPORT_TABLE";s:17:"Edit Report Table";s:18:"ID_EDIT_ROLE_TITLE";s:9:"Edit Role";s:16:"ID_EDIT_TRIGGERS";s:12:"Edit Trigger";s:13:"ID_EDIT_USERS";s:10:"Edit Users";s:23:"ID_EDIT_VIEW_USER_GROUP";s:16:"View user groups";s:17:"ID_EDIT_WEB_ENTRY";s:14:"Edit Web Entry";s:43:"ID_EEPLUGIN_IMPORT_PLUGIN_NOT_IS_ENTERPRISE";s:51:"The plugin "{0}" not is a Enterprise Edition Plugin";s:18:"ID_EFFICIENCY_COST";s:15:"Efficiency cost";s:19:"ID_EFFICIENCY_INDEX";s:16:"Efficiency Index";s:18:"ID_EFFICIENCY_USER";s:15:"User Efficiency";s:8:"ID_EMAIL";s:5:"Email";s:9:"ID_EMAILS";s:6:"Emails";s:32:"ID_EMAIL_DOES_NOT_MATCH_FOR_USER";s:33:"The email doesn\'t match for user:";s:30:"ID_EMAIL_ENGINE_IS_NOT_ENABLED";s:86:"The "Email Notifications" is not enabled, please contact to your System Administrator.";s:20:"ID_EMAIL_ENTER_VALID";s:35:"Please enter a valid email address.";s:34:"ID_EMAIL_EVENT_CONFIGURATION_EMAIL";s:104:"Email event: {0}, in process: {1}, cannot send any mail because its configuration needs to be completed.";s:40:"ID_EMAIL_EVENT_DEFINITION_DOES_NOT_EXIST";s:42:"The email event definition does not exist.";s:27:"ID_EMAIL_MORE_THAN_ONE_USER";s:80:"This email is assigned to more than one user. Please contact your administrator.";s:18:"ID_EMAIL_MORE_USER";s:80:"This email is assigned to more than one user. Please contact your administrator.";s:30:"ID_EMAIL_NOT_CORRESPONDS_TOKEN";s:55:"The email does not corresponds to the token gmail user.";s:18:"ID_EMAIL_RESENT_TO";s:23:"The email was resend to";s:28:"ID_EMAIL_SERVER_ACCOUNT_FROM";s:12:"From Account";s:30:"ID_EMAIL_SERVER_CONFIRM_DELETE";s:39:"Do you want to delete the Email Server?";s:23:"ID_EMAIL_SERVER_DEFAULT";s:7:"Default";s:27:"ID_EMAIL_SERVER_DELETE_DATA";s:14:"Delete data...";s:38:"ID_EMAIL_SERVER_DELETE_WARNING_MESSAGE";s:123:"Are you sure you want to delete this Email Server? the components that were using it will now use the default email server.";s:30:"ID_EMAIL_SERVER_DOES_NOT_EXIST";s:46:"The email server with {0}: {1} does not exist.";s:20:"ID_EMAIL_SERVER_EDIT";s:17:"Edit Email Server";s:31:"ID_EMAIL_SERVER_FROM_MAIL_EMPTY";s:147:"The email has not been sent because configuration email in the Email Server Settings (admin/settings/email) is empty. Please fill this information.";s:27:"ID_EMAIL_SERVER_INSERT_DATA";s:14:"Insert data...";s:26:"ID_EMAIL_SERVER_IS_DEFAULT";s:42:"The email server with {0}: {1} is default.";s:19:"ID_EMAIL_SERVER_NEW";s:16:"New Email Server";s:20:"ID_EMAIL_SERVER_PORT";s:4:"Port";s:30:"ID_EMAIL_SERVER_RESULT_TESTING";s:27:"Result Testing Email Server";s:23:"ID_EMAIL_SERVER_TESTING";s:20:"Testing Email Server";s:42:"ID_EMAIL_SERVER_TEST_CONNECTION_CHECK_PORT";s:18:"Checking port: {0}";s:53:"ID_EMAIL_SERVER_TEST_CONNECTION_ESTABLISHING_CON_HOST";s:36:"Establishing connection to host: {0}";s:37:"ID_EMAIL_SERVER_TEST_CONNECTION_LOGIN";s:32:"Login as: {0} On {1} SMTP Server";s:46:"ID_EMAIL_SERVER_TEST_CONNECTION_RESOLVING_NAME";s:24:"Resolving Host Name: {0}";s:45:"ID_EMAIL_SERVER_TEST_CONNECTION_SENDING_EMAIL";s:27:"Sending a test mail to: {0}";s:46:"ID_EMAIL_SERVER_TEST_CONNECTION_VERIFYING_MAIL";s:30:"Verifying Mail Transport Agent";s:25:"ID_EMAIL_SERVER_TEST_DATA";s:12:"Test data...";s:45:"ID_EMAIL_SERVER_THIS_CONFIGURATION_IS_DEFAULT";s:28:"Set as default configuration";s:21:"ID_EMAIL_SERVER_TITLE";s:13:"Email Servers";s:29:"ID_EMAIL_SERVER_TITLE_TESTING";s:20:"Testing Email Server";s:27:"ID_EMAIL_SERVER_UPDATE_DATA";s:14:"Update data...";s:11:"ID_EMPLOYEE";s:9:"Next User";s:22:"ID_EMPLYEE_EFFICIENCIE";s:25:"Employee Efficience Index";s:8:"ID_EMPTY";s:5:"empty";s:13:"ID_EMPTY_CASE";s:14:"Search Case...";s:17:"ID_EMPTY_LANGUAGE";s:17:"Select a Language";s:17:"ID_EMPTY_NODENAME";s:23:"The name field is empty";s:16:"ID_EMPTY_PMTABLE";s:20:"Select a PM Table...";s:18:"ID_EMPTY_PROCESSES";s:19:"Select a Process...";s:12:"ID_EMPTY_ROW";s:29:"You can\'t leave an empty row.";s:15:"ID_EMPTY_SEARCH";s:10:"Search ...";s:13:"ID_EMPTY_TYPE";s:13:"Select a Type";s:14:"ID_EMPTY_USERS";s:16:"Select a User...";s:9:"ID_ENABLE";s:6:"Enable";s:10:"ID_ENABLED";s:7:"Enabled";s:14:"ID_ENABLED_TLS";s:11:"Enabled TLS";s:16:"ID_ENABLE_ACTION";s:13:"Enable Action";s:19:"ID_ENABLE_AUDIT_LOG";s:16:"Enable Audit Log";s:28:"ID_ENABLE_AUTOMATIC_REGISTER";s:25:"Enable automatic register";s:15:"ID_ENABLE_DEBUG";s:17:"Enable Debug Mode";s:28:"ID_ENABLE_EMAIL_NOTIFICATION";s:26:"Enable Email Notifications";s:25:"ID_ENABLE_FORGOT_PASSWORD";s:27:"Forgot password was enabled";s:25:"ID_ENABLE_FOTGOT_PASSWORD";s:24:"Enable Password Recovery";s:20:"ID_ENABLE_HEART_BEAT";s:79:"Contribute to the ProcessMaker project enabling heart beat anonymous usage data";s:16:"ID_ENABLE_PLUGIN";s:13:"Enable Plugin";s:20:"ID_ENABLE_PLUGIN_TIP";s:26:"Enable the selected add-on";s:17:"ID_ENABLE_PMDRIVE";s:20:"Enable Google Drive.";s:17:"ID_ENABLE_PMGMAIL";s:15:"Enable PM Gmail";s:14:"ID_ENABLE_USER";s:11:"Enable User";s:20:"ID_ENABLE_VERSIONING";s:17:"Enable Versioning";s:26:"ID_ENABLE_VIRTUAL_KEYBOARD";s:44:"Enable Virtual Keyboard (Only uxmodern skin)";s:19:"ID_ENABLE_WORKSPACE";s:16:"Enable Workspace";s:9:"ID_ENCODE";s:6:"Encode";s:14:"ID_ENDING_TIME";s:11:"Ending time";s:11:"ID_END_DATE";s:8:"End Date";s:19:"ID_END_DATE_GREATER";s:42:"End date should be greater than Start date";s:15:"ID_END_DATE_MDY";s:18:"End Date ("m/d/Y")";s:21:"ID_END_DATE_NOT_VALID";s:62:"The end date provided is not valid, please enter a valid date.";s:12:"ID_END_HH_MM";s:10:"End(hh:mm)";s:20:"ID_END_MESSAGE_EVENT";s:33:"End Message Event (Message Event)";s:17:"ID_END_OF_PROCESS";s:14:"End of process";s:9:"ID_ENGINE";s:6:"Engine";s:22:"ID_ENTERPRISE_FEATURES";s:19:"Enterprise Features";s:23:"ID_ENTERPRISE_INSTALLED";s:47:"Enterprise Plugin has been correctly installed.";s:30:"ID_ENTERPRISE_PACK_CANT_UPLOAD";s:121:"The Enterprise plugin pack can\'t be uploaded from this administrator, upload it from: ADMIN -> Plugins -> Plugins Manager";s:21:"ID_ENTERPRISE_PLUGINS";s:18:"Enterprise Plugins";s:24:"ID_ENTER_SEARCH_CRITERIA";s:40:"Enter a search criteria and press search";s:20:"ID_ENTER_SEARCH_TERM";s:9:"Search...";s:18:"ID_ENTER_VALID_URL";s:74:"Enter a valid URL to redirect the browser after the web entry is completed";s:14:"ID_ENVIRONMENT";s:11:"Environment";s:23:"ID_ENVIRONMENT_SETTINGS";s:11:"Environment";s:29:"ID_ENVIRONMENT_SETTINGS_MSG_1";s:41:"You should select a format from the list.";s:8:"ID_ERROR";s:5:"ERROR";s:31:"ID_ERROR_CHANGE_SEQUENCE_NUMBER";s:85:"Unable to generate a numerical sequence. Another user is performing the same request.";s:30:"ID_ERROR_CHECK_FOR_UPDATE_DONE";s:80:"An error has occurred, press "OK" to check whether the system has been upgraded.";s:21:"ID_ERROR_CREATE_TABLE";s:21:"Error creating table:";s:26:"ID_ERROR_CREATING_NEW_CASE";s:25:"Error creating a new Case";s:18:"ID_ERROR_DISABLING";s:15:"Error disabling";s:14:"ID_ERROR_EMAIL";s:5:"Error";s:17:"ID_ERROR_ENABLING";s:14:"Error enabling";s:23:"ID_ERROR_FILE_NOT_EXIST";s:170:"The file \'{filename}\' does not exist. Possibly the system failed to generate the file or the file was not moved correctly if the process was migrated from another server.";s:25:"ID_ERROR_HOST_NAME_FAILED";s:52:"Error Testing Connection: Resolving Host Name Failed";s:20:"ID_ERROR_INSERT_LINE";s:31:"Error trying to insert the line";s:25:"ID_ERROR_INSTALLING_ADDON";s:43:"There was a problem installing this add-on.";s:18:"ID_ERROR_IN_SERVER";s:15:"Error in server";s:21:"ID_ERROR_IN_THE_QUERY";s:18:"Error in the query";s:25:"ID_ERROR_JS_NOT_AVAILABLE";s:177:"Your browser doesn\'t support JavaScript or it may be disabled. Please use a different browser or enable JavaScript. Dynaforms won\'t entirely work because JavaScript is required.";s:16:"ID_ERROR_MESSAGE";s:13:"Error Message";s:26:"ID_ERROR_OBJECT_NOT_EXISTS";s:29:"Error: Object does not exist.";s:19:"ID_ERROR_REGISTERED";s:18:"Errors registered:";s:27:"ID_ERROR_SEND_NOTIFICATIONS";s:71:"The following error has occurred when trying to send the notifications:";s:23:"ID_ERROR_STREAMING_FILE";s:99:"doesn\'t exist. It should be saved by a plugin to a different place. Please review the configuration";s:18:"ID_ERROR_TASK_SAVE";s:31:"Error in saving Task Properties";s:22:"ID_ERROR_TRYING_INSERT";s:24:"Error trying insert into";s:20:"ID_ERROR_UNISTALLING";s:18:"Error uninstalling";s:25:"ID_ERROR_UPGRADING_SYSTEM";s:23:"Error upgrading System.";s:27:"ID_ERROR_UPLOADING_FILENAME";s:166:"There was an error uploading the file. The file size is probably greater than the upload_max_filesize parameter in php.ini. Please check this parameter and try again.";s:29:"ID_ERROR_UPLOADING_IMAGE_TYPE";s:38:"Error uploading image, wrong file type";s:25:"ID_ERROR_UPLOADING_PLUGIN";s:26:"Error uploading the plugin";s:34:"ID_ERROR_UPLOADING_PLUGIN_FILENAME";s:166:"There was an error uploading the file. The file size is probably greater than the upload_max_filesize parameter in php.ini. Please check this parameter and try again.";s:42:"ID_ERROR_UPLOAD_FILE_CONTACT_ADMINISTRATOR";s:76:"An error occurred when uploading the file. Please contact the administrator.";s:28:"ID_ERROR_URL_PROCESS_INVALID";s:95:"Error the url {DOWNLOAD_URL} is invalid or the process in {LOCAL_PATH}{NEW_FILENAME} is invalid";s:6:"ID_ESC";s:30:"@@ Replace the value in quotes";s:8:"ID_ESCJS";s:77:"@@ It replaces the value in quotation marks to use it in JavaScript sentences";s:9:"ID_ESCSJS";s:85:"@@ It replaces the value in single quotation marks to use it in JavaScript sentences.";s:26:"ID_ESTIMATED_TASK_DURATION";s:23:"Estimated Task duration";s:31:"ID_ESTIMATED_TASK_DURATION_DAYS";s:31:"Estimated Task duration in Days";s:7:"ID_EURL";s:74:"@% It replaces the value for the assignment with a GET variable in the URL";s:7:"ID_EVAL";s:43:"@! It evaluates the value, then replaces it";s:20:"ID_EVALUATION_RESULT";s:27:"[Success] Evaluation result";s:9:"ID_EVENTS";s:6:"Events";s:17:"ID_EVENTS_CLASSIC";s:26:"Events (classic processes)";s:15:"ID_EVENT_ACTION";s:10:"Event Type";s:20:"ID_EVENT_ACTION_DATE";s:11:"Action Date";s:20:"ID_EVENT_ADD_CURRENT";s:21:"Add current task user";s:20:"ID_EVENT_ADD_DYNAVAR";s:11:"Add dynavar";s:18:"ID_EVENT_ADD_GROUP";s:10:"Add groups";s:18:"ID_EVENT_ADD_USERS";s:9:"Add users";s:20:"ID_EVENT_CONDITIONAL";s:17:"Event Conditional";s:16:"ID_EVENT_DELETED";s:13:"Event deleted";s:20:"ID_EVENT_DESCRIPTION";s:17:"Event Description";s:36:"ID_EVENT_EVENT_NOT_BELONG_TO_PROJECT";s:59:"The event {0}: "{1}" does not belong to project {2}: "{3}".";s:28:"ID_EVENT_LAST_EXECUTION_DATE";s:14:"Last Execution";s:13:"ID_EVENT_LIST";s:13:"Log of events";s:16:"ID_EVENT_MESSAGE";s:13:"Event Message";s:17:"ID_EVENT_MULTIPLE";s:14:"Event Multiple";s:18:"ID_EVENT_NOT_EXIST";s:41:"The event with {0}: \'{1}\' does not exist.";s:29:"ID_EVENT_NOT_IS_MESSAGE_EVENT";s:47:"The event with {0}: {1} not is "Message event".";s:27:"ID_EVENT_NOT_IS_START_EVENT";s:47:"The event with {0}: {1} is not a "Start Event".";s:27:"ID_EVENT_NOT_IS_TIMER_EVENT";s:47:"The event with {0}: "{1}" not is "Timer event".";s:24:"ID_EVENT_REMOVE_SELECTED";s:15:"Remove selected";s:14:"ID_EVENT_TIMER";s:11:"Event Timer";s:8:"ID_EVERY";s:15:"every ${0} ${1}";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:13:"ID_EVERY_HOUR";s:10:"Every hour";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:12:"ID_EXCEPTION";s:9:"Exception";s:25:"ID_EXCEPTION_LOG_INTERFAZ";s:95:"An internal error occurred #{0}. Please contact your system administrator for more information.";s:11:"ID_EXECUTED";s:8:"executed";s:18:"ID_EXECUTE_TRIGGER";s:15:"Execute Trigger";s:12:"ID_EXECUTION";s:9:"Execution";s:17:"ID_EXECUTION_DATE";s:14:"Execution Date";s:17:"ID_EXECUTION_HOUR";s:14:"Execution Hour";s:19:"ID_EXECUTION_STATUS";s:16:"Execution Status";s:17:"ID_EXECUTION_TIME";s:14:"Execution Time";s:22:"ID_EXECUTION_TIME_DAYS";s:22:"Execution time in days";s:26:"ID_EXECUTION_TIME_INTERVAL";s:23:"Execution time Interval";s:8:"ID_EXIST";s:5:"Exist";s:14:"ID_EXISTS_FILE";s:29:"The file: {0} already exists.";s:15:"ID_EXISTS_FILES";s:16:"The file exists.";s:17:"ID_EXIST_DYNAFORM";s:77:"Can not save, because there is a DynaForm with the same name in this process.";s:14:"ID_EXIT_EDITOR";s:11:"Exit Editor";s:13:"ID_EXPAND_ALL";s:10:"Expand All";s:18:"ID_EXPIRATION_DATE";s:15:"Expiration Date";s:10:"ID_EXPIRES";s:14:"Expires (days)";s:13:"ID_EXPIRES_IN";s:10:"Expires in";s:9:"ID_EXPORT";s:6:"Export";s:13:"ID_EXPORT_CSV";s:10:"CSV Export";s:18:"ID_EXPORT_DATA_CSV";s:25:"Export Data from CSV file";s:18:"ID_EXPORT_LANGUAGE";s:15:"Export Language";s:17:"ID_EXPORT_PROCESS";s:14:"Export Process";s:25:"ID_EXPORT_PROCESS_OBJECTS";s:22:"Export Process Objects";s:14:"ID_EXPORT_SKIN";s:11:"Export Skin";s:15:"ID_EXPORT_TABLE";s:12:"Export Table";s:20:"ID_EXTENDED_FEATURES";s:17:"Extended Features";s:16:"ID_EXTERNAL_FILE";s:8:"External";s:24:"ID_EXTERNAL_REGISTRATION";s:21:"External Registration";s:24:"ID_EXTERNAL_STEP_MISSING";s:114:"The plugin related to the step {plugin} was removed or disabled. Please contact your system administrator.";s:9:"ID_FAILED";s:6:"Failed";s:28:"ID_FAILED_DASHBOARD INSTANCE";s:36:"Dashboard Instance registered failed";s:24:"ID_FAILED_IMPORT_PLUGINS";s:80:"Failed to import the file {filename} . It is an invalid file or is not a plugin.";s:16:"ID_FAILED_RECORD";s:15:"Failed Records:";s:26:"ID_FAILED_SAVE_PERMISSIONS";s:41:"Failed saving Permission of Simple Report";s:20:"ID_FAILED_STORE_DATA";s:20:"Failed to store data";s:30:"ID_FAILED_VALIDATIONS_IN_CLASS";s:35:"Failed Validation in class {CLASS}.";s:26:"ID_FAILED_VALIDATION_CLASS";s:26:"Failed Validation in class";s:29:"ID_FAILED_VALIDATION_IN_CLASS";s:26:"Failed Validation in class";s:30:"ID_FAILED_VALIDATION_IN_CLASS1";s:35:"Failed Validation in class {CLASS}.";s:10:"ID_FAILURE";s:7:"Failure";s:8:"ID_FALSE";s:5:"FALSE";s:9:"ID_FIELDS";s:6:"Fields";s:24:"ID_FIELDS_CHANGED_NUMBER";s:14:"Fields changed";s:14:"ID_FIELDS_LIST";s:14:"Fields handler";s:30:"ID_FIELD_CANNOT_BE_PRIMARY_KEY";s:47:"The type of field \'TEXT\' can\'t be a primary key";s:24:"ID_FIELD_DYNAFORM_BUTTON";s:6:"button";s:26:"ID_FIELD_DYNAFORM_CHECKBOX";s:8:"checkbox";s:28:"ID_FIELD_DYNAFORM_CHECKGROUP";s:10:"checkgroup";s:26:"ID_FIELD_DYNAFORM_CURRENCY";s:8:"currency";s:26:"ID_FIELD_DYNAFORM_DROPDOWN";s:8:"dropdown";s:22:"ID_FIELD_DYNAFORM_FILE";s:4:"file";s:22:"ID_FIELD_DYNAFORM_GRID";s:4:"grid";s:24:"ID_FIELD_DYNAFORM_HIDDEN";s:6:"hidden";s:28:"ID_FIELD_DYNAFORM_JAVASCRIPT";s:10:"javascript";s:22:"ID_FIELD_DYNAFORM_LINK";s:4:"link";s:25:"ID_FIELD_DYNAFORM_LISTBOX";s:7:"listbox";s:26:"ID_FIELD_DYNAFORM_PASSWORD";s:8:"password";s:28:"ID_FIELD_DYNAFORM_PERCENTAGE";s:10:"percentage";s:28:"ID_FIELD_DYNAFORM_RADIOGROUP";s:10:"radiogroup";s:23:"ID_FIELD_DYNAFORM_RESET";s:5:"reset";s:24:"ID_FIELD_DYNAFORM_SUBMIT";s:6:"submit";s:26:"ID_FIELD_DYNAFORM_SUBTITLE";s:8:"subtitle";s:25:"ID_FIELD_DYNAFORM_SUGGEST";s:7:"suggest";s:37:"ID_FIELD_DYNAFORM_SUGGEST_INPUT_TITLE";s:99:"If the entered value does not exist, a new registry will be inserted when the ENTER key is pressed.";s:42:"ID_FIELD_DYNAFORM_SUGGEST_MESSAGE_TEMPORAL";s:31:"New value inserted in the table";s:22:"ID_FIELD_DYNAFORM_TEXT";s:4:"text";s:26:"ID_FIELD_DYNAFORM_TEXTAREA";s:8:"textarea";s:23:"ID_FIELD_DYNAFORM_TITLE";s:5:"title";s:23:"ID_FIELD_DYNAFORM_YESNO";s:5:"yesno";s:22:"ID_FIELD_FOREIGN_TABLE";s:25:"Field "table" is required";s:30:"ID_FIELD_HANDLER_ACTION_DELETE";s:36:"Are you sure you want to remove this";s:22:"ID_FIELD_HANDLER_HELP1";s:17:"About the feature";s:22:"ID_FIELD_HANDLER_HELP2";s:43:"Drag & Drop to move and reorder the fields.";s:22:"ID_FIELD_HANDLER_HELP3";s:103:"Hover the mouse pointer over the tool icons and the corresponding options (Edit, Delete) will be shown.";s:16:"ID_FIELD_INVALID";s:13:"Field Invalid";s:18:"ID_FIELD_KEY_TABLE";s:52:"Please select one or more fields to be primary keys.";s:14:"ID_FIELD_LABEL";s:11:"Field Label";s:13:"ID_FIELD_NAME";s:10:"Field Name";s:17:"ID_FIELD_NAME_FOR";s:14:"Field Name for";s:22:"ID_FIELD_NAME_REQUIRED";s:22:"Field name is required";s:34:"ID_FIELD_NOT_EMPTY_OR_SPECIAL_CHAR";s:45:"cannot be empty or contain special characters";s:18:"ID_FIELD_NOT_FOUND";s:15:"Field not found";s:17:"ID_FIELD_REQUIRED";s:26:"The field {0} is required.";s:18:"ID_FIELD_REQUIRED2";s:39:"There are {0} fields that are required.";s:17:"ID_FIELD_SIZE_FOR";s:14:"Field size for";s:22:"ID_FIELD_SIZE_REQUIRED";s:22:"Field size is required";s:7:"ID_FILE";s:4:"File";s:11:"ID_FILENAME";s:8:"Filename";s:21:"ID_FILENAME_GENERATED";s:18:"Filename generated";s:20:"ID_FILENAME_REQUIRED";s:25:"The filename is required.";s:32:"ID_FILES_INVALID_PLUGIN_FILENAME";s:101:"the uploaded files are invalid, expected \'application/octect-stream mime type file ({pluginFilename})";s:35:"ID_FILES_MANAGER_EDITOR_LOGIN_AGAIN";s:102:"You have lost your session and you have to login to continue. Please enter your username and password.";s:28:"ID_FILE_CONTAIN_CLASS_PLUGIN";s:54:"The file {filename} doesn\'t contain class: {className}";s:29:"ID_FILE_IMPORTED_SUCCESSFULLY";s:33:"File "{0}" imported successfully.";s:19:"ID_FILE_LOG_CREATED";s:10:"Created on";s:16:"ID_FILE_LOG_SIZE";s:9:"File size";s:12:"ID_FILE_NAME";s:9:"File Name";s:21:"ID_FILE_NOT_WRITEABLE";s:81:"File \'{0}\' is not writable. Please, check the file permissions before continuing.";s:18:"ID_FILE_NUM_RECORD";s:21:"PO File num. records:";s:25:"ID_FILE_PLUGIN_NOT_EXISTS";s:34:"File \'{pluginFile}\' does not exist";s:17:"ID_FILE_PROCESSED";s:34:"File: {0} processed in {1} seconds";s:15:"ID_FILE_TOO_BIG";s:30:"The file is too big to upload!";s:34:"ID_FILE_UPLOAD_INCORRECT_EXTENSION";s:76:"The file has an incorrect extension. Please check the file and upload again.";s:20:"ID_FILL_PRIMARY_KEYS";s:38:"Please fill all the primary key fields";s:9:"ID_FILTER";s:6:"Filter";s:12:"ID_FILTER_BY";s:9:"Filter By";s:27:"ID_FILTER_BY_DELEGATED_DATE";s:6:"Filter";s:22:"ID_FILTER_CURRENT_VIEW";s:19:"Filter current view";s:25:"ID_FILTER_TO_SEARCH_USERS";s:22:"Filter to search users";s:17:"ID_FIND_A_PROCESS";s:14:"Find a Process";s:9:"ID_FINISH";s:6:"Finish";s:11:"ID_FINISHED";s:8:"Finished";s:39:"ID_FINISHED_REFRESH_VIEW_SEE_SLOPE_WORK";s:88:"You are now finished. Please refresh your view to see if you have any more work pending.";s:12:"ID_FINISHING";s:12:"Finishing...";s:14:"ID_FINISH_DATE";s:11:"Finish Date";s:17:"ID_FINISH_EDITION";s:14:"Finish Edition";s:14:"ID_FINISH_USER";s:11:"Finish user";s:21:"ID_FINISH_WITH_OPTION";s:18:"Finish with option";s:8:"ID_FIRST";s:5:"First";s:12:"ID_FIRSTNAME";s:10:"First Name";s:15:"ID_FIRST_FIGURE";s:11:"First Graph";s:13:"ID_FIRST_NAME";s:10:"First Name";s:8:"ID_FLOAT";s:5:"FLOAT";s:10:"ID_FOLDERS";s:9:"Documents";s:18:"ID_FORGOT_PASSWORD";s:15:"Forgot Password";s:20:"ID_FORGOT_PASSWORD_Q";s:16:"Forgot Password?";s:9:"ID_FORMAT";s:6:"Format";s:18:"ID_FORMAT_24_HOURS";s:22:"Format 24 hrs. (HH:MM)";s:19:"ID_FORMS_HTML_CACHE";s:26:"Forms Html templates cache";s:23:"ID_FORMS_METADATA_CACHE";s:20:"Forms metadata cache";s:6:"ID_FRI";s:3:"Fri";s:7:"ID_FROM";s:4:"From";s:13:"ID_FROM_EMAIL";s:12:"Sender Email";s:12:"ID_FROM_NAME";s:11:"Sender Name";s:23:"ID_FTP_MONITOR_SETTINGS";s:20:"FTP Monitor Settings";s:12:"ID_FULL_NAME";s:9:"Full Name";s:19:"ID_FULL_TEXT_SEARCH";s:16:"Full Text Search";s:11:"ID_FUNCTION";s:64:"@function() It evaluates the value, then executes a PHP function";s:10:"ID_GENERAL";s:7:"General";s:26:"ID_GENERAL_PROCESS_NUMBERS";s:23:"General Process Numbers";s:11:"ID_GENERATE";s:8:"Generate";s:22:"ID_GENERATED_DOCUMENTS";s:19:"Generated Documents";s:24:"ID_GENERATE_BPMN_PROJECT";s:21:"Generate BPMN Project";s:16:"ID_GENERATE_INFO";s:19:"General Information";s:24:"ID_GENERATE_INFO_SUPPORT";s:143:"A file with information about your System will be generated. It will help the support team provide better support for any issue that may occur.";s:26:"ID_GENERATE_WEB_ENTRY_PAGE";s:23:"Generate Web Entry Page";s:20:"ID_GET_EXTERNAL_FILE";s:3:"Get";s:9:"ID_GLOBAL";s:6:"Global";s:21:"ID_GLOBAL_DATE_FORMAT";s:18:"Global Date Format";s:19:"ID_GLOBAL_DATE_MASK";s:16:"Global date mask";s:20:"ID_GMAIL_HELP_ENABLE";s:148:"When this option is enabled, users will be able to use the Gmail extension that allows interaction with ProcessMaker from the user\'s Gmail web page.";s:20:"ID_GMAIL_NEED_SERVER";s:58:"The ProcessMaker address must be passed, it can\'t be empty";s:12:"ID_GOAL_HELP";s:12:"(Goal value)";s:20:"ID_GOOGLEINTEGRATION";s:18:"Google Integration";s:27:"ID_GOOGLE_CERTIFICATE_ERROR";s:90:"Google\'s JSON account certificate does not exist. Please contact the system administrator.";s:18:"ID_GRANULAR_EXPORT";s:6:"Custom";s:16:"ID_GREEN_ENDS_IN";s:13:"Green Ends In";s:18:"ID_GREEN_STARTS_IN";s:15:"Green Starts In";s:7:"ID_GRID";s:4:"Grid";s:34:"ID_GRID_DOES_NOT_EXIST_IN_DYNAFORM";s:51:"The Grid with {0}: "{1}" does not exist in DynaForm";s:28:"ID_GRID_DOES_NOT_HAVE_FIELDS";s:53:"The Grid with {0}: "{1}" does not have fields defined";s:14:"ID_GRID_FIELDS";s:11:"Grid Fields";s:23:"ID_GRID_FIELDS_REQUIRED";s:25:"Grid Fields are required.";s:28:"ID_GRID_FIELD_DOES_NOT_EXIST";s:40:"The Field with {0}: "{1}" does not exist";s:16:"ID_GRID_NO_EXIST";s:19:"Grid doesn\'t exist!";s:37:"ID_GRID_PAGE_DISPLAYING_0WNER_MESSAGE";s:34:"Displaying Owners {0} - {1} of {2}";s:46:"ID_GRID_PAGE_DISPLAYING_AUTHENTICATION_MESSAGE";s:50:"Displaying authentication sources {0} - {1} of {2}";s:40:"ID_GRID_PAGE_DISPLAYING_CALENDAR_MESSAGE";s:37:"Displaying calendars {0} - {1} of {2}";s:40:"ID_GRID_PAGE_DISPLAYING_CATEGORY_MESSAGE";s:38:"Displaying categories {0} - {1} of {2}";s:41:"ID_GRID_PAGE_DISPLAYING_DASHBOARD_MESSAGE";s:38:"Displaying Dashboards {0} - {1} of {2}";s:39:"ID_GRID_PAGE_DISPLAYING_DASHLET_MESSAGE";s:46:"Displaying dashlets instances {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_EMAIL_MESSAGE";s:34:"Displaying emails {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_EVENT_MESSAGE";s:34:"Displaying events {0} - {1} of {2}";s:33:"ID_GRID_PAGE_DISPLAYING_FILE_LOGS";s:37:"Displaying log files {0} - {1} of {2}";s:38:"ID_GRID_PAGE_DISPLAYING_GROUPS_MESSAGE";s:34:"Displaying groups {0} - {1} of {2}";s:29:"ID_GRID_PAGE_DISPLAYING_ITEMS";s:33:"Displaying items {0} - {1} of {2}";s:40:"ID_GRID_PAGE_DISPLAYING_PMTABLES_MESSAGE";s:37:"Displaying PM Tables {0} - {1} of {2}";s:43:"ID_GRID_PAGE_DISPLAYING_REPORTABLES_MESSAGE";s:41:"Displaying Report Tables {0} - {1} of {2}";s:50:"ID_GRID_PAGE_DISPLAYING_REPORT_PERMISSIONS_MESSAGE";s:54:"Displaying Permissions Simple Reports {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_ROLES_MESSAGE";s:33:"Displaying roles {0} - {1} of {2}";s:36:"ID_GRID_PAGE_DISPLAYING_ROWS_MESSAGE";s:32:"Displaying rows {0} - {1} of {2}";s:36:"ID_GRID_PAGE_DISPLAYING_SKIN_MESSAGE";s:33:"Displaying skins {0} - {1} of {2}";s:37:"ID_GRID_PAGE_DISPLAYING_USERS_MESSAGE";s:33:"Displaying users {0} - {1} of {2}";s:38:"ID_GRID_PAGE_NO_AUTHENTICATION_MESSAGE";s:36:"No authentication sources to display";s:32:"ID_GRID_PAGE_NO_CALENDAR_MESSAGE";s:23:"No calendars to display";s:32:"ID_GRID_PAGE_NO_CATEGORY_MESSAGE";s:24:"No categories to display";s:33:"ID_GRID_PAGE_NO_DASHBOARD_MESSAGE";s:24:"No Dashboards to display";s:31:"ID_GRID_PAGE_NO_DASHLET_MESSAGE";s:33:"No dashlets instances to display.";s:29:"ID_GRID_PAGE_NO_EMAIL_MESSAGE";s:20:"No Emails to display";s:29:"ID_GRID_PAGE_NO_EVENT_MESSAGE";s:20:"No Events to display";s:30:"ID_GRID_PAGE_NO_GROUPS_MESSAGE";s:20:"No groups to display";s:29:"ID_GRID_PAGE_NO_OWNER_MESSAGE";s:20:"No Owners to display";s:35:"ID_GRID_PAGE_NO_PERMISSIONS_MESSAGE";s:25:"No Permissions to display";s:32:"ID_GRID_PAGE_NO_PMTABLES_MESSAGE";s:23:"No PM Tables to display";s:29:"ID_GRID_PAGE_NO_ROLES_MESSAGE";s:19:"No roles to display";s:28:"ID_GRID_PAGE_NO_ROWS_MESSAGE";s:18:"No rows to display";s:28:"ID_GRID_PAGE_NO_SKIN_MESSAGE";s:19:"No skins to display";s:29:"ID_GRID_PAGE_NO_USERS_MESSAGE";s:19:"No users to display";s:27:"ID_GRID_VARIABLE_NAME_ERROR";s:144:"A valid variable starts with a letter or underscore, followed by any number of letters, numbers, or underscores. Variables with wrong names: {0}";s:14:"ID_GRID_WIZARD";s:24:"ProcessMaker Grid Wizard";s:8:"ID_GROUP";s:5:"Group";s:9:"ID_GROUPS";s:6:"Groups";s:16:"ID_GROUPS_ACTORS";s:12:"Group Actors";s:24:"ID_GROUPS_SUCCESS_DELETE";s:38:"Your group has been deleted correctly.";s:21:"ID_GROUPS_SUCCESS_NEW";s:33:"Group has been created correctly.";s:24:"ID_GROUPS_SUCCESS_UPDATE";s:33:"Group has been updated correctly.";s:21:"ID_GROUPS_SYNCHRONIZE";s:18:"Synchronize Groups";s:45:"ID_GROUP_CANNOT_DELETE_WHILE_ASSIGNED_TO_TASK";s:53:"Group cannot be deleted while it\'s assigned to a task";s:14:"ID_GROUP_CHART";s:11:"Group Chart";s:29:"ID_GROUP_CREATED_SUCCESSFULLY";s:39:"Group {GROUP_NAME} created successfully";s:23:"ID_GROUP_DOES_NOT_EXIST";s:39:"The group with {0}: {1} does not exist.";s:17:"ID_GROUP_INACTIVE";s:14:"Group inactive";s:13:"ID_GROUP_NAME";s:10:"Group Name";s:22:"ID_GROUP_NAME_REQUIRED";s:22:"Group name is required";s:18:"ID_GROUP_NOT_EXIST";s:41:"The group with {0}: \'{1}\' does not exist.";s:30:"ID_GROUP_NOT_REGISTERED_SYSTEM";s:34:"Group not registered in the system";s:29:"ID_GROUP_TITLE_ALREADY_EXISTS";s:47:"The group title with {0}: "{1}" already exists.";s:14:"ID_GROUP_USERS";s:14:"Group or Users";s:33:"ID_GROUP_USER_IS_ALREADY_ASSIGNED";s:56:"The user with {0}: {1} is already assigned to the group.";s:29:"ID_GROUP_USER_IS_NOT_ASSIGNED";s:52:"The user with {0}: {1} is not assigned to the group.";s:30:"ID_G_SUITE_CONFIGURATION_SAVED";s:27:"G Suite Configuration Saved";s:18:"ID_G_SUITE_CONNECT";s:26:"Request G Suite connection";s:21:"ID_G_SUITE_DISCONNECT";s:18:"Disconnect G Suite";s:22:"ID_G_SUITE_LOAD_GROUPS";s:21:"Update G Suite groups";s:21:"ID_G_SUITE_SYNC_USERS";s:13:"Syncing Users";s:19:"ID_HAS_BEEN_DELETED";s:16:"Has been deleted";s:15:"ID_HEADER_ALIGN";s:5:"Align";s:20:"ID_HEADER_FIELD_NAME";s:10:"Field Name";s:20:"ID_HEADER_FIELD_TYPE";s:10:"Field Type";s:15:"ID_HEADER_LABEL";s:5:"Label";s:16:"ID_HEADER_NUMBER";s:1:"#";s:15:"ID_HEADER_WIDTH";s:5:"Width";s:19:"ID_HEARTBEAT_CONFIG";s:10:"Heart Beat";s:20:"ID_HEARTBEAT_DISPLAY";s:10:"Heart Beat";s:23:"ID_HEART_BEAT_DETAILS_1";s:138:"The usage statistics will help the development team to better understand user requirements and prioritize improvements in future releases.";s:23:"ID_HEART_BEAT_DETAILS_2";s:110:"We cannot and will not reverse-engineer that collected data to find specific details concerning your projects.";s:22:"ID_HEART_BEAT_DISABLED";s:28:"Heart beat has been disabled";s:21:"ID_HEART_BEAT_ENABLED";s:27:"Heart beat has been enabled";s:7:"ID_HELP";s:4:"Help";s:7:"ID_HIDE";s:4:"Hide";s:12:"ID_HIDE_DIRS";s:9:"Hide Dirs";s:19:"ID_HIDE_PROCESS_INF";s:24:"Hide Process Information";s:10:"ID_HISTORY";s:15:"My Case History";s:19:"ID_HISTORY_MESSAGES";s:18:"My Message History";s:23:"ID_HISTORY_MESSAGE_CASE";s:16:"Messages History";s:11:"ID_HOLIDAYS";s:8:"Holidays";s:7:"ID_HOME";s:4:"Home";s:28:"ID_HOME_COLLAPSE_RIGHT_PANEL";s:40:"Collapse right panel when a Case is open";s:25:"ID_HOME_LISTS_DATE_FORMAT";s:20:"Date format on Lists";s:27:"ID_HOME_LISTS_ROWS_PER_PAGE";s:22:"Rows per page on Lists";s:16:"ID_HOME_SETTINGS";s:13:"Home Settings";s:18:"ID_HORIZONTAL_LINE";s:15:"Horizontal Line";s:7:"ID_HOST";s:4:"Host";s:12:"ID_HOST_NAME";s:19:"Resolving Host Name";s:18:"ID_HOST_NAME_LABEL";s:9:"Host Name";s:19:"ID_HOST_UNREACHABLE";s:28:"Destination Host Unreachable";s:7:"ID_HOUR";s:4:"Hour";s:9:"ID_HOURLY";s:6:"Hourly";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:8:"ID_HOURS";s:5:"Hours";s:18:"ID_HOUR_ABBREVIATE";s:5:"Hr(s)";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:7:"ID_HTML";s:4:"HTML";s:25:"ID_IDENTIFIER_IMPORT_USER";s:31:"Identifier for an imported user";s:8:"ID_IMAGE";s:5:"Image";s:18:"ID_IMAGES_SELECTED";s:15:"images selected";s:9:"ID_IMPORT";s:6:"Import";s:11:"ID_IMPORTED";s:8:"IMPORTED";s:24:"ID_IMPORTED_SUCCESSFULLY";s:21:"Imported Successfully";s:38:"ID_IMPORTER_BPMN_DEFINITION_IS_MISSING";s:27:"BPMN Definition is missing.";s:52:"ID_IMPORTER_BPMN_PROJECT_TABLE_DEFINITION_IS_MISSING";s:72:"BPMN table: "Project", definition is missing or has multiple definition.";s:58:"ID_IMPORTER_COULD_NOT_FIND_SPECIFIED_SOURCE_IN_PHP_GLOBALS";s:52:"Couldn\'t find specified source "{0}" in PHP Globals.";s:51:"ID_IMPORTER_ERROR_FILE_INVALID_TYPE_OR_CORRUPT_DATA";s:55:"Error, Invalid file type or the file have corrupt data.";s:38:"ID_IMPORTER_ERROR_WHILE_UPLOADING_FILE";s:44:"Error while uploading file. Error code: {0}.";s:49:"ID_IMPORTER_FILE_DEFINITION_SECTION_IS_INCOMPLETE";s:33:"Definition section is incomplete.";s:46:"ID_IMPORTER_FILE_DEFINITION_SECTION_IS_MISSING";s:30:"Definition section is missing.";s:31:"ID_IMPORTER_FILE_DOES_NOT_EXIST";s:40:"The file with {0}: "{1}" does not exist.";s:37:"ID_IMPORTER_FILE_EXTENSION_IS_NOT_PMX";s:32:"The file extension is not "pmx".";s:60:"ID_IMPORTER_FILE_INVALID_DOCUMENT_FORMAT_METADATA_IS_CORRUPT";s:57:"Invalid Document format, metadata information is corrupt.";s:60:"ID_IMPORTER_FILE_INVALID_DOCUMENT_FORMAT_METADATA_IS_MISSING";s:81:"Invalid Document format, metadata section is missing or has multiple definitions.";s:56:"ID_IMPORTER_FILE_PROCESSMAKER_PROJECT_VERSION_IS_MISSING";s:55:"ProcessMaker Project version is missing on file source.";s:55:"ID_IMPORTER_GROUP_ALREADY_EXISTS_SET_ACTION_TO_CONTINUE";s:83:"Group already exists. You need set an action to continue. Available actions: [{0}].";s:57:"ID_IMPORTER_PROJECT_ALREADY_EXISTS_SET_ACTION_TO_CONTINUE";s:76:"Project already exists. Set an action to continue. Available actions: [{0}].";s:18:"ID_IMPORTING_ERROR";s:15:"Importing Error";s:18:"ID_IMPORTING_USERS";s:18:"Importing Users...";s:24:"ID_IMPORT_ALREADY_EXISTS";s:108:"The process you are trying to import already exists. Please select one of the following options to continue:";s:29:"ID_IMPORT_ALREADY_EXISTS_BPMN";s:129:"A process with the same name already exists!. Do you want to overwrite the existing process or you want to create a new process?.";s:34:"ID_IMPORT_ALREADY_EXISTS_BPMN_NOTE";s:81:"Note that your changes will be lost in your existing process if you overwrite it.";s:14:"ID_IMPORT_BPMN";s:11:"Import BPMN";s:13:"ID_IMPORT_CSV";s:10:"CSV Import";s:18:"ID_IMPORT_DATA_CSV";s:25:"Import Data from CSV file";s:17:"ID_IMPORT_LICENSE";s:14:"Import license";s:13:"ID_IMPORT_PMT";s:15:"Import PM Table";s:17:"ID_IMPORT_PROCESS";s:14:"Import Process";s:25:"ID_IMPORT_PROCESS_OBJECTS";s:22:"Import Process Objects";s:16:"ID_IMPORT_RESULT";s:13:"IMPORT RESULT";s:12:"ID_IMPORT_RT";s:19:"Import Report Table";s:14:"ID_IMPORT_SKIN";s:11:"Import Skin";s:15:"ID_IMPORT_TABLE";s:12:"Import Table";s:15:"ID_IMPORT_USERS";s:12:"Import Users";s:5:"ID_IN";s:2:"in";s:11:"ID_INACTIVE";s:8:"Inactive";s:8:"ID_INBOX";s:5:"Inbox";s:14:"ID_INBOX_EMPTY";s:22:"Your Inbox is empty...";s:18:"ID_INCOMING_SERVER";s:15:"Incoming Server";s:18:"ID_INCORRECT_EMAIL";s:33:"Your E-mail address is not valid.";s:30:"ID_INCORRECT_USERNAME_PASSWORD";s:30:"Incorrect username or password";s:25:"ID_INCORRECT_VALUE_ACTION";s:35:"The value for $action is incorrect.";s:8:"ID_INDEX";s:5:"Index";s:21:"ID_INDEX_FILE_UPDATED";s:52:"Index File updated {0} with lang: {{1}}, skin: {{2}}";s:22:"ID_INDEX_NOT_WRITEABLE";s:74:"The index file is not writable.
      Please give write permission to file:";s:12:"ID_INDICATOR";s:9:"Indicator";s:17:"ID_INDICATOR_GOAL";s:4:"Goal";s:29:"ID_INDICATOR_PROCESS_REQUIRED";s:49:"The field Process of indicator "{0}" is required.";s:18:"ID_INDICATOR_TITLE";s:15:"Indicator Title";s:27:"ID_INDICATOR_TITLE_REQUIRED";s:47:"The field Title of indicator "{0}" is required.";s:17:"ID_INDICATOR_TYPE";s:14:"Indicator Type";s:26:"ID_INDICATOR_TYPE_REQUIRED";s:46:"The field Type of indicator "{0}" is required.";s:20:"ID_INEFFICIENCY_COST";s:16:"Costs or Savings";s:7:"ID_INFO";s:4:"Info";s:14:"ID_INFORMATION";s:11:"Information";s:20:"ID_INFORMATION_EMPTY";s:30:"The information sent is empty!";s:38:"ID_INFORMATION_WAS_STORED_SUCCESSFULLY";s:35:"information was stored successfully";s:19:"ID_INITIAL_DYNAFORM";s:16:"Initial Dynaform";s:15:"ID_INITIAL_TASK";s:12:"Initial Task";s:12:"ID_INIT_DATE";s:9:"Init Date";s:12:"ID_INIT_USER";s:9:"Init user";s:15:"ID_INPUT_ASSIGN";s:58:"Input Document has been successfully assigned to a Process";s:15:"ID_INPUT_CREATE";s:44:"Input document has been created successfully";s:11:"ID_INPUT_DB";s:5:"Input";s:17:"ID_INPUT_DOCUMENT";s:14:"Input Document";s:32:"ID_INPUT_DOCUMENT_DOES_NOT_EXIST";s:48:"The Input Document with {0}: {1} does not exist.";s:30:"ID_INPUT_DOCUMENT_ITS_ASSIGNED";s:56:"The Input Document with {0}: {1} it\'s assigned in "{2}".";s:38:"ID_INPUT_DOCUMENT_TITLE_ALREADY_EXISTS";s:56:"The Input Document title with {0}: "{1}" already exists.";s:19:"ID_INPUT_DOC_ACCESS";s:21:"Input Document Access";s:25:"ID_INPUT_DOC_DOESNT_EXIST";s:30:"Input Document does not exist!";s:34:"ID_INPUT_DOC_MAX_FILESIZE_REQUIRED";s:40:"Maximum file size parameter is required.";s:27:"ID_INPUT_DOC_SUCCESS_DELETE";s:42:"Input Document has been deleted correctly.";s:24:"ID_INPUT_DOC_SUCCESS_NEW";s:42:"Input Document has been created correctly.";s:27:"ID_INPUT_DOC_SUCCESS_UPDATE";s:42:"Input Document has been updated correctly.";s:27:"ID_INPUT_DOC_TITLE_REQUIRED";s:33:"Input Document Title is required.";s:31:"ID_INPUT_DOC_TYPE_FILE_REQUIRED";s:77:"You must specify the allowed file extensions, use *.* to allow any extension.";s:14:"ID_INPUT_ERROR";s:11:"Input Error";s:15:"ID_INPUT_FAILED";s:48:"Failed saving Input Document Assigned to process";s:13:"ID_INPUT_INFO";s:26:"Input Document Information";s:17:"ID_INPUT_MAX_SIZE";s:71:"The maximum file size exceeds the \'php.ini\' max upload file size value.";s:18:"ID_INPUT_NOT_EXIST";s:41:"The input with {0}: \'{1}\' does not exist.";s:17:"ID_INPUT_NOT_SAVE";s:80:"Not saved because there is an Input Document with the same name in this process.";s:15:"ID_INPUT_REMOVE";s:57:"Input Document has been removed successfully from Process";s:20:"ID_INPUT_UNAVAILABLE";s:81:"No Input Documents are available. All Input Documents have already been assigned.";s:15:"ID_INPUT_UPDATE";s:44:"Input document has been updated successfully";s:16:"ID_INPUT_WARNING";s:66:"Input document assigned to a process supervisors cannot be deleted";s:24:"ID_INSTALLATION_FILE_LOG";s:21:"Installation log file";s:19:"ID_INSTALLATION_LOG";s:17:"Installation log:";s:12:"ID_INSTALLED";s:9:"Installed";s:13:"ID_INSTALLING";s:10:"Installing";s:20:"ID_INSTALLING_PLUGIN";s:20:"Installing plugin...";s:23:"ID_INSTALLING_WORKSPACE";s:23:"Installing workspace...";s:20:"ID_INSTALL_BUT_ERROR";s:47:"Errors during installation. Couldn\'t update {0}";s:16:"ID_INSTALL_ERROR";s:13:"Install Error";s:20:"ID_INSTALL_FROM_FILE";s:17:"Install from file";s:31:"ID_INSTALL_FROM_FILE_PLUGIN_TIP";s:20:"Upload a plugin file";s:18:"ID_INSTALL_MESSAGE";s:57:"Please follow these instructions to complete installation";s:14:"ID_INSTALL_NOW";s:11:"Install now";s:17:"ID_INSTALL_PLUGIN";s:14:"Install Plugin";s:16:"ID_INSTALL_STEPS";s:13:"Install Steps";s:17:"ID_INSTALL_SUCESS";s:36:"Installation completed successfully.";s:27:"ID_INSTALL_USE_CURRENT_USER";s:93:"The MySQL user from the previous step will be the database owner. (Do not create a new user.)";s:15:"ID_INSTRUCTIONS";s:12:"Instructions";s:20:"ID_INSTRUCTIONS_TEXT";s:152:"To assign a case, first select the case in the list. Then enter a user name in the \'Search\' field and select a user to whom the case will be reassigned.";s:35:"ID_INSUFFICIENT_PRIVILEGES_FUNCTION";s:48:"Insufficient privileges to execute this function";s:6:"ID_INT";s:3:"INT";s:35:"ID_INTERMEDIATE_CATCH_MESSAGE_EVENT";s:42:"Untitled - Intermediate Send Message Event";s:33:"ID_INTERMEDIATE_CATCH_TIMER_EVENT";s:35:"Untitled - Intermediate Timer Event";s:29:"ID_INTERMEDIATE_MESSAGE_EVENT";s:48:"Intermediate Message Events (Task Notifications)";s:30:"ID_INTERMEDIATE_MESSAGE_EVENTS";s:48:"Intermediate Message Events (Task Notifications)";s:33:"ID_INTERMEDIATE_THROW_EMAIL_EVENT";s:35:"Untitled - Intermediate Email Event";s:35:"ID_INTERMEDIATE_THROW_MESSAGE_EVENT";s:45:"Untitled - Intermediate Receive Message Event";s:27:"ID_INTERMEDIATE_TIMER_EVENT";s:41:"Intermediate Timer Event (Multiple Event)";s:28:"ID_INTERMEDIATE_TIMER_EVENTS";s:41:"Intermediate Timer Event (Multiple Event)";s:16:"ID_INTERNATIONAL";s:13:"International";s:29:"ID_INVALID_APPLICATION_ID_MSG";s:162:"An invalid application ID was stored for the session.
      This could have happened if you opened another case in a new tab or window.
      Please {0} the case.";s:29:"ID_INVALID_APPLICATION_NUMBER";s:41:"You have set a invalid Application Number";s:32:"ID_INVALID_CASE_DELEGATION_INDEX";s:43:"Invalid Case Delegation index for this user";s:15:"ID_INVALID_DATA";s:12:"Invalid data";s:20:"ID_INVALID_END_HOURS";s:41:"The following end hours rows are invalid:";s:20:"ID_INVALID_EXTENSION";s:23:"Invalid file extension!";s:15:"ID_INVALID_FILE";s:12:"Invalid FIle";s:16:"ID_INVALID_LIMIT";s:33:"Invalid value specified for limit";s:24:"ID_INVALID_MAX_PERMITTED";s:70:"Invalid value for \'{0}\'. The maximum allowed length is {1} characters.";s:15:"ID_INVALID_NAME";s:13:"Invalid name!";s:22:"ID_INVALID_ORIGIN_USER";s:19:"Invalid origin user";s:19:"ID_INVALID_PRF_PATH";s:69:"Invalid value specified for prf_path. Expecting templates/ or public/";s:18:"ID_INVALID_PROCESS";s:15:"Invalid process";s:23:"ID_INVALID_PROCESS_NAME";s:62:"Invalid process name, please just use alphanumeric characters.";s:24:"ID_INVALID_PROCESS_NAME2";s:62:"Invalid process name, please just use alphanumeric characters.";s:16:"ID_INVALID_QUERY";s:14:"Invalid query.";s:15:"ID_INVALID_ROLE";s:21:"Invalid role \'{ROLE}\'";s:23:"ID_INVALID_SCH_END_DATE";s:97:"Invalid value specified for sch_end_date. Expecting date in YYYY-MM-DD format, such as 2014-01-01";s:21:"ID_INVALID_SCH_REPEAT";s:76:"Invalid value specified for sch_repeat_every. Expecting time in HH.MM format";s:25:"ID_INVALID_SCH_START_DATE";s:99:"Invalid value specified for sch_start_date. Expecting date in YYYY-MM-DD format, such as 2014-01-01";s:26:"ID_INVALID_SCH_START_DAY_1";s:73:"Invalid value specified for sch_start_day_opt_1. Must be between 1 and 31";s:25:"ID_INVALID_SCH_START_TIME";s:115:"Invalid value specified for sch_start_time. Expecting time in HH:MM format (The time can not be greater than 23:59)";s:16:"ID_INVALID_START";s:33:"Invalid value specified for start";s:24:"ID_INVALID_STARTING_TIME";s:13:"Starting time";s:22:"ID_INVALID_START_HOURS";s:43:"The following start hours rows are invalid:";s:18:"ID_INVALID_TRIGGER";s:33:"Invalid trigger \'{TRIGGER_INDEX}\'";s:16:"ID_INVALID_VALUE";s:24:"Invalid value for "{0}".";s:22:"ID_INVALID_VALUE_ARRAY";s:45:"Invalid value for \'{0}\'. It must be an array.";s:24:"ID_INVALID_VALUE_BOOLEAN";s:46:"Invalid value for \'{0}\'. It must be a boolean.";s:33:"ID_INVALID_VALUE_CAN_NOT_BE_EMPTY";s:45:"Invalid value for "{0}". It can not be empty.";s:43:"ID_INVALID_VALUE_EXPECTING_POSITIVE_DECIMAL";s:63:"Invalid value for "{0}". Please enter a positive decimal value.";s:43:"ID_INVALID_VALUE_EXPECTING_POSITIVE_INTEGER";s:58:"Invalid value for "{0}". Expecting positive integer value.";s:20:"ID_INVALID_VALUE_FOR";s:32:"Invalid value specified for: {0}";s:24:"ID_INVALID_VALUE_INTEGER";s:47:"Invalid value for \'{0}\'. It must be an integer.";s:25:"ID_INVALID_VALUE_IS_EMPTY";s:25:"The field \'{0}\' is empty.";s:36:"ID_INVALID_VALUE_ONLY_ACCEPTS_VALUES";s:55:"Invalid value for "{0}". It only accepts values: "{1}".";s:23:"ID_INVALID_VALUE_STRING";s:45:"Invalid value for \'{0}\'. It must be a string.";s:35:"ID_INVALID_VALUE_THIS_MUST_BE_ARRAY";s:53:"Invalid value for "{0}". This value must be an array.";s:14:"ID_IN_PROGRESS";s:11:"In Progress";s:5:"ID_IP";s:9:"IP Client";s:15:"ID_ISNT_LICENSE";s:31:"This isn\'t the correct license.";s:25:"ID_ISO8601_INVALID_FORMAT";s:58:"Invalid value for "{0}", this has not the format ISO 8601.";s:12:"ID_ISSUED_TO";s:9:"Issued to";s:20:"ID_IS_NOT_REGISTERED";s:18:"is not registered!";s:14:"ID_IS_REQUIRED";s:11:"is required";s:6:"ID_IUD";s:1:"#";s:14:"ID_JAVASCRIPTS";s:11:"JavaScripts";s:19:"ID_JAVASCRIPT_CACHE";s:16:"Javascript cache";s:7:"ID_JUMP";s:4:"Jump";s:19:"ID_KEEP_PROCESS_UID";s:25:"Keep imported process UID";s:6:"ID_KPI";s:26:"Key Performance Indicators";s:8:"ID_LABEL";s:5:"Label";s:12:"ID_LANGUAGES";s:8:"Language";s:23:"ID_LANGUAGE_CANT_DELETE";s:70:"There is {0} cases started with this language, delete action canceled!";s:33:"ID_LANGUAGE_CANT_DELETE_CURRENTLY";s:61:"The language the system is currently using cannot be deleted.";s:31:"ID_LANGUAGE_CANT_DELETE_DEFAULT";s:38:"You can\'t delete the default language.";s:32:"ID_LANGUAGE_DELETED_SUCCESSFULLY";s:30:"Language deleted successfully!";s:21:"ID_LANGUAJE_DIRECTORY";s:18:"Language Directory";s:22:"ID_LANG_INSTALL_UPDATE";s:16:"Install / Update";s:14:"ID_LAN_COUNTRY";s:7:"Country";s:11:"ID_LAN_FILE";s:4:"File";s:23:"ID_LAN_FILE_WATER_LABEL";s:25:"Select a translation file";s:15:"ID_LAN_LANGUAGE";s:8:"Language";s:13:"ID_LAN_LOCALE";s:6:"Locale";s:18:"ID_LAN_NUM_RECORDS";s:9:"# Records";s:15:"ID_LAN_REV_DATE";s:13:"Revision Date";s:17:"ID_LAN_TRANSLATOR";s:10:"Translator";s:18:"ID_LAN_UPDATE_DATE";s:12:"Date Updated";s:19:"ID_LAN_UPLOAD_TITLE";s:23:"Upload translation file";s:14:"ID_LAN_VERSION";s:7:"Version";s:7:"ID_LAST";s:4:"Last";s:11:"ID_LASTNAME";s:9:"Last Name";s:16:"ID_LAST_EMPLOYEE";s:13:"Last Employee";s:13:"ID_LAST_LOGIN";s:10:"Last Login";s:14:"ID_LAST_MODIFY";s:13:"Last Modified";s:12:"ID_LAST_NAME";s:9:"Last Name";s:16:"ID_LAST_RUN_TIME";s:13:"Last Run Time";s:17:"ID_LATEST_VERSION";s:14:"Latest version";s:24:"ID_LDAP_ACCOUNT_DISABLED";s:34:"The account is currently disabled.";s:23:"ID_LDAP_ACCOUNT_EXPIRED";s:31:"The user\'s account has expired.";s:24:"ID_LDAP_ERROR_CONNECTION";s:17:"Error connection.";s:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:43:"ID_LDAP_NOT_PERMITTED_TO_LOGON_AT_THIS_TIME";s:49:"The user is not permitted to log on at this time.";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:24:"ID_LDAP_PASSWORD_EXPIRED";s:27:"User\'s account has expired.";s:39:"ID_LDAP_RESTRICTED_TO_SPECIFIC_MACHINES";s:55:"The user is not permitted to log on from this computer.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";s:32:"ID_LDAP_USER_MUST_RESET_PASSWORD";s:69:"The user\'s password must be changed before logging on the first time.";s:30:"ID_LDAP_USER_NOT_FOUND_INVALID";s:24:"The username is invalid.";s:7:"ID_LECA";s:60:"Your license has expired. Please contact your administrator.";s:7:"ID_LEFT";s:4:"left";s:14:"ID_LEFT_MARGIN";s:11:"Left Margin";s:12:"ID_LESS_THAN";s:9:"less than";s:25:"ID_LIBRARY_DOES_NOT_EXIST";s:43:"The library with {0}: "{1}" does not exist.";s:34:"ID_LIBRARY_FUNCTION_DOES_NOT_EXIST";s:59:"The function with {0}: "{1}" does not exist in the library.";s:22:"ID_LICENCE_LOGIN_TITLE";s:7:"License";s:16:"ID_LICENSE_EMPTY";s:24:"Can not find any license";s:15:"ID_LICENSE_FILE";s:12:"License file";s:17:"ID_LICENSE_SERVER";s:14:"License server";s:20:"ID_LIFETIME_VALIDATE";s:47:"Max Lifetime value has to be a positive integer";s:7:"ID_LINE";s:4:"Line";s:8:"ID_LINES";s:5:"Lines";s:10:"ID_LOADING";s:23:"Loading, please wait...";s:15:"ID_LOADING_GRID";s:10:"Loading...";s:14:"ID_LOAD_FAILED";s:11:"Load Failed";s:17:"ID_LOAD_FROM_FILE";s:14:"Load from file";s:12:"ID_LOAD_MORE";s:9:"Load More";s:9:"ID_LOCALE";s:6:"Locale";s:11:"ID_LOCATION";s:8:"Location";s:9:"ID_LOGGED";s:9:"Logged on";s:8:"ID_LOGIN";s:5:"Login";s:14:"ID_LOGIN_AGAIN";s:55:"You have lost your session and you have to login again.";s:16:"ID_LOGIN_LIBRARY";s:31:"Login into ProcessMaker Library";s:17:"ID_LOGIN_SETTINGS";s:14:"Login Settings";s:14:"ID_LOGIN_TITLE";s:35:"Please enter your credentials below";s:26:"ID_LOGIN_TO_SEE_OUTPUTDOCS";s:39:"You must be logged to see the documents";s:22:"ID_LOGIN_WITH_FACEBOOK";s:21:"Login with Facebook!!";s:7:"ID_LOGO";s:4:"Logo";s:9:"ID_LOGOUT";s:6:"Logout";s:7:"ID_LOGS";s:4:"Logs";s:12:"ID_LOG_AGAIN";s:40:"Please login again to apply the changes.";s:21:"ID_LOG_CASE_SCHEDULER";s:18:"Case Scheduler Log";s:11:"ID_LOG_INFO";s:15:"Log Information";s:40:"ID_MAFE_0015b7e51c1ca4293041c429985ca323";s:56:"The specified subform could not be found in the process.";s:40:"ID_MAFE_0025301679e9722c3abd5914cfbc7dd7";s:39:"Database connection edited successfully";s:40:"ID_MAFE_004d33be4d12eb8c0ae00703e7c70f61";s:11:"Pick Second";s:40:"ID_MAFE_004fa281c757ed0c2ed3ca2b19dc26f4";s:30:"Please select a file to upload";s:40:"ID_MAFE_0095a9fa74d1713e43e370a7d7846224";s:6:"Export";s:40:"ID_MAFE_00d23a76e43b46dae9ec7aa9dcbebb32";s:7:"Enabled";s:40:"ID_MAFE_011306a5e88efff7332299ca7d8e4515";s:81:"Invalid flow between elements. Please delete the flow and reconnect the elements.";s:40:"ID_MAFE_014bd6f385cb5aec29ec9714b8106ccb";s:10:"Search ...";s:40:"ID_MAFE_018987001347cd85be2f30fcaac4ec7f";s:17:"Reassign my cases";s:40:"ID_MAFE_01bc6f8efa4202821e95f4fdf6298b30";s:5:"clear";s:40:"ID_MAFE_01d9ea29b533da28fc3a3dc45826530b";s:59:"Fields marked with an asterisk (%%ASTERISK%%) are required.";s:40:"ID_MAFE_01e314c524834917a79de8eb706d379a";s:20:"Available users list";s:40:"ID_MAFE_021f59e0a7f72f582a58baad7d315f83";s:40:"Execute a trigger when a case is created";s:40:"ID_MAFE_0266e5e196c710628bce171dc00a8d4e";s:17:"Available Objects";s:40:"ID_MAFE_02c99274ed000da347819e732fe05bfa";s:18:"Regular Expression";s:40:"ID_MAFE_02edd93949f6d3c57d9822691b59f649";s:3:"The";s:40:"ID_MAFE_02f5a8943b70bb7ee70ec52a58090caa";s:35:"The key and label must be supplied.";s:40:"ID_MAFE_033db172e7506126611760711854d755";s:10:"Next Month";s:40:"ID_MAFE_03727ac48595a24daed975559c944a44";s:3:"Day";s:40:"ID_MAFE_03937134cedab9078be39a77ee3a48a0";s:5:"Group";s:40:"ID_MAFE_03b62516184fb6ef591f45bd4974b753";s:7:"refresh";s:40:"ID_MAFE_03b94d355b5045f081bd898e4d664900";s:12:"display mode";s:40:"ID_MAFE_03c2e7e41ffc181a4e84080b4710e81e";s:3:"New";s:40:"ID_MAFE_03de5d2d75b7dd914fbc5c775bf21b63";s:48:"Input Document*:";s:40:"ID_MAFE_03df896fc71cd516fdcf44aa699c4933";s:9:"Variables";s:40:"ID_MAFE_0422899c4397e3d67ffc16045df065bd";s:58:"Please configure cron to create cases in base to a signal.";s:40:"ID_MAFE_0459c698b4236e6e2bcdd7dfe0d5f58b";s:12:"Web controls";s:40:"ID_MAFE_045ee0bdd04f6173c47edf74fd6d51b3";s:13:"Message Field";s:40:"ID_MAFE_04a7590947b0fb78f977e095bf71fdd0";s:22:"Script Task Properties";s:40:"ID_MAFE_0544ceae853cfdbfd84515d140e2c233";s:9:"User Task";s:40:"ID_MAFE_0557fa923dcee4d0f86b1409f5c2167f";s:4:"Back";s:40:"ID_MAFE_056fa3d840f48b7bfbbd68c19a4797b3";s:9:"Terminate";s:40:"ID_MAFE_0598c093f5b72986e4742a2d307e835b";s:35:"
    • YYYY MM DD >> "Valid date"
    • ";s:40:"ID_MAFE_0610123bdd4ffc191a3ea05a847e1307";s:5:"Press";s:40:"ID_MAFE_06393d06d72234311af1c99b3479bb02";s:43:"Redirect to custom URL and clear login info";s:40:"ID_MAFE_064626e308f7d6587778df2924ea847c";s:12:"← Back";s:40:"ID_MAFE_06502cb888fb850e36367519eb1fc54c";s:13:"Vertical line";s:40:"ID_MAFE_06b1e0de70757f590a02c49ed6643dbd";s:16:"Parallel Gateway";s:40:"ID_MAFE_06b98656cf4847f3e0479124bbbbd4d4";s:112:"Wo1st 2nd ... 52nd 53rdWW01 02 ... 52 53";s:40:"ID_MAFE_06d4cd63bde972fc66a0aed41d2f5c51";s:7:"comment";s:40:"ID_MAFE_07052d86b58157929b39588cd04bf868";s:15:"Receive Message";s:40:"ID_MAFE_070acc9c521d0db8d0620a1435a36207";s:8:"Wait for";s:40:"ID_MAFE_07463a98d573b3749d9230c9c02c38d0";s:34:"Accepted Values is an empty string";s:40:"ID_MAFE_07501edbc1f9fd2f7d0f0d71712b11cf";s:33:"Case Tracker updated successfully";s:40:"ID_MAFE_075ae3d2fc31640504f814f60e5ef713";s:8:"disabled";s:40:"ID_MAFE_07603125709811efbdbcd69161b42527";s:12:"Save process";s:40:"ID_MAFE_076bbf458415eb4b6684ebad6c6094c0";s:14:"Variable Name:";s:40:"ID_MAFE_0778b522479c97b0c98fb221e86f8054";s:54:"Invalid operation, please delete elements individually";s:40:"ID_MAFE_07a61978b92831579bbbb72fdf2a3b58";s:9:"useStrict";s:40:"ID_MAFE_085fea7abdc5d904fe69a3081efd7398";s:6:"Signal";s:40:"ID_MAFE_087fb8756d4add87f2d162304ccd486b";s:16:"No records found";s:40:"ID_MAFE_08898cf72a0c0bab1fd5a011cb430875";s:18:"Filename generated";s:40:"ID_MAFE_089fcbec3033fdeb0d653252c287545a";s:36:"Do you want to delete this variable?";s:40:"ID_MAFE_08a7d6fab0acef5396b8e564b32f48f8";s:69:"Supported Controls: text, textarea, dropdown, radio, suggest, hidden.";s:40:"ID_MAFE_08e81084a29cd23cc305864758f6b006";s:24:"validation error message";s:40:"ID_MAFE_0998e1a350726e6469268a260a83a2dc";s:17:"toolbar placement";s:40:"ID_MAFE_09ac9c2ebfa317b7baa510b9b93127bb";s:22:"(HH:MM) Format 24 hrs.";s:40:"ID_MAFE_0a10134c1999989ce854ac519eb97249";s:34:"Web Entry Anonymous Authentication";s:40:"ID_MAFE_0a33cdf242201623275b9897d8b4d8c4";s:13:"Html Template";s:40:"ID_MAFE_0a52da7a03a6de3beefe54f8c03ad80d";s:8:"Original";s:40:"ID_MAFE_0a7d55be9d12a369a6a8da0fb517fba4";s:6:"minute";s:40:"ID_MAFE_0af63899fb5342f6d1882ea16af864c1";s:72:"Allows date selection after this date
      (in YYYY-MM-DD HH:MM:SS format)";s:40:"ID_MAFE_0b27918290ff5323bea1e3b78a9cf04e";s:4:"File";s:40:"ID_MAFE_0b3d5609ee81e50809b7351e848e4698";s:2:"A6";s:40:"ID_MAFE_0b4db271fc4624853e634ef6882ea8be";s:8:"View all";s:40:"ID_MAFE_0b71568d594e3c9e57fe1cfae1957819";s:43:"Please configure a script to send a signal.";s:40:"ID_MAFE_0b9d04ab06dac3da0142bb369637bfa4";s:7:"qr code";s:40:"ID_MAFE_0bb8309239953b782fec18706fe60b4a";s:7:"Digital";s:40:"ID_MAFE_0bf7c19f7eac3bfa5ad960a50ad602dc";s:8:"subtitle";s:40:"ID_MAFE_0c06d45a9f58aba5f4c4d50b03f65b04";s:18:"- Select Trigger -";s:40:"ID_MAFE_0c2f3adf2a48bab3adb470f4da57f3d0";s:2:"A4";s:40:"ID_MAFE_0d0a0333b928f95bbbe2a5468f9d4aff";s:17:"Consolidated Case";s:40:"ID_MAFE_0d82790b0612935992bd564a17ce37d6";s:4:"Quit";s:40:"ID_MAFE_0dbeaf3f5e4f954c5d7c20cf222df405";s:13:"widget parent";s:40:"ID_MAFE_0dc345e011be6119663ae656cd0fc190";s:16:"Process Category";s:40:"ID_MAFE_0dd4741bcb3a94e7ec755907753669ff";s:42:"Do you want to delete this Input Document?";s:40:"ID_MAFE_0df44e2363fd51047d55635ae4130592";s:35:"Insert the title of the new trigger";s:40:"ID_MAFE_0df8347776dbb1c637387ec287c7966f";s:132:"Week Yeargg70 71 ... 29 30gggg1970 1971 ... 2029 2030";s:40:"ID_MAFE_0e0d7b681145ccfa803cd39c1b2e648f";s:59:"There are problems deleting the dynaform, please try again.";s:40:"ID_MAFE_0eaadb4fcb48a0a0ed7bc9868be9fbaa";s:7:"Warning";s:40:"ID_MAFE_0ecb335cc64ebaab517d0b3b2afa5c12";s:28:"Trigger updated successfully";s:40:"ID_MAFE_0fc962c43d228657cb0afd29eb815d15";s:14:"Screenshot1024";s:40:"ID_MAFE_1017b7d4a852d1f4bc8c58388dec210d";s:61:"Generate link using workspace default values (skin, language)";s:40:"ID_MAFE_102ddd51b0851772c38c022ff51d1ca3";s:65:"There are problems deleting the OutputDocument, please try again.";s:40:"ID_MAFE_1063e38cb53d94d386f21227fcd84717";s:6:"Remove";s:40:"ID_MAFE_10ac3d04253ef7e1ddc73e6091c0cd55";s:4:"Next";s:40:"ID_MAFE_10e94946bad8ebe2b449c477895574dc";s:46:"After routing notify the next assigned user(s)";s:40:"ID_MAFE_11a55bdfc91b03465ae2861980f10173";s:40:"The task doesn\'t have assigned Dynaforms";s:40:"ID_MAFE_11a5a6ab06a384ff9a00257a806f63c4";s:12:"Gateway Type";s:40:"ID_MAFE_11b4f4a84a6eb08abcae398ed8ecbf37";s:9:"keep open";s:40:"ID_MAFE_11dccac44340779ce8196e81de2d7650";s:22:"Parallel (AND) Gateway";s:40:"ID_MAFE_11e0eed8d3696c0a632f822df385ab3c";s:8:"database";s:40:"ID_MAFE_11f7f103dc24a2d5ce711c080e1a3851";s:22:"Case assignment method";s:40:"ID_MAFE_12516cf647fbd9162aca24107016356a";s:21:"Create Blank Dynaform";s:40:"ID_MAFE_128533b9a26b65e5732d15d8db0bc3cd";s:79:"There are unsaved changes, if you leave the editor some changes won\'t be saved.";s:40:"ID_MAFE_12cba3ee81cf4a793796a51b6327c678";s:4:"copy";s:40:"ID_MAFE_12ddb1802ad1aaed5cd7f41e77bab34a";s:38:"Please configure cron to create cases.";s:40:"ID_MAFE_130c5b3473c57faa76e2a1c54e26f88e";s:4:"Both";s:40:"ID_MAFE_13348442cc6a27032d2b4aa28b75a5d3";s:6:"Search";s:40:"ID_MAFE_1351017ac6423911223bc19a8cb7c653";s:8:"Filename";s:40:"ID_MAFE_1352bad10a077956b0e7ebd618c5198d";s:61:"There are problems loading the Start Timer, please try again.";s:40:"ID_MAFE_136bf3131fc2868af07c733d969c7833";s:12:"Routing Rule";s:40:"ID_MAFE_13a44cb3c08c1c40a3c5b62152538ee8";s:14:"Email template";s:40:"ID_MAFE_141ee7f0f96c6b0a087bd70630ab3719";s:13:"Open Password";s:40:"ID_MAFE_14230d11143a03f4330c6433d5032a9d";s:4:"Prev";s:40:"ID_MAFE_1432f32780bbd9cde496343b060fd75d";s:12:"Send Message";s:40:"ID_MAFE_157b53019e903b82b3b34209dbb26b21";s:63:"Converging Gateway must have two or more incoming sequence flow";s:40:"ID_MAFE_1586e418c08ebe156f39e9fa02504a7c";s:62:"Diverging Gateway must have two or more outgoing sequence flow";s:40:"ID_MAFE_15a0bc8b5cabfd4950d74ec8806aaebd";s:18:"variable data type";s:40:"ID_MAFE_15cb4da0a2a5e4459855d0f51cff5c9d";s:63:"Intermediate event must have one or more incoming sequence flow";s:40:"ID_MAFE_16688462a9859fc560412c2e1349437f";s:9:"Dynaforms";s:40:"ID_MAFE_166a1105094f6efbcb4b3fabd27cfa40";s:36:"The task doesn\'t have assigned users";s:40:"ID_MAFE_16888e57558b35486dfc46f2a39fdac9";s:34:"Task properties saved successfully";s:40:"ID_MAFE_168909c0b6f1dfbd48f679d47059c1d6";s:5:"Third";s:40:"ID_MAFE_16e4992123f5046ce89c07829efc9ac2";s:14:"Decrement Hour";s:40:"ID_MAFE_16f49c0f891dce505db0ffe478aff96f";s:12:"Next →";s:40:"ID_MAFE_171c9ea8629e74f980018c522d83bada";s:13:"Variables Out";s:40:"ID_MAFE_172ac8a8053b32e15c602be955a2f098";s:42:"Execute a trigger when a case is cancelled";s:40:"ID_MAFE_174e4ee3d13ed11b4d96ac457dc86aa0";s:17:"Manual Assignment";s:40:"ID_MAFE_1776c5b429c7d2e9c493d8b1419c3a72";s:14:"disabled dates";s:40:"ID_MAFE_17a53d1a012580ef609b70ef6a25d1f1";s:6:"Letter";s:40:"ID_MAFE_17f6161419cf1071d5c1163669a66853";s:15:"Select Dynaform";s:40:"ID_MAFE_181a78592654ed602ed454e019302f51";s:82:"Do you want to save the changes? This Trigger will be saved like a custom Trigger.";s:40:"ID_MAFE_1825d84c97732e2ce3d43b28cee08b58";s:58:"There are problems updating the trigger, please try again.";s:40:"ID_MAFE_185b7133db22230701a857c059360cc2";s:6:"Assign";s:40:"ID_MAFE_187336962e958e5f776ea41daf7b394e";s:21:"Default email account";s:40:"ID_MAFE_189f63f277cd73395561651753563065";s:4:"Tags";s:40:"ID_MAFE_192cf04847c3ffd92ceb9001f2f22458";s:12:"Variables In";s:40:"ID_MAFE_193cfc9be3b995831c6af2fea6650e60";s:4:"Page";s:40:"ID_MAFE_1954ab48f4de4fc4c5e53d7dad0618d0";s:33:"Message Type edited successfully.";s:40:"ID_MAFE_195fbb57ffe7449796d23466085ce6d8";s:3:"May";s:40:"ID_MAFE_197860b724bf2228df0b57ce97ef3c71";s:18:"Exclusive (Manual)";s:40:"ID_MAFE_19a757ca6e86f84f6c7b968ca7ad49dd";s:28:"Variable edited successfully";s:40:"ID_MAFE_19c562a36aeb455d09534f93b4f5236f";s:4:"Unit";s:40:"ID_MAFE_19cc79b708cfd5bf2410bc2767df6105";s:27:"Dynaform saved successfully";s:40:"ID_MAFE_1a1a584d5673d1c56e1093dddd2ee953";s:9:"size unit";s:40:"ID_MAFE_1a721faf2df53972bfd0831c64b6146d";s:8:"collapse";s:40:"ID_MAFE_1a79a39f343f2224748ec987ccf8431f";s:4:"Lane";s:40:"ID_MAFE_1ad9db0953957569c62d12728f2b0874";s:14:"Get value from";s:40:"ID_MAFE_1b539f6f34e8503c97f6d3421346b63c";s:4:"July";s:40:"ID_MAFE_1ba532aebcefcfd5cc7a5c1dd99dbd8b";s:9:"Work Days";s:40:"ID_MAFE_1bda80f2be4d3658e0baa43fbe7ae8c1";s:4:"view";s:40:"ID_MAFE_1c0b8f236cc7ad13254af9a32ea15be8";s:6:"Resend";s:40:"ID_MAFE_1c7444be9626d149ab598fb79b639f96";s:8:"Portrait";s:40:"ID_MAFE_1cb251ec0d568de6a929b520c4aed8d1";s:4:"text";s:40:"ID_MAFE_1ce4fd7b116c43c936cc8ddbaa51ce99";s:15:"file extensions";s:40:"ID_MAFE_1ce7fd4a5bc68650a82e2b254c9137c7";s:30:"Trigger assigned successfully.";s:40:"ID_MAFE_1d1ded75bd737a314cd8e39f4a715ab9";s:181:"Note: To remove days, months or years from the date picker, use a format which does not have those elements. For example a format of "MM/YYY" will not allow the user to select days.";s:40:"ID_MAFE_1d54bc57e09e7e7b52f85f0045a01474";s:32:"Do you want to delete this lang?";s:40:"ID_MAFE_1d623b89683f9ce4e074de1676d12416";s:3:"sum";s:40:"ID_MAFE_1d6785e8bc575506eb7ee226614a6d18";s:24:"Allowed file extensions:";s:40:"ID_MAFE_1dccefa9aa4b700675ca17101bccd7d3";s:16:"Edit Source Code";s:40:"ID_MAFE_1ddcb92ade31c8fbd370001f9b29a7d9";s:6:"format";s:40:"ID_MAFE_1de162d73f017a9243ce0c939064a014";s:14:"Enable gallery";s:40:"ID_MAFE_1e469db43d54e3019fcb2328e1ec4e27";s:18:"Require user login";s:40:"ID_MAFE_1ea7e575defdf6bc3f26a3f127e98170";s:10:"datasource";s:40:"ID_MAFE_1f5a44e6621dc51b6daca35844ba8311";s:14:"Timing Control";s:40:"ID_MAFE_1f9d9a4ccb5e099c457588964a61b8db";s:9:"page size";s:40:"ID_MAFE_2032a8d80edc990f99b7113724f4adc6";s:63:"The source shape can not have more than one outgoing connection";s:40:"ID_MAFE_203d82526c3bf7c32f75cb083c61c4ff";s:12:"Summary Form";s:40:"ID_MAFE_20633a8e3019e3b5f7d394f488d237da";s:18:"Callback Action...";s:40:"ID_MAFE_2063c1608d6e0baf80249c42e2be5804";s:5:"value";s:40:"ID_MAFE_20835b49593bbf08bdbbfdc6203fc51d";s:14:"alternate text";s:40:"ID_MAFE_208cc8f89088bcae77b83013f46c6cdc";s:21:"Show task in New Case";s:40:"ID_MAFE_20908be99ead7d291aca60cdd4b4bddb";s:56:"Enter a title displayed on web entry window (if applies)";s:40:"ID_MAFE_20b4f77bd00b4f63a49ec8e08f3bf6a6";s:4:"Cost";s:40:"ID_MAFE_20c1cf6614ec6ffbda1e766353344b6f";s:22:"Timer Event Properties";s:40:"ID_MAFE_21037a59373ae01e31ee20ec61555333";s:35:"Store result in variable @@myResult";s:40:"ID_MAFE_213d0c943b541604653a54b0961fd693";s:14:"Execution time";s:40:"ID_MAFE_214d99dbc0103c5a28039057362fc954";s:37:"The table name can not contain spaces";s:40:"ID_MAFE_218e8708630164ca97f9f3de66a3339b";s:118:"for valid datetime formats. If only the date is included in the format then the time picker will not be displayed.

      ";s:40:"ID_MAFE_2239b7b7383e821ff79ffbcd256a3f8f";s:12:"External (s)";s:40:"ID_MAFE_22430f0b1be537ea19f5f7a49dd5b15b";s:27:"For additional information:";s:40:"ID_MAFE_22ae0e2b89e5e3d477f988cc36d3272b";s:5:"Float";s:40:"ID_MAFE_22e74b4a2ae3e237300f7a79f6e6dbc4";s:14:"Completed Task";s:40:"ID_MAFE_22f1a4667604b8557c9b209c201b4bc6";s:3:"Aug";s:40:"ID_MAFE_2310408a63388fe57e3a4177168a8798";s:7:"Desktop";s:40:"ID_MAFE_231afe47f3f37d3808096b36c28b4ded";s:7:"Element";s:40:"ID_MAFE_239894b31b0a9c122be4f31d07305efd";s:87:"Supported Controls: text, textarea, dropdown, radio, suggest, hidden, geo map, qr code.";s:40:"ID_MAFE_239959e37b524db940db159c09984c0a";s:8:"- None -";s:40:"ID_MAFE_23aa72823f3110b89a4791763ed6ca3f";s:11:"Trigger (s)";s:40:"ID_MAFE_23cf385e5c56eeecebbd85b82acbdabd";s:64:"The value provided for the Results limit property of the field "";s:40:"ID_MAFE_23faca394186e73f3446b5ff25802885";s:21:"Process Files Manager";s:40:"ID_MAFE_2421dc6680ce1aaf6cea69494a39df47";s:43:"Do you want to delete this Output Document?";s:40:"ID_MAFE_2448df3d33c626c2cf8e883f778454b3";s:34:"The maximum value of this field is";s:40:"ID_MAFE_244d5dea1c18e5cd0eb873b030e1d824";s:28:"- Select starting activity -";s:40:"ID_MAFE_245a41b3d20ec98d1e045e149f645911";s:15:"Edit permission";s:40:"ID_MAFE_2470a67fad9f2e7fbb2f4c5e78fad6af";s:13:"Count days by";s:40:"ID_MAFE_24b875ed575a2d388074a8f7b2d2c765";s:136:"MMMJan Feb ... Nov DecMMMMJanuary February ... November December";s:40:"ID_MAFE_24fa2fbfb2224c63fee87993306c0c95";s:13:"Variable Type";s:40:"ID_MAFE_257cb9ff74e0f915a115f902c91bc372";s:9:"TEMPLATES";s:40:"ID_MAFE_25c7551bb238df62b5c5de847e0e4a0a";s:28:"Required field error message";s:40:"ID_MAFE_25d7912714632dcc5283517e20ead1f1";s:11:"Next Decade";s:40:"ID_MAFE_25d902c24283ab8cfbac54dfa101ad31";s:3:"src";s:40:"ID_MAFE_2689a6d6b3d3e54ccf8c9af27cf95d35";s:16:"Actions by Email";s:40:"ID_MAFE_26c8b24dce7a00ff4d00781dc2ee5d66";s:43:"Execute a trigger when a case is reassigned";s:40:"ID_MAFE_27118326006d3829667a400ad23d5d98";s:6:"String";s:40:"ID_MAFE_27226c864bac7454a8504f8edb15d95b";s:7:"Boolean";s:40:"ID_MAFE_275c7cb3669628b24afd0b6b85d496c8";s:30:"Wait until specified date/time";s:40:"ID_MAFE_2761f61a753144b3a54687195576559f";s:17:"Starting activity";s:40:"ID_MAFE_278c491bdd8a53618c149c4ac790da34";s:8:"Template";s:40:"ID_MAFE_27b3b5b817c0db6365fad09efc964f73";s:16:"Subject by email";s:40:"ID_MAFE_27d508156505dccd6d8df988982031f7";s:11:"drag & drop";s:40:"ID_MAFE_27f237e6b7f96587b6202ff3607ad88a";s:2:"A1";s:40:"ID_MAFE_28105e6dd8ddcc3113983516722d7577";s:40:"Protocol and Hostname, port is optional.";s:40:"ID_MAFE_288aae25bc408055f50c21c991903a44";s:12:"Asynchronous";s:40:"ID_MAFE_28a7de43bb5297bf6122425d52210f93";s:13:"Assigned User";s:40:"ID_MAFE_297b1df0a54c69676de34dc99824d08d";s:128:"

      See http://momentjs.com/docs/#/displaying/format/";s:40:"ID_MAFE_29aa92edf7c883567893849116ff1add";s:22:"Email Event Properties";s:40:"ID_MAFE_29d26bc75ff2e4d5ef3df8bdf6795ee3";s:25:"This is an error message.";s:40:"ID_MAFE_2a19110e3a66ff6cf760d100bcd046a5";s:68:"An unexpected error while deleting the step, please try again later.";s:40:"ID_MAFE_2a1ab298edf0162a3305e599b47cbeee";s:2:"B5";s:40:"ID_MAFE_2a304a1348456ccd2234cd71a81bd338";s:4:"link";s:40:"ID_MAFE_2a37d240713f300cf06d390798b0efad";s:45:"Please, specify a name for the Message Field.";s:40:"ID_MAFE_2a4bb90f555f2f4ce060a28924948fd1";s:41:"Maximum file size (Use zero if unlimited)";s:40:"ID_MAFE_2a5b8b5644c4187548c11f524fe09355";s:15:"OutPut Document";s:40:"ID_MAFE_2a6eaecb26ccc7adbad36a3dd054a82d";s:60:"Are you sure you want to delete the Web Entry configuration?";s:40:"ID_MAFE_2a6f5ddb9d6d57e2d8bdf3f83bb7c0cd";s:55:"There are problems getting the Steps, please try again.";s:40:"ID_MAFE_2aa7a349a072dcb9402f203d0a6f898d";s:29:"No elements found to connect.";s:40:"ID_MAFE_2ad9d63b69c4a10a5cc9cad923133bc4";s:6:"Bottom";s:40:"ID_MAFE_2b30b478acce5ed435bdf80f39de9b1f";s:61:"Please take note of the changes to update your process logic.";s:40:"ID_MAFE_2b30f7950c6f143b5722c4e001bddd26";s:13:"Suggest users";s:40:"ID_MAFE_2b9153e1f3c6ebd7bf7ac1ee168aa7ca";s:14:"__PARAMETERS__";s:40:"ID_MAFE_2bc2de57b27c665244bf4cb8d17f842f";s:124:"Do you want to clear this variable? The following properties are reset: Variable, Data Type, DB Connection, SQL and Options.";s:40:"ID_MAFE_2c4429deb064b2431fb36a8b4f552713";s:67:"It leaving this field in blank, the next user\'s email will be used.";s:40:"ID_MAFE_2d33b0db41ea7a05caec256b28887de2";s:15:"Text Annotation";s:40:"ID_MAFE_2d69cae8f3f13b440c51edced7338699";s:21:"days of week disabled";s:40:"ID_MAFE_2da50ac492a35f56e1317546284fe77a";s:27:"Timer Event saved correctly";s:40:"ID_MAFE_2da6df2dfb6fe5c9542ee11118dce1fa";s:32:"Do you want to delete this file?";s:40:"ID_MAFE_2de42fbb00305f8282310f1b3e10ce9a";s:6:"border";s:40:"ID_MAFE_2e0d4647851b478e8d64b0782bd9a918";s:35:"Select the day(s) of the week below";s:40:"ID_MAFE_2e9226a813ef94f99899581e55940955";s:15:"Insert Variable";s:40:"ID_MAFE_2ec3bb15c10969b54c46121a5164deb6";s:92:"Read more about it here.";s:40:"ID_MAFE_2effa58f13159d138a634233e246713d";s:12:"Content Type";s:40:"ID_MAFE_2f5e2c60c890f5e7b9740fa8e71413c3";s:11:"Marker Type";s:40:"ID_MAFE_2fc027fad20982fe2918b8b7262fc3e5";s:82:"

    • dddd, MMMM Do YYYY, h:mm:ss a >> "Sunday, February 14th 2010, 3:25:50 pm"
    • ";s:40:"ID_MAFE_2fe4167817733fec8e6ba1afddf78f1b";s:11:"Synchronous";s:40:"ID_MAFE_308465ce385e7fe39ed79f3b9f2c4dee";s:14:"Store value in";s:40:"ID_MAFE_308a5146b0818a721c5081d2b1932398";s:14:"is duplicated.";s:40:"ID_MAFE_309a570360b12b43f63266735418715d";s:54:"Max date must be greater than the min and default date";s:40:"ID_MAFE_30a2dae0a135701b862050465b3e4e97";s:71:"Triggers after and before a step are not supported when working offline";s:40:"ID_MAFE_30c40215e6d00c574ca23451003db9b9";s:10:"checkgroup";s:40:"ID_MAFE_3120001274fa32a921770c1b41e6dc0a";s:7:"DETAILS";s:40:"ID_MAFE_313a6a3d25aa041ee3dc3cbd65d4f22b";s:7:"Formula";s:40:"ID_MAFE_313af772d92d01300d5e89512cd93bd0";s:13:"default value";s:40:"ID_MAFE_31d1eacb86fc41c8ba34934923e8b53e";s:22:"Email Account Settings";s:40:"ID_MAFE_31fde7b05ac8952dacf4af8a704074ec";s:7:"Preview";s:40:"ID_MAFE_320bc46e1be50f1379c6fd199c9d64c1";s:34:"Intermediate Receive Message Event";s:40:"ID_MAFE_327094c3c1dfa5775d9da557c57b3c8e";s:13:"Calendar Days";s:40:"ID_MAFE_32e5bfca7823c2dc9de9df3dfbb5a7d4";s:19:"Process Information";s:40:"ID_MAFE_333447ee7f49b1be2504d30e3313fe55";s:12:"Add Variable";s:40:"ID_MAFE_334c4a4c42fdb79d7ebc3e73b517e6f8";s:4:"none";s:40:"ID_MAFE_336816fd752e17593553eda4894e8464";s:17:"Create permission";s:40:"ID_MAFE_33e7ca8872a98fe4b44833054a5ccc3e";s:16:"An email address";s:40:"ID_MAFE_3435b9bbc654ab606ab80f01ca9712a3";s:21:"Execute every Hour(s)";s:40:"ID_MAFE_343e6957be77c6247aa2b8d0deb68bd6";s:3:"Nov";s:40:"ID_MAFE_344a7f427fb765610ef96eb7bce95257";s:6:"Editor";s:40:"ID_MAFE_345d93cb9ade6e353e97750ce1579443";s:10:"SQL Editor";s:40:"ID_MAFE_345ff9170ccdebc764d44f9639ff5587";s:10:"- Select -";s:40:"ID_MAFE_353279c7161c0a9425743a96a9b709ef";s:41:"Execute a trigger when a case is unpaused";s:40:"ID_MAFE_353710177fda5bb1b46e2a779482c52d";s:30:"
    • ddd, hA >> "Sun, 3PM"
    • ";s:40:"ID_MAFE_35be2c1cf2cc489bdb16b678cd73cd78";s:7:"formula";s:40:"ID_MAFE_35c8a5a9109d249216ba5e5df55db3af";s:79:"Form cannot be submitted because file(s) {%%%FILES%%%} (are/is) still uploading";s:40:"ID_MAFE_35f251dbf805f6e532d579044aec1882";s:33:"Input Document saved successfully";s:40:"ID_MAFE_36384a9ea3ec791e6bd4ab6b36f2ff2a";s:6:"Tablet";s:40:"ID_MAFE_36a65bbd12f7586ea1f9b0be4e8848aa";s:11:"HTML Editor";s:40:"ID_MAFE_36c311dcc594c5dfdc66b430a42367c2";s:63:"There are problems updating the routing rule, please try again.";s:40:"ID_MAFE_380c771a0d7fb5ccc706ce59e89b3f26";s:6:"Panel:";s:40:"ID_MAFE_380e92305f89798cc7ff7db6e73b22c6";s:43:"There are problems updating the Loop Marker";s:40:"ID_MAFE_381ba83b537f3a99729bc7c181ee5d23";s:14:"Text to Search";s:40:"ID_MAFE_382b0f5185773fa0f67a8ed8056c7759";s:3:"N/A";s:40:"ID_MAFE_38c4f766faf4ef7214cf68aa1d59a2be";s:48:"There are problems getting the list of triggers.";s:40:"ID_MAFE_38f105ec27a415dcfb1905e038338b44";s:131:"dddSun Mon ... Fri SatddddSunday Monday ... Friday Saturday";s:40:"ID_MAFE_391228d94106d11f9b4d36324423f0ac";s:37:"Please enter a positive integer value";s:40:"ID_MAFE_39b5b27e239f7f9030b5f21d9dd5d7ed";s:35:"Variable for Value Based Assignment";s:40:"ID_MAFE_3a08e2e340ab29fd9263af48193cbf8e";s:9:"Languages";s:40:"ID_MAFE_3a0c8958c0ae72f01636b760b3555ec9";s:11:"Timer Event";s:40:"ID_MAFE_3a17e95bfbc888f592433fb1bb5b5346";s:25:"Create Predefined Trigger";s:40:"ID_MAFE_3a3678eaaa8b058dc89a4c3aba8ff52e";s:24:"Edit Database Connection";s:40:"ID_MAFE_3a8a44fd9eac194fc4578bf937c81674";s:31:"Supported Controls: checkgroup.";s:40:"ID_MAFE_3adbdb3ac060038aa0e6e6c138ef9873";s:8:"Category";s:40:"ID_MAFE_3afd78b28798273ac67a7b9f22619d98";s:13:"DB Connection";s:40:"ID_MAFE_3b1b7e0ca46b70e7acfc1b1e6ff2e3d2";s:5:"icon.";s:40:"ID_MAFE_3b313f1e720672161bfa924e023cf015";s:10:"Title Case";s:40:"ID_MAFE_3b44e8c1da430ff11f9ff3b38a67ac34";s:17:"Enable Grid Lines";s:40:"ID_MAFE_3b563524fdb17b4a86590470d40bef74";s:5:"Media";s:40:"ID_MAFE_3bb055cd21140e7c1b17eeeace227bdb";s:11:"Select Year";s:40:"ID_MAFE_3c8a58a423ed96c806664b1d4e803e2c";s:9:"Data Type";s:40:"ID_MAFE_3cab03c00dbd11bc3569afa0748013f0";s:8:"Inactive";s:40:"ID_MAFE_3cc152ca5e049720eb10e6bf1fa1fa02";s:46:"Error, There are problems removing the element";s:40:"ID_MAFE_3cc6945413a5c64c7f31add6d5211b24";s:24:"to get the function list";s:40:"ID_MAFE_3cd66dde16d60e5dd9dd4a760417c0dc";s:22:"Inclusive (OR) Gateway";s:40:"ID_MAFE_3cdd375252ada77430ba8a2ca01b7332";s:28:"Email Event Edited correctly";s:40:"ID_MAFE_3cfd943f7de9aa2480da0c30735bb031";s:24:"Title of the new trigger";s:40:"ID_MAFE_3d067bedfe2f4677470dd6ccf64d05ed";s:6:"Public";s:40:"ID_MAFE_3d4c07c860afb7fa3a84e62e208d598d";s:44:"Supported Controls: checkbox, radio, hidden.";s:40:"ID_MAFE_3d4cd7a0ec44a80d9784fd6e98529113";s:62:"There are problems saving the assigned user, please try again.";s:40:"ID_MAFE_3d8bb71f323428adfc2812695658672a";s:28:"Trigger deleted successfully";s:40:"ID_MAFE_3d980d5c80cc742a1f68a11b0db188a1";s:24:"Insert an email variable";s:40:"ID_MAFE_3dc0c79ab4ccf1ab2187b4261a4a43b4";s:34:"Output Document saved successfully";s:40:"ID_MAFE_3e661ccd1bd840f47829d2e6dbb5e651";s:28:"required field error message";s:40:"ID_MAFE_3e80ebd582f73299f249afba8ebe7e6b";s:10:"responsive";s:40:"ID_MAFE_3e8f92eb64623f0ecd16d2efcd0acd7e";s:13:"Report Tables";s:40:"ID_MAFE_3edcc5150c225068c9ae501ffe62ceb9";s:16:"Increment Second";s:40:"ID_MAFE_3edf8ca26a1ec14dd6e91dd277ae1de6";s:6:"Origin";s:40:"ID_MAFE_3f60b096843929b02e1a070f57e27584";s:13:"Variable Name";s:40:"ID_MAFE_3f66ca8856f98cde86f7a78e287cd4ba";s:116:"Minutem0 1 ... 58 59mm00 01 ... 58 59";s:40:"ID_MAFE_3fcf026bbfffb63fb24b8de9d0446949";s:5:"April";s:40:"ID_MAFE_40070e1f0867f97db0fa33039fae2063";s:26:"File uploaded successfully";s:40:"ID_MAFE_40227eb4ec6a9d663f53962308a2c706";s:11:"Case Status";s:40:"ID_MAFE_4038f53382d7ec3998b8afbdbba12a47";s:12:"After action";s:40:"ID_MAFE_40400ef0ba4f2702eed9bc929ade269a";s:82:"Drag and drop the process elements that you want to include in the process design.";s:40:"ID_MAFE_4051eb3c690cdbcd9ff5652d04b0ece3";s:19:"Assigned Users List";s:40:"ID_MAFE_4077e0cd2d3b172b040ce4b951aa6895";s:7:"var_uid";s:40:"ID_MAFE_408d314d5281398dcc19911f30e54573";s:23:"File saved successfully";s:40:"ID_MAFE_409c5f8fce900e142f39339ce9765dd6";s:56:"
    • Edit: Allow user to change the control\'s value.
    • ";s:40:"ID_MAFE_40a8ab55460abd5723f028b6bf182071";s:11:"a text here";s:40:"ID_MAFE_41159e627c3a65cf4a9aeba8b762e6d0";s:12:"side by side";s:40:"ID_MAFE_413d93080f0537ab3a0022f80f2d77b5";s:31:"Intermediate Send Message Event";s:40:"ID_MAFE_4184f3327703ed13b197de132142cec0";s:151:"The designer bar displays the process name and is used to control the process view (zoom, full screen view), the export, undo/redo and the save button.";s:40:"ID_MAFE_41ba70891fb6f39327d8ccb9b1dafb84";s:6:"August";s:40:"ID_MAFE_41de6d6cfb8953c021bbe4ba0701c8a1";s:8:"Messages";s:40:"ID_MAFE_41e80c3ce414de15ab19d996f7072429";s:10:"fileupload";s:40:"ID_MAFE_41fffd09332a35491d3bed5a34f91410";s:55:"http://eonasdan.github.io/bootstrap-datetimepicker/";s:40:"ID_MAFE_42184184a95464c63c790acc3a69e564";s:15:"Routing History";s:40:"ID_MAFE_421b47ffd946ca083b65cd668c6b17e6";s:5:"video";s:40:"ID_MAFE_4252b72e6ebcd4d4b4c2e46a786f03d2";s:4:"Zoom";s:40:"ID_MAFE_42728192eb543e8b035df3d040068d3d";s:30:"Description of the new trigger";s:40:"ID_MAFE_42b5e40c0f14c557113865a3aa78b673";s:76:"Insert a SQL query like: SELECT [Key field], [Label field] FROM [Table name]";s:40:"ID_MAFE_431fc30c29fdcdc1980d898a2f65e4e7";s:39:"The user/group was successfully removed";s:40:"ID_MAFE_4346c97778f456ed8a4eed32cff645f0";s:129:"Select an element in the designer to display the quick toolbar with the list of the most used options available for that element.";s:40:"ID_MAFE_4351cfebe4b61d8aa5efa1d020710005";s:4:"View";s:40:"ID_MAFE_4416936991b2db414309b13293402bd0";s:26:"Add at least one variable.";s:40:"ID_MAFE_44314d568caee793c8d7753a816d6e02";s:51:"An error occurred while retrieving the access token";s:40:"ID_MAFE_4466476a945cb091a8f4252b96f140d7";s:7:"suggest";s:40:"ID_MAFE_44749712dbec183e983dcd78a7736c41";s:4:"Date";s:40:"ID_MAFE_4498e6305304230bc7f2600f5d1b1d84";s:10:"Mail (PHP)";s:40:"ID_MAFE_449c6d9f5ba15789700b2c8ea380e3fa";s:14:"Untitled label";s:40:"ID_MAFE_44fdec47036f482b68b748f9d786801b";s:4:"days";s:40:"ID_MAFE_451f887bdbe0c83be42cbfffecedb2f0";s:53:"Select the date and time for case(s) to be initiated.";s:40:"ID_MAFE_4621590946adadc2f24119e194bd70a6";s:20:"Parallel Marker Type";s:40:"ID_MAFE_463ab1bc075f498d1aa03b9bc062efa3";s:12:"Element Type";s:40:"ID_MAFE_473293d536577cd3fa417dab23b7543c";s:38:"Assign Users and Groups as Supervisors";s:40:"ID_MAFE_47a23c652a2e04c0963f15326ebef11a";s:11:"Go to today";s:40:"ID_MAFE_47b5269b1f60dcd4d18f0cc5f17a7c21";s:14:"Email variable";s:40:"ID_MAFE_47c14840d8e15331fa420b9b2f757cd9";s:8:"Variable";s:40:"ID_MAFE_47cf1efb576e40705e0a45ab011f053d";s:13:"Import Error:";s:40:"ID_MAFE_47f9082fc380ca62d531096aa1d110f1";s:7:"Private";s:40:"ID_MAFE_482c1abf967563c57d67409476406038";s:22:"HTML2PDF (Old Version)";s:40:"ID_MAFE_48d4ff84aa02441adf2d88a294474f54";s:8:"Dynaform";s:40:"ID_MAFE_48e3d5f66961b621c78f709afcd7d437";s:17:"Download the file";s:40:"ID_MAFE_4945d3af342647ff517043edb7b3ee92";s:12:"RETURN VALUE";s:40:"ID_MAFE_4965d0bc5e97784d1bb1c4b054523678";s:7:"Handler";s:40:"ID_MAFE_497031794414a552435f90151ac3b54b";s:6:"Object";s:40:"ID_MAFE_497f247967ea9a295c48effdc025c1a1";s:17:"Email From Format";s:40:"ID_MAFE_4989a483239b227710aa6f4501b5d3a1";s:50:"Allow users to change the task duration in runtime";s:40:"ID_MAFE_4994a8ffeba4ac3140beb89e8d41f174";s:8:"Language";s:40:"ID_MAFE_49ab5aaeb16e40d2787f6cc6532c99a3";s:15:"Test Connection";s:40:"ID_MAFE_49b4172127e6e369ab6f4e304a7d743b";s:12:"Edit Process";s:40:"ID_MAFE_49bfe61a6dfb1b2eb694d2b5f2ebf34f";s:18:"Business Rule Task";s:40:"ID_MAFE_49ee3087348e8d44e1feda1917443987";s:4:"Name";s:40:"ID_MAFE_4ae66c12297cc8487a9cddf8e9d99691";s:13:"Email account";s:40:"ID_MAFE_4b0786e5eb9e8b54529708004fd31b21";s:125:"DDDD001 002 ... 364 365Day of Weekd0 1 ... 5 6";s:40:"ID_MAFE_4b1f36581927bba38500601a5bf3ede8";s:11:"Script Task";s:40:"ID_MAFE_4b420957db489cc5aff8bee58d07b8b1";s:52:"The row can not be removed, because is being edited.";s:40:"ID_MAFE_4b441851f94a139dc89c37f6c03be611";s:11:"Pick Minute";s:40:"ID_MAFE_4b7c4e2a902673b967b1d63f9a4bed74";s:11:"Condition *";s:40:"ID_MAFE_4ba21d7a3d8a97aa04e405f9caf3ab3b";s:17:"Capitalize phrase";s:40:"ID_MAFE_4bb78cf31aa7936d4031f8de1481d308";s:18:"The label is empty";s:40:"ID_MAFE_4bc7766d599f3ab0ce24ad6cb0df9539";s:10:"View users";s:40:"ID_MAFE_4bcbe7caab53fdc2626018b5ad22bb4b";s:10:"Data Empty";s:40:"ID_MAFE_4bf9bb3c160bb69f441724d81671fd72";s:10:"max length";s:40:"ID_MAFE_4c021e6782546f701d2c9a15f3be1013";s:51:"
      DB connections: Connect to external databases.";s:40:"ID_MAFE_4c2a8fe7eaf24721cc7a9f0175115bd4";s:7:"Message";s:40:"ID_MAFE_4c3880bb027f159e801041b1021e88e8";s:6:"Method";s:40:"ID_MAFE_4c524bf462d270df1443cd80bf70e5de";s:14:"Input Document";s:40:"ID_MAFE_4d0c42523f93e7ce5f25230010a3aa00";s:39:"The parameter maxlength is not a number";s:40:"ID_MAFE_4d287ea3f5618dc027b8de8bba546ef0";s:16:"Close the picker";s:40:"ID_MAFE_4d34f1097f6c8b9cee28bca8b78bbee9";s:10:"Start date";s:40:"ID_MAFE_4d3d769b812b6faa6b76e1a8abaece2d";s:6:"Active";s:40:"ID_MAFE_4e357e7345689cff230335282b201a11";s:13:"Enable camera";s:40:"ID_MAFE_4e920535c6e1ecc93e20705ddaab8e55";s:47:"object with all or some of the parameters above";s:40:"ID_MAFE_4ed131033015697f970660a0cb48ff1e";s:15:"Create variable";s:40:"ID_MAFE_4f67fe16b274bf31a67539fbedb8f8d3";s:13:"Document Type";s:40:"ID_MAFE_4f92f36c19f0ad317fb71d493a18caac";s:46:"
    • Parent: Inherit the mode from parent.
    • ";s:40:"ID_MAFE_50913568f681474c32d3f1b4a9fafdf1";s:12:"Case Tracker";s:40:"ID_MAFE_50a9ec1685a51015e4509529cb939081";s:13:"Generate Link";s:40:"ID_MAFE_50b5d3dcade1bb32254e0f8d54c493de";s:49:"Please insert variable before adding to the list.";s:40:"ID_MAFE_5174307b9097d47b1a506bc8171c2bb3";s:7:"textbox";s:40:"ID_MAFE_5174d1309f275ba6f275db3af9eb3e18";s:4:"Grid";s:40:"ID_MAFE_5199decbb00b9a606e30f3ddfc951f3f";s:20:"Database Connections";s:40:"ID_MAFE_520d0db389f362bf79ef56ca0af3dcab";s:6:"Format";s:40:"ID_MAFE_521019040a0f4f7773357aa6bc22180b";s:5:"DRAFT";s:40:"ID_MAFE_5308fcbb3c60d1cb24e45795bf9a0b7e";s:15:"End Email Event";s:40:"ID_MAFE_531bc0580529d4698f8a6e44a6b3b8ff";s:62:"There are problems updating the Script Task, please try again.";s:40:"ID_MAFE_5380075c9a443c803097bc250428ed60";s:21:"- Select a Dynaform -";s:40:"ID_MAFE_53c54b843bcd76e000cda5b85d0f5f48";s:47:"Process Design Access: Public / Private (Owner)";s:40:"ID_MAFE_53d22bb05078d53466b570517a7afcc8";s:27:"Email Event saved correctly";s:40:"ID_MAFE_53fd42622e1c404f5bfced3a7dad0fe1";s:22:"Select Connection Type";s:40:"ID_MAFE_5414141a124f3f7a55ae93ed61786092";s:14:"Export Diagram";s:40:"ID_MAFE_5436bdb572535c577a1a0553ed1d05f9";s:13:"Invalid file:";s:40:"ID_MAFE_545106eebc5cfec4095c8903a3e5bea9";s:9:"Next Task";s:40:"ID_MAFE_548cf4aecea6746070f800742bc271b8";s:126:"Grid: drag & drop controls.
      Supports: textbox, textarea, dropdown, checkbox, datetime, suggest, hidden, link, multiplefile.";s:40:"ID_MAFE_5493fda247f138a0b3fc0d493b2906e5";s:9:"Web Entry";s:40:"ID_MAFE_54ca84a794888fe8d92834787dfa935a";s:7:"columns";s:40:"ID_MAFE_553115b041c527b43818daf51048f468";s:78:"Set the date picker to this date by default
      (in YYYY-MM-DD HH:MM:SS format)";s:40:"ID_MAFE_5571b942d21d51f7ee45424b811a2c03";s:16:"Insert file name";s:40:"ID_MAFE_5582ead0a9ee86a54da29c20caee6f57";s:16:"Force user login";s:40:"ID_MAFE_55f6611cb342565cf0f5002400f53a95";s:10:"Annotation";s:40:"ID_MAFE_5651b7822a684ac4ae3b1b1690e147c0";s:10:"A0Oversize";s:40:"ID_MAFE_56a1bf7a363021c1d31dd8338428cc03";s:14:"Custom Trigger";s:40:"ID_MAFE_56b77519470d41f8b2da598f1021508e";s:8:"max date";s:40:"ID_MAFE_56dbee09e1c297e9269b967d3f1e8af8";s:60:"There are problems updating the Web Entry, please try again.";s:40:"ID_MAFE_570b43e00e6db926c60b0eeee0a275b4";s:38:"Database connection saved successfully";s:40:"ID_MAFE_572405a2f96ccc48f34bc51eada3cec2";s:54:"Min date must be lesser than the max and default date.";s:40:"ID_MAFE_572d795e2d044f895cc511e5c05030e5";s:9:"INCLUSIVE";s:40:"ID_MAFE_5792315f09a5d54fb7e3d066672b507f";s:7:"Tuesday";s:40:"ID_MAFE_57c095deeaf026f8022c485e054135c7";s:47:"Are you sure you want to delete the "variable"?";s:40:"ID_MAFE_57c9b9c47ca1d9e07f7a39184ce0173d";s:5:"Lasso";s:40:"ID_MAFE_57cf1e6eafb6fe55898b382184708db6";s:83:"The email can be a string or a variable (@@myEmail), comma separated list of emails";s:40:"ID_MAFE_585db2c92dc89eef837f07b5791c5536";s:4:"Edit";s:40:"ID_MAFE_5896ecd1d83886eb157d9cbfb988f1da";s:15:"protected value";s:40:"ID_MAFE_58bde56db8d9372db8a2f2ed6e782c9b";s:10:"Reports to";s:40:"ID_MAFE_58ccfb0ba3c854b1c759469193bca86f";s:16:"Exit full screen";s:40:"ID_MAFE_58e2bacbf6c2f5bb444da626206f53dd";s:11:"Undo Action";s:40:"ID_MAFE_58fdae208be066b01eab48307238b949";s:13:"-- Default --";s:40:"ID_MAFE_594be08882c8e9d5efb9eeb62f303744";s:3:"Oct";s:40:"ID_MAFE_599bc72a2e8309cf0ac21c5076bea02b";s:13:"Parallel Task";s:40:"ID_MAFE_599dcce2998a6b40b1e38e8c6006cb0a";s:4:"type";s:40:"ID_MAFE_59d0ce20b062e00466be1ad296c22407";s:13:"data variable";s:40:"ID_MAFE_59df5e8802a2330f385e440ebeba70d8";s:22:"Value Based Assignment";s:40:"ID_MAFE_5a0e2c54b27b178c89d58a530b4fa334";s:54:"There was an error when populating the values of field";s:40:"ID_MAFE_5a8dddb3b99ceb252ce638872cd2f506";s:27:"PHP pages with Web Services";s:40:"ID_MAFE_5ac8eb48637bb804f135b488493ae065";s:49:"Please configure script to end with error status.";s:40:"ID_MAFE_5ad234cb2cde4266195252a23ca7d84e";s:8:"Property";s:40:"ID_MAFE_5ae16cbb41ab1e74b5d58a96fed59789";s:13:"Screenshot800";s:40:"ID_MAFE_5af874093e5efcbaeb4377b84c5f2ec5";s:6:"Wizard";s:40:"ID_MAFE_5b37be2f6e6fc0bc307e3146980709ea";s:26:"Please enter only CSS code";s:40:"ID_MAFE_5b4b59f272d282c31a55f4cd8839ee2c";s:13:"Results Limit";s:40:"ID_MAFE_5b5ebb466ae75a2ca15dbd1c92d64830";s:27:"DynaForm saved successfully";s:40:"ID_MAFE_5b776d9c69a7ccfe2b8565c94e21a853";s:127:"YearYY70 71 ... 29 30YYYY1970 1971 ... 2029 2030";s:40:"ID_MAFE_5c2defa646a21de1595fe6d06c63067e";s:16:"Task in Progress";s:40:"ID_MAFE_5caa3749019003c9b6b4c69f75186a0b";s:72:"When the form is submitted a new case is created with this user account.";s:40:"ID_MAFE_5cdf3f8e0de1cb63a3cfb8bec5a5db9d";s:70:"There are problems getting the triggers wizard list, please try again.";s:40:"ID_MAFE_5d085d8447bc84ead2b9af188a8e4f0c";s:13:"Before action";s:40:"ID_MAFE_5d89fe1813446d4b6fb1586b0287f788";s:27:"Step assigned successfully.";s:40:"ID_MAFE_5da01bc260f45532692827ab75ae3076";s:13:"Variable type";s:40:"ID_MAFE_5da618e8e4b89c66fe86e32cdafde142";s:4:"From";s:40:"ID_MAFE_5dbf17e4c8ca8f1979b7b4b3abaffe32";s:12:"Edit process";s:40:"ID_MAFE_5dd14645551594126bf6409543c54796";s:19:"Supported Controls:";s:40:"ID_MAFE_5e12c7aba4f3b65f84edc650d00b8884";s:54:"Default: false
      On show, will set the picker to:
      ";s:40:"ID_MAFE_5e4b419093a8f5df11422452a9219b07";s:19:"Invalid Connections";s:40:"ID_MAFE_5e57481a16f324775782453d7e4de54f";s:25:"array of numbers from 0-6";s:40:"ID_MAFE_5e9df908eafa83cb51c0a3720e8348c7";s:9:"Check All";s:40:"ID_MAFE_5ef0c737746fae2ca90e66c39333f8f6";s:6:"Errors";s:40:"ID_MAFE_5efb244c6b960624bc7180fe96b84d24";s:18:"The Dynaform title";s:40:"ID_MAFE_5f325fce1a3d2476550eb380e18b286a";s:22:"Redirect to custom URL";s:40:"ID_MAFE_5f972036fb924e92ecbe7e47a5f4d7a5";s:46:"Are you sure you want to discard your changes?";s:40:"ID_MAFE_5fb63579fc981698f97d55bfecb213ea";s:4:"Copy";s:40:"ID_MAFE_6059b81ef1094afb4e30f44457df5b28";s:27:"The variable is being used.";s:40:"ID_MAFE_6060f601471eb3f733ec222180fff382";s:19:"Delete Routing Rule";s:40:"ID_MAFE_6068a5925e0bfe4e66a6be47d4abbd06";s:42:"Please configure script to terminate case.";s:40:"ID_MAFE_6068f02bcb9514fe40e67d04c7647d56";s:26:"Please enter a valid hour.";s:40:"ID_MAFE_60a4ec92b73f76abf1b8f50973547478";s:17:"title (mouseover)";s:40:"ID_MAFE_60aaf44d4b562252c04db7f98497e9aa";s:4:"Port";s:40:"ID_MAFE_60cf550c40960532dfd002fcfbc6725a";s:63:"There are problems getting the Triggers list, please try again.";s:40:"ID_MAFE_611ebad77c16b1edc01a8e4962094900";s:9:"All Tasks";s:40:"ID_MAFE_6126329d245973d0025f07d8d4f3c3ba";s:73:"Allows date selection before this date
      (in YYYY-MM-DD HH:MM:SS format)";s:40:"ID_MAFE_61e80a8ed0aff262daa5800330e133f3";s:12:"Service Task";s:40:"ID_MAFE_6238fa95a408af9c5598d0f45d923b18";s:49:"Please configure cron to wait for time condition.";s:40:"ID_MAFE_628b7db04235f228d40adc671413a8c8";s:3:"day";s:40:"ID_MAFE_62902641c38f3a4a8eb3212454360e24";s:6:"Minute";s:40:"ID_MAFE_62d98b10558da9a7676b92258717a7a1";s:9:"End Event";s:40:"ID_MAFE_630f6dc397fe74e52d5189e2c80f282b";s:12:"Back to list";s:40:"ID_MAFE_631aea77fcb10698585c8ae77aac3800";s:13:"External Step";s:40:"ID_MAFE_63401535ae5b2457b9c4471637ba8308";s:102:"In the design area you can drop the process elements and order or arrange them to design your process.";s:40:"ID_MAFE_635f2145a06da2d4ce2c355bf94da6ed";s:13:"Previous Year";s:40:"ID_MAFE_6384750fb02541d64a749b1a9296a43f";s:17:"Condition Trigger";s:40:"ID_MAFE_6394d816bfb4220289a6f4b29cfb1834";s:8:"textarea";s:40:"ID_MAFE_63a3168661b8fec46d2e90c9e0569cad";s:14:"Default: false";s:40:"ID_MAFE_63c0184d8c2398ceeaee276b9a140d09";s:11:"Email Event";s:40:"ID_MAFE_6400a922c9482253339a1cfc2791c31b";s:38:"By clicking on the generated file link";s:40:"ID_MAFE_640eaa8954e206c0dc9a4da71619537d";s:11:"Case Labels";s:40:"ID_MAFE_6421c440fabe27193fad6710c33cf7c7";s:19:"There are no items.";s:40:"ID_MAFE_6450242531912981c3683cae88a32a66";s:5:"Forms";s:40:"ID_MAFE_64684d8a069264ece1465e64cbe2a189";s:42:"Enter a Protocol and Hostname valid value.";s:40:"ID_MAFE_64959029acf7b169f8d972637b75b49e";s:10:"No records";s:40:"ID_MAFE_650be61892bf690026089544abbd9d26";s:4:"Mode";s:40:"ID_MAFE_6547600c780b3b6483c2d5d758666c3f";s:32:"Start Timer updated successfully";s:40:"ID_MAFE_656bd5e7964412e1954a5cb83cf0e31e";s:11:"Single HTML";s:40:"ID_MAFE_657f8b8da628ef83cf69101b6817150a";s:4:"help";s:40:"ID_MAFE_6593d7b12fd418cdb35bbf438de72f66";s:2:"A3";s:40:"ID_MAFE_659e59f062c75f81259d22786d6c44aa";s:8:"February";s:40:"ID_MAFE_65c3b5956adaf7365a8857abb7ddd26b";s:40:"Execute a trigger when a case is deleted";s:40:"ID_MAFE_6606bf86257a99bf75f2d6360e92e0df";s:40:"Please press the "Generate Link" button.";s:40:"ID_MAFE_660cfca112471f69246e9942f5e8afd1";s:19:"Store email body in";s:40:"ID_MAFE_66285b36f894a5439af5a98e3e1a36d2";s:15:"Process Objects";s:40:"ID_MAFE_662f707d5491e9bce8238a6c0be92190";s:6:"hidden";s:40:"ID_MAFE_66b4af3ab39216f5ecddcb0613abfe04";s:28:"Select Dynaform use in case.";s:40:"ID_MAFE_671aa2e8cc2c2435cf509fa4a3baf26c";s:9:"Executive";s:40:"ID_MAFE_67dab01827a619fdbcb137f18a83feb5";s:14:"End of process";s:40:"ID_MAFE_67daf92c833c41c95db874e18fcb2786";s:11:"description";s:40:"ID_MAFE_685a0de987f44b7f5d08be4de212bab2";s:18:"Insert a condition";s:40:"ID_MAFE_686e697538050e4664636337cc3b834f";s:6:"Create";s:40:"ID_MAFE_6887c495a8d963934af15a912151ac38";s:13:"max file size";s:40:"ID_MAFE_688937ccaf2a2b0c45a1c9bbba09698d";s:4:"June";s:40:"ID_MAFE_689202409e48743b914713f96d93947c";s:5:"Value";s:40:"ID_MAFE_68934a3e9455fa72420237eb05902327";s:5:"false";s:40:"ID_MAFE_68be06f16b9b17f3741cd3846a2d9190";s:9:"Display :";s:40:"ID_MAFE_690605a78c5b7459462f97e6915929d9";s:22:"Sub-process Properties";s:40:"ID_MAFE_6927a3a7218a3195858411433ec20a21";s:7:"average";s:40:"ID_MAFE_692f9836dcf2a0314f415c873b58e8c4";s:40:"The routing rule to "{0}" already exists";s:40:"ID_MAFE_696e6fecf8df306ffce7d776b175e9b9";s:23:"Intermediate Event Type";s:40:"ID_MAFE_69bf4327261159c0bfd29ec31b47dff3";s:16:"Start Event Type";s:40:"ID_MAFE_69f916b54b947775802a817788f74b52";s:30:"New Trigger saved successfully";s:40:"ID_MAFE_6a26f548831e6a8c26bfbbd9f6ec61e0";s:4:"Help";s:40:"ID_MAFE_6a3f2778916c9a66a69d93ebbebd3345";s:11:"Open Editor";s:40:"ID_MAFE_6a7e73161603d87b26a8eac49dab0a9c";s:5:"Hours";s:40:"ID_MAFE_6a99c575ab87f8c7d1ed1e52e7e349ce";s:11:"placeholder";s:40:"ID_MAFE_6adf97f83acf6453d4a6a4b1070f3754";s:4:"None";s:40:"ID_MAFE_6aeef5fece4bc801c9892670bf02117d";s:17:"Start Timer Event";s:40:"ID_MAFE_6b69ae94c0b0bb433fb14f52f2f623b2";s:17:"Inclusive Gateway";s:40:"ID_MAFE_6bc9a39dbeaa2c99c7d5d81c58a9b5fb";s:27:"Assignee saved successfully";s:40:"ID_MAFE_6be8bfc7078373aa92b3a862b5253e7e";s:15:"Mobile controls";s:40:"ID_MAFE_6c24f6923944d3f9d84bcf924661abff";s:21:"New variables created";s:40:"ID_MAFE_6c25e6a6da95b3d583c6ec4c3f82ed4d";s:6:"Weekly";s:40:"ID_MAFE_6cae1a8108be3aec1aa792644c69c190";s:20:"Information Required";s:40:"ID_MAFE_6cb85fb9933f1990eaa1dc7619c84233";s:10:"Data Store";s:40:"ID_MAFE_6d7215c4b3bc4716d026ac46c6d9ae64";s:3:"Apr";s:40:"ID_MAFE_6e51ca3efb50c3fa4e7eb7fb75cba556";s:15:"Message content";s:40:"ID_MAFE_6e554a6c35c9b142ea806751d85818fa";s:12:"Message Type";s:40:"ID_MAFE_6e599f7a2a9186d391be4537f105be98";s:6:"Fourth";s:40:"ID_MAFE_6e5f5bbf51336918feac69b89e96f6e7";s:9:"UPPERCASE";s:40:"ID_MAFE_6f7e4a2c4bf789e191bcd67e34aae75d";s:14:"Owner Password";s:40:"ID_MAFE_6f8522e0610541f1ef215a22ffa66ff6";s:6:"Monday";s:40:"ID_MAFE_6ff9dd0d34f65181173c1e4bc39939de";s:9:"Selection";s:40:"ID_MAFE_6fff14365ddc2513ed26053e4b7161d0";s:16:"Assignment Rules";s:40:"ID_MAFE_70225f5038f2c7cb69db4656162a6fbd";s:25:"File deleted successfully";s:40:"ID_MAFE_707914adb6ec5350ab99a6e8d5da050a";s:17:"show today button";s:40:"ID_MAFE_7079c72c21415131774625ba1d64f4b0";s:9:"Anonymous";s:40:"ID_MAFE_70d9be9b139893aa6c69b5e77e614311";s:7:"Confirm";s:40:"ID_MAFE_7106cb2df5011f1eddfd5c67b3c84f0f";s:27:"Variable saved successfully";s:40:"ID_MAFE_713aecbe2f5f5523ebccad6740dc1fc7";s:8:"DynaForm";s:40:"ID_MAFE_714a04bc58e64a19344df22801f2f5b2";s:11:"View groups";s:40:"ID_MAFE_714b68ca17408b57ef4b48b30f390dcd";s:9:"Pick Hour";s:40:"ID_MAFE_716de874a0d74f25c0aa8c444c3a7539";s:6:"Prefix";s:40:"ID_MAFE_716f6b30598ba30945d84485e61c1027";s:5:"close";s:40:"ID_MAFE_71707d31908dc87d64747c61247db5f3";s:77:"An unexpected error while deleting the DB Connection, please try again later.";s:40:"ID_MAFE_718bf2c47ea34a12a3c4cb559ba0fbd3";s:32:"Input Document edited correctly.";s:40:"ID_MAFE_719430f5290466e7920b07175af870de";s:146:"The process definition that you are trying to import contains BPMN elements that are not supported in ProcessMaker. Please try with other process.";s:40:"ID_MAFE_7208f9c293aca2d9a81fb9dc71229ee7";s:29:"Properties saved successfully";s:40:"ID_MAFE_72116971e25c9b2e7926c62a5bacb915";s:17:"Error Update File";s:40:"ID_MAFE_725255d7ccc0cf426c1da6abe0afe7e4";s:3:"SDV";s:40:"ID_MAFE_728055b9c636bd86e1848c06f82be906";s:85:"The process objects are used to add execution features to the current process design.";s:40:"ID_MAFE_72d6d7a1885885bb55a565fd1070581a";s:6:"Import";s:40:"ID_MAFE_7308cd3156257f5139f5a76d3cace070";s:72:"An unexpected error while assigning the trigger, please try again later.";s:40:"ID_MAFE_730b728761d083abb3b63e7435f34629";s:69:"The form cannot be saved, please wait until all the fields are loaded";s:40:"ID_MAFE_7351dffefed9ebab76b3bd34aa6f755e";s:15:"Output Document";s:40:"ID_MAFE_736fda6b62eaca111776a53611ef2c92";s:16:"Increment Minute";s:40:"ID_MAFE_73c146408e22128ca6a56f748ad0da66";s:167:"Unix TimestampX1360013296Unix Millisecond Timestampx1360013296123";s:40:"ID_MAFE_73cacd9554a835ad196092bf378f66c3";s:31:"array of [date, moment, string]";s:40:"ID_MAFE_73e27bc50aef21f6770190b3a2702123";s:24:"Error value: Day: 0 - 31";s:40:"ID_MAFE_7436f942d5ea836cb84f1bb2527d8286";s:5:"month";s:40:"ID_MAFE_7469a286259799e5b37e5db9296f00b3";s:3:"YES";s:40:"ID_MAFE_747d20a5df7b186bf5bbd0c7b079b0bc";s:56:"remove the files from the form or upload the files again";s:40:"ID_MAFE_75146ae072f64a82285802a05e9de9c5";s:54:"This form contains deprecated controls marked with the";s:40:"ID_MAFE_755c1cdb25ce0b28166932338fc860d8";s:44:"End Event: End the execution of the process.";s:40:"ID_MAFE_75906a4caccffa8417f46280958ca103";s:30:"Web Entry updated successfully";s:40:"ID_MAFE_75a7511c1d369ec0a4b82d76b1627a36";s:8:"col-span";s:40:"ID_MAFE_75aeb98e5241592ad6a6c2c4c78a16ef";s:5:"years";s:40:"ID_MAFE_75f470a662481c10dda96968bbeb6d62";s:14:"Export Process";s:40:"ID_MAFE_769cb50c95fd3a43c659aa73aba99e5b";s:6:"Hourly";s:40:"ID_MAFE_76d5c10546065f2b71f8d0bfd242ebf5";s:53:"Diverging Gateway must have an incoming sequence flow";s:40:"ID_MAFE_78463a384a5aa4fad5fa73e2f506ecfc";s:7:"English";s:40:"ID_MAFE_7851010fa7f90ebe0c2e62a772dc009a";s:86:"Intermediate Event: Used to define an event that happens in the middle of the process.";s:40:"ID_MAFE_7869eef58448eb45b15a15ff1913887f";s:11:"Sub-process";s:40:"ID_MAFE_786c4135070aa1910d2f4ac8b2253235";s:7:"Routing";s:40:"ID_MAFE_78805a221a988e79ef3f42d7c5bfd418";s:5:"image";s:40:"ID_MAFE_788287625aa640447c5d9fff50644915";s:19:"Insert a table name";s:40:"ID_MAFE_78972d78128699c39ce214e712bd9b03";s:22:"Related Input Document";s:40:"ID_MAFE_78ae6f0cd191d25147e252dc54768238";s:8:"Thursday";s:40:"ID_MAFE_78e981599281c16fe016b55b136edf5f";s:6:"Got it";s:40:"ID_MAFE_7916b6aa41d5ad862bfd15786f608ef9";s:16:"Add Routing Rule";s:40:"ID_MAFE_7917f0a4bc9e0d07acf8cad570e5f68f";s:20:"Dynaform Information";s:40:"ID_MAFE_7964c7a971166b4525713e1885ca4cc3";s:37:"
      Dynaforms: Create dynamic forms.";s:40:"ID_MAFE_796932652e81946789e875a9998ac1fb";s:23:"Case Tracker Properties";s:40:"ID_MAFE_796c163589f295373e171842f37265d5";s:9:"Wednesday";s:40:"ID_MAFE_79e3176fd19afed33afea47570b3ddde";s:47:"Task: Add to include an action in your process.";s:40:"ID_MAFE_79e6f4dd5b0c58b1357997d5f85b65bb";s:5:"TCPDF";s:40:"ID_MAFE_7a21a691b5d03d92a29b79bbeecf706e";s:14:"Custom actions";s:40:"ID_MAFE_7a48ae1b7387f8a8159c488fbd850021";s:3:"Doc";s:40:"ID_MAFE_7a7651c80ec69d157840d517bc263f97";s:20:"File name is invalid";s:40:"ID_MAFE_7a9e2a30e8e7b5f54f7590b1417a8573";s:14:"Black Box Pool";s:40:"ID_MAFE_7aed506b0364be3a144ccb63ceb7b704";s:44:"Pool: Place each process in a separate pool.";s:40:"ID_MAFE_7b7a4cc675a7dec4f33f0554209f1be9";s:14:"Black Box Pool";s:40:"ID_MAFE_7bf7a32fd5dfdd1bdbd08a2360b6c72f";s:11:"Supervisors";s:40:"ID_MAFE_7bfa30721c5e726ff17e3f972237a82c";s:6:"Engine";s:40:"ID_MAFE_7bfcadb5535fe8aad5032762b7bfe159";s:5:"After";s:40:"ID_MAFE_7c1f2a2d99328c41ac8c94a5871f2895";s:20:"- Select a trigger -";s:40:"ID_MAFE_7c3c9ae5b8a82a715f5e606256560190";s:17:"End Message Event";s:40:"ID_MAFE_7c9eed3b37ce19ac4a965a1e20b27b7b";s:23:"Exclusive (XOR) Gateway";s:40:"ID_MAFE_7cdf4ad90037202e551d5bd8ffa7c64b";s:15:"Create Variable";s:40:"ID_MAFE_7ce6b2286a5396e614b8484105d277e0";s:3:"Mar";s:40:"ID_MAFE_7cfa673ab5fa815bb71b9950b8085e7e";s:16:"Sub-Process name";s:40:"ID_MAFE_7d693ac1022a2b1da7faa568a9273367";s:26:"Create Database Connection";s:40:"ID_MAFE_7d73db163473796198dec30144f711e3";s:12:"Next Century";s:40:"ID_MAFE_7dce122004969d56ae2e0245cb754d35";s:4:"Edit";s:40:"ID_MAFE_7df96b18c230f90ada0a9e2307226338";s:9:"Templates";s:40:"ID_MAFE_7e696c3a9460470397eba473a2072210";s:13:"external libs";s:40:"ID_MAFE_7e823b37564da492ca1629b4732289a8";s:8:"November";s:40:"ID_MAFE_7e8ad464ec9fa062e514fd034e6ea7a1";s:47:"There are problems loading the process objects.";s:40:"ID_MAFE_7ee5b3669b4120f0b045c2d52a502fe6";s:7:"Wizzard";s:40:"ID_MAFE_7f05a430b7c47d90cae34c9bef42060b";s:68:"Do you want to clear? All your changes will be lost if you clear it.";s:40:"ID_MAFE_7fa67ad3c1eade92cef07ff53f6ed2f5";s:20:"Insert a description";s:40:"ID_MAFE_7fb55ed0b7a30342ba6da306428cae04";s:5:"First";s:40:"ID_MAFE_7fb9ebbfd610593e7fbe1c7067039ac5";s:18:"Invalid operation.";s:40:"ID_MAFE_7fdb996b58affc6fdabafed35efec939";s:13:"Task duration";s:40:"ID_MAFE_7fe21f3fc9c8ccd6a50eede1b7536ef2";s:45:"Are you sure you want to delete this element?";s:40:"ID_MAFE_80038ba1c7711ab8f120940b59e85dc2";s:25:"Insert a subject variable";s:40:"ID_MAFE_801ab24683a4a8c433c6eb40c48bcd9d";s:8:"Download";s:40:"ID_MAFE_80582834244e4d1f06860c1a18062667";s:135:"Day of YearDDD1 2 ... 364 365DDDo1st 2nd ... 364th 365th";s:40:"ID_MAFE_8061e4236e0f5d816ccfb3684a1e279c";s:63:"There are problems updating the Case Tracker, please try again.";s:40:"ID_MAFE_80896219739fe46ae6982d3ac855a5ad";s:45:"Please configure cron to wait for time event.";s:40:"ID_MAFE_80ffff123555bd5173345bc8f144edeb";s:15:"Clear selection";s:40:"ID_MAFE_812a48ba719daeda82e4da8e812d426c";s:10:"Custom URL";s:40:"ID_MAFE_813f078c7fbc03a222410f48f74a68c4";s:24:"Intermediate Email Event";s:40:"ID_MAFE_815b565aff7fbfe8db5eb2573677e9a4";s:46:"SubProcess must have an incoming sequence flow";s:40:"ID_MAFE_815dff01257e5ef182b25d4c1ef0a7a0";s:9:"Landscape";s:40:"ID_MAFE_8184d9b3e9184c68f8687e9a2adb764e";s:13:"Open the file";s:40:"ID_MAFE_81a5579a3eb984a82f9071e2e98e5839";s:37:"Do you want to delete this Key Value?";s:40:"ID_MAFE_81a7427163958378a4181ae66e8e2b0c";s:7:"Save as";s:40:"ID_MAFE_8203af436c88713cf6853998fb45e8df";s:14:"calendar weeks";s:40:"ID_MAFE_82331503174acbae012b2004f6431fa5";s:8:"December";s:40:"ID_MAFE_823a38edcd60271ed5106469ce7de36a";s:9:"End date:";s:40:"ID_MAFE_823e3d309f271d17abda0806debebd13";s:17:"Enable versioning";s:40:"ID_MAFE_825689fed4e8cd85dbc5beedf98feec0";s:13:"Database Name";s:40:"ID_MAFE_8265a4157a2febe0b6faa43345c61652";s:9:"Next Year";s:40:"ID_MAFE_8292553558a75e672bc62e5a84244c82";s:5:"Folio";s:40:"ID_MAFE_83482d97257d0242d1f259eb5d34a9f9";s:19:"Cyclical Assignment";s:40:"ID_MAFE_84ae11ae520a036da288ca8a0acc89b1";s:11:"New Trigger";s:40:"ID_MAFE_84cdc76cabf41bd7c961f6ab12f117d8";s:4:"year";s:40:"ID_MAFE_84f6ae383a4278397861eb8c783fe1d8";s:22:"Export Process Objects";s:40:"ID_MAFE_84ff23e034dfdf2b03ed32a46c01b3a1";s:8:"Triggers";s:40:"ID_MAFE_8512ae7d57b1396273f76fe6ed341a23";s:8:"language";s:40:"ID_MAFE_853ca16bda4f3d303e70e48db81c17c6";s:10:"Smartphone";s:40:"ID_MAFE_854f4a84f44dfa5ea4ad4b0bb953bc49";s:12:"Validate Now";s:40:"ID_MAFE_85a2bbe801286ff44a6c4b1a4a4e9bc9";s:13:"Select Decade";s:40:"ID_MAFE_85cc96b9ef52490be95df14539d47a39";s:46:"SubProcess must have an outgoing sequence flow";s:40:"ID_MAFE_86266ee937d97f812a8e57d22b62ee29";s:5:"reset";s:40:"ID_MAFE_8628cd75ef458409e7f6bfdc4835bf64";s:12:"" is invalid";s:40:"ID_MAFE_8650e375ee80b2277a84fc9b85375e36";s:2:"A9";s:40:"ID_MAFE_868e45e7bc9c1b6c723724f85f00defc";s:21:"Select Origin Process";s:40:"ID_MAFE_8691b6a6780d4bb3dd62a8376a54be64";s:62:"There are problems updating the Email Event, please try again.";s:40:"ID_MAFE_86a32f8032467f8a54055fc4d429f2e8";s:14:"Increment Hour";s:40:"ID_MAFE_86f5978d9b80124f509bdb71786e929e";s:7:"January";s:40:"ID_MAFE_86fd9a7abc9f357e7fa206b2d42ec5ba";s:16:"Destination Path";s:40:"ID_MAFE_8738321e65db027ee6476c0ab12d8cd5";s:15:"Store option in";s:40:"ID_MAFE_87557f11575c0ad78e4e28abedc13b6e";s:3:"End";s:40:"ID_MAFE_87b74ebf71923a7992adcc3bb0cad08e";s:13:"Email Message";s:40:"ID_MAFE_87d17f4624a514e81dc7c8e016a7405c";s:6:"Mobile";s:40:"ID_MAFE_881fedcef7e0cc05ab238d2564401150";s:12:"Day of month";s:40:"ID_MAFE_882e640f7952787473c72777f4e5fae7";s:9:"up & down";s:40:"ID_MAFE_88aa96c7e5cdcdd3f73efb61d77eda30";s:12:"display text";s:40:"ID_MAFE_88afc834597e983a83077522bb57d7a6";s:9:"Validator";s:40:"ID_MAFE_88ee153347bd5d42dcf24dec1f78080b";s:54:"Intermediate event must have an outgoing sequence flow";s:40:"ID_MAFE_896c55cc5e46fab38ce9f51ebf7bfcd3";s:4:"hour";s:40:"ID_MAFE_897356954c2cd3d41b221e3f24f99bba";s:3:"Key";s:40:"ID_MAFE_898f54db33f64c0a7ecc7507b9cc5744";s:37:"There are problems, please try again.";s:40:"ID_MAFE_8991f7d434ea8104741fe2c008c09f5a";s:40:"Database connection deleted successfully";s:40:"ID_MAFE_899607da7ac548d9a143b9a649d9da96";s:12:"Copy Trigger";s:40:"ID_MAFE_89d0fdd0f8b1b6f918815729a338cd50";s:12:"Select Month";s:40:"ID_MAFE_89d626523f83c2d1f8a5549a845dd6aa";s:47:"Start Event must have an outgoing sequence flow";s:40:"ID_MAFE_89d7b10cb4238977d2b523dfd9ea7745";s:4:"Loop";s:40:"ID_MAFE_89f7ce5690523e6fdb35f6117d9dc902";s:33:"Enable consolidate for this task.";s:40:"ID_MAFE_8a32f139d42c17d5ed5fe2c8ca02958f";s:11:"Data Object";s:40:"ID_MAFE_8a8cf97a6531f11d7e9adcf0f0d5ba12";s:15:"Digital/Printed";s:40:"ID_MAFE_8a8e57b1911b99b924191503017760d7";s:11:"Full Screen";s:40:"ID_MAFE_8ac0a5f008a929a85fe29e738a9cce1b";s:61:"Please configure cron to create cases in base to a condition.";s:40:"ID_MAFE_8b2930b0ef56a344685dc79ff4aa5cb0";s:52:"Start Event must not have any outgoing Message Flows";s:40:"ID_MAFE_8b419cf7127d60d5e8f5bf25de7b6b9c";s:112:"A valid variable starts with a letter or underscore, followed by any number of letters, numbers, or underscores.";s:40:"ID_MAFE_8b6aa397ec2c1da9f4ac5444b35e45ae";s:41:"Please configure script to send a signal.";s:40:"ID_MAFE_8b7051187b9191cdcdae6ed5a10e5adc";s:8:"Saturday";s:40:"ID_MAFE_8b74de4ff3921872e9fa720a55220c6c";s:27:"Script Task saved correctly";s:40:"ID_MAFE_8bf8854bebe108183caeb845c7676ae4";s:2:"of";s:40:"ID_MAFE_8bf8bd52a2df4f9292a3a9b7c469fada";s:161:"To learn more about regular expressions, see the wiki.

      ";s:40:"ID_MAFE_8c38e95ae34b84df395afebaff1ffb21";s:34:"Do you want to delete this option?";s:40:"ID_MAFE_8c73a98a300905900337f535531dfca6";s:5:"shape";s:40:"ID_MAFE_8c74ecee5f291eab7aef6f98e5cda411";s:25:"Supported Controls: grid.";s:40:"ID_MAFE_8c7dd922ad47494fc02c388e12c00eac";s:4:"file";s:40:"ID_MAFE_8c89757e46e215545fe3bdfe188436ac";s:11:"Insert User";s:40:"ID_MAFE_8ccde31b4c183541d3375ffba65f617d";s:12:"default date";s:40:"ID_MAFE_8d777f385d3dfec8815d20f7496026dc";s:4:"data";s:40:"ID_MAFE_8d8fcc1abd550c5f25dbfaa57d59cb67";s:2:"MB";s:40:"ID_MAFE_8df6976e000977e9757caa5d9ed7c1aa";s:13:"enabled dates";s:40:"ID_MAFE_8e30879d8055ec47caf714b934312110";s:26:"to activate autocompletion";s:40:"ID_MAFE_8e7cafd90aa2f61de2953d482bc2ed27";s:13:"extra formats";s:40:"ID_MAFE_8ebc5d5d6f945c2c7e6d8db6d339e6f0";s:29:"Variable deleted successfully";s:40:"ID_MAFE_8f0996dac68d535131ecd654a0345a75";s:18:"widget positioning";s:40:"ID_MAFE_8f45539f90c1409482f8222018541bb7";s:13:"Parallel Join";s:40:"ID_MAFE_8f45a2644508b5282f57fe129f62d19a";s:6:"modify";s:40:"ID_MAFE_8f497c1a3d15af9e0c215019f26b887d";s:5:"Delay";s:40:"ID_MAFE_8f7afecbc8fbc4cd0f50a57d1172482e";s:9:"COMPLETED";s:40:"ID_MAFE_8f9204c55a59d787851fc3af81abc23c";s:19:"Link to fill a form";s:40:"ID_MAFE_8f9bfe9d1345237cb3b2b205864da075";s:4:"User";s:40:"ID_MAFE_8fa7b05ab45935bf4833909578a3a3e5";s:10:"Table Name";s:40:"ID_MAFE_8fec38c19cc33a4d96868b2bfefbb933";s:13:"Set a timeout";s:40:"ID_MAFE_8ff922bbcd8ad41cdfc48d3c5163b2ab";s:8:"Calendar";s:40:"ID_MAFE_902b0d55fddef6f8d651fe1035b7d4bd";s:5:"Error";s:40:"ID_MAFE_9030e39f00132d583da4122532e509e9";s:7:"Monthly";s:40:"ID_MAFE_90589c47f06eb971d548591f23c285af";s:6:"Custom";s:40:"ID_MAFE_9060587edeb01a63e3d3edc959678d1e";s:6:"Before";s:40:"ID_MAFE_9119da1dd85e63663fb91ce63de56b09";s:58:"Start Event: The process always begins with a start event.";s:40:"ID_MAFE_912ce77b9eb2aa7567125d574283747c";s:35:"Assignment Rules saved successfully";s:40:"ID_MAFE_912f459b875e7f5f2a16c29700adc28e";s:20:"Available Users List";s:40:"ID_MAFE_91325d2839558dade6b5d7443822a536";s:18:"Available Elements";s:40:"ID_MAFE_9137b642b56c7affcc215d1f027b11d0";s:31:"Dynaform to show a case summary";s:40:"ID_MAFE_91412465ea9169dfd901dd5e7c96dd99";s:6:"Upload";s:40:"ID_MAFE_916a154243f0a90150198e6fba099305";s:7:"edit...";s:40:"ID_MAFE_919510c4c6308860e16885131e98a51c";s:112:"Ignore this warning if your flow is planned to reach to this gateway by only one of the incoming flows at a time";s:40:"ID_MAFE_91c7645ad0ba98666ab1648102f986e7";s:8:"min date";s:40:"ID_MAFE_920337d67a019f218e8ccc1cc90a7e04";s:17:"Exclusive Gateway";s:40:"ID_MAFE_920a87dfc39e65161a1edb118e9c728c";s:11:"Delegations";s:40:"ID_MAFE_920f86f9d4a86d27b2776d84329a97ce";s:29:"Dynaform deleted successfully";s:40:"ID_MAFE_9239185714c402746aa3a17ad583fdd4";s:10:"grid store";s:40:"ID_MAFE_925844a30a1dbbba5e086b96c9dda97b";s:15:"Step Properties";s:40:"ID_MAFE_926dec9494209cb088b4962509df1a91";s:7:"Gateway";s:40:"ID_MAFE_92703f330e823886bdf4891e0c1a3a0f";s:11:"Redo Action";s:40:"ID_MAFE_92a690d939a9dd0ba183db27ca8a3725";s:17:"Process Variables";s:40:"ID_MAFE_92b09c7c48c520c3c55e497875da437c";s:5:"Right";s:40:"ID_MAFE_92f1b1481fa6ff46c4a3caae78354dab";s:9:"User Name";s:40:"ID_MAFE_9303c9bd4f8178680dc382adbfcd62af";s:23:"This field is required.";s:40:"ID_MAFE_9313566fe19aca293daefe4ce37942bf";s:4:"Skin";s:40:"ID_MAFE_93c3629ce90c4740f1674bd71f0b79cc";s:12:"Ad Hoc Users";s:40:"ID_MAFE_93cba07454f06a4a960172bbd6e2a435";s:3:"Yes";s:40:"ID_MAFE_93da65a9fd0004d9477aeac024e08e15";s:7:"options";s:40:"ID_MAFE_9405c3aff9112c3c60d03b94792877dc";s:5:"Route";s:40:"ID_MAFE_9435c91d556796c1386cb4005aa9634b";s:61:"It was not possible to establish a connection with the server";s:40:"ID_MAFE_944b95760dc358a122162ce63974488a";s:97:"Enter a regular expression which is a search pattern which matches the text entered in the field.";s:40:"ID_MAFE_945d5e233cf7d6240f6b783b36a374ff";s:4:"Left";s:40:"ID_MAFE_94c0e9b311d45b04fc37b41903c6debc";s:11:"Data Output";s:40:"ID_MAFE_94db17a1397178b4a6f6757c2a4d0938";s:59:"There are problems creating the dynaform, please try again.";s:40:"ID_MAFE_94e411da9586524fc73e45bb22776378";s:17:"Dynaform Template";s:40:"ID_MAFE_951d4dff3c22e9fcc4a2707009f45ea8";s:9:"thumbnail";s:40:"ID_MAFE_9530d977022e1fce705fc0f93af0a9b7";s:10:"delete row";s:40:"ID_MAFE_9571a194f1c1b9adf3a4d10736eabfb2";s:35:"Do you want to delete this Element?";s:40:"ID_MAFE_957903d24fd400242e5732414bcfe53a";s:12:"Receive Task";s:40:"ID_MAFE_95c44d967dca9312e445ee18f6e610c6";s:23:"Routing Screen Template";s:40:"ID_MAFE_960b44c579bc2f6818d2daaf9e4c16f0";s:6:"Normal";s:40:"ID_MAFE_962b90039a542a29cedd51d87a9f28a1";s:11:"Html Editor";s:40:"ID_MAFE_9639e32cab248434a17ab32237cb3b71";s:5:"Apply";s:40:"ID_MAFE_96baacdc276036c2b8fb65264750a3b4";s:12:"Choose Files";s:40:"ID_MAFE_9766aede44e9d1b176b4fbb0367b9853";s:61:"@@ string, @# float, @% integer, @= original type, @& object.";s:40:"ID_MAFE_9778840a0100cb30c982876741b0b5a2";s:3:"SQL";s:40:"ID_MAFE_97d8f56bf41502f60ca6fdd5d5da8edc";s:11:"Definitions";s:40:"ID_MAFE_97e7c9a7d06eac006a28bf05467fcc8b";s:4:"Link";s:40:"ID_MAFE_97f09283ddeadda4e80f20d9608cd8dd";s:67:"An unexpected error while editing the step, please try again later.";s:40:"ID_MAFE_98369609669478919c74c916440e9978";s:6:"Margin";s:40:"ID_MAFE_98386bbf2a867253744d3c47171b99dc";s:128:"ww01 02 ... 52 53Week of Year (ISO)W1 2 ... 52 53";s:40:"ID_MAFE_98402eecfbcefc336954458a01752131";s:8:"Parallel";s:40:"ID_MAFE_98611a4ed602dfc4087f66ce54c1e9a8";s:44:"Activity must have an incoming sequence flow";s:40:"ID_MAFE_990fcd0ba3c5c9e322c930c83a93be48";s:7:"rounded";s:40:"ID_MAFE_9925fd3c9d09e862da22c5d6912420d9";s:45:"End event must have an incoming sequence flow";s:40:"ID_MAFE_992d1d47106d77216cd6c3a15415dbea";s:13:"Screenshot640";s:40:"ID_MAFE_99493c187e709deb387b6ee3ec6c8179";s:56:"The input document is required, please select the value.";s:40:"ID_MAFE_99567b953da8beace4e3e7296bf1fc23";s:11:"Assign type";s:40:"ID_MAFE_99b2439e63f73ad515f7ab2447a80673";s:6:"PAUSED";s:40:"ID_MAFE_99c293babcada00063dd86b4f53bccd7";s:22:"Variable sent in email";s:40:"ID_MAFE_9a0364b9e99bb480dd25e1f0284c8555";s:7:"content";s:40:"ID_MAFE_9aa1b03934893d7134a660af4204f2a9";s:6:"Server";s:40:"ID_MAFE_9ac255aa1787084131704557a026ffce";s:11:"a cost here";s:40:"ID_MAFE_9afde9da9d0df4286959bae99d3a7e4b";s:58:"Clicking the "Clear" button will set the calendar to null.";s:40:"ID_MAFE_9b07c1269fe3afd3f2bbae338f93ce07";s:7:"Printed";s:40:"ID_MAFE_9b25c6480dd99fc5c1712cadefa756e7";s:110:"do0th 1st ... 5th 6thddSu Mo ... Fr Sa";s:40:"ID_MAFE_9b377ab6489b9495395f3fc4f4a03fb4";s:16:"Initial Dynaform";s:40:"ID_MAFE_9b6ddeba5b33e577c07c35d8505c6072";s:6:"circle";s:40:"ID_MAFE_9bea7040abc67529a463697e233bcbe9";s:90:"The colspan change is going to remove columns and content fields. Do you want to continue?";s:40:"ID_MAFE_9bef0fa08d3d079a5e1a6134b35fa3f0";s:14:"End Event Type";s:40:"ID_MAFE_9bf88dcc0548bfdc5028159eecdc648c";s:28:"Control Deprecated. Refer to";s:40:"ID_MAFE_9c197a0cff0c1e0b4410227c537b87ca";s:16:"a unit cost here";s:40:"ID_MAFE_9c8a77ee3bca206e3dfab19d94eb5127";s:10:"Working...";s:40:"ID_MAFE_9cd2a4862f826886105d87195ee6998c";s:15:"Input Documents";s:40:"ID_MAFE_9cd75a090ed78909e6b9f4311a31e46f";s:18:"Intermediate Event";s:40:"ID_MAFE_9d1a0949c39e66a0cd65240bc0ac9177";s:6:"Sunday";s:40:"ID_MAFE_9d3afea73e90192d96dda8d38c87a4fe";s:11:"Conditional";s:40:"ID_MAFE_9dcfba52eee7cb299acdeb584bfc76bd";s:15:"End Email Event";s:40:"ID_MAFE_9dd5fda31e43186448cb9b888b206abf";s:9:"Task Type";s:40:"ID_MAFE_9de5dffddfd3a91bc11389e926801d35";s:9:"Time unit";s:40:"ID_MAFE_9e064ba6ba566c8f1cf0c1b0bee46b1d";s:21:"- Select a Template -";s:40:"ID_MAFE_9e13b69d1d2da927102acaaaf7154a37";s:10:"Javascript";s:40:"ID_MAFE_9e2941b3c81256fac10392aaca4ccfde";s:9:"Condition";s:40:"ID_MAFE_9e794f2c08707053dd2bb22a3b4d8888";s:36:"Output Document deleted successfully";s:40:"ID_MAFE_9ed8ac8a23206c93a3602884788be7fa";s:14:"Previous Month";s:40:"ID_MAFE_9f1658da12738ea1b34318bd8258181b";s:38:"
        ";s:40:"ID_MAFE_9f22a77c63bef412675c4fc45e3ea11b";s:127:"QuarterQ1 2 3 4Day of MonthD1 2 ... 30 31";s:40:"ID_MAFE_9fc2d28c05ed9eb1d75ba4465abf15a9";s:10:"Properties";s:40:"ID_MAFE_9fced129522f128b2445a41fb0b6ef9f";s:8:"checkbox";s:40:"ID_MAFE_a036226d97d1d0d725d494a1431f322c";s:16:"Receiver account";s:40:"ID_MAFE_a05ac4341235111bd2cba5c3c105ba81";s:9:"Rich Text";s:40:"ID_MAFE_a0bfb8e59e6c13fc8d990781f77694fe";s:8:"Continue";s:40:"ID_MAFE_a0faef0851b4294c06f2b94bb1cb2044";s:7:"Integer";s:40:"ID_MAFE_a10a9bcd450087de1ce1f80b35f44883";s:5:"Legal";s:40:"ID_MAFE_a11e743927967a854e7f54cd9f621e9c";s:133:"Z-07:00 -06:00 ... +06:00 +07:00ZZ-0700 -0600 ... +0600 +0700";s:40:"ID_MAFE_a1af5f0718bfae275ce162362d0e43c5";s:8:"Datetime";s:40:"ID_MAFE_a1d5cbaf61c018e7d8456c66df0332c3";s:28:"An integer or decimal number";s:40:"ID_MAFE_a1fa27779242b4902f7ae3bdd5c6d508";s:4:"Type";s:40:"ID_MAFE_a22ab4f79904355ae25dfa5afff1dc3b";s:35:"Select the mode of the control:
        ";s:40:"ID_MAFE_a22b8023226bc5caac2e1dd0d5a15c5b";s:22:"The maximum length are";s:40:"ID_MAFE_a2609d846e9af22fcc3412a8c99510a5";s:17:"show clear button";s:40:"ID_MAFE_a274f4d4670213a9045ce258c6c56b80";s:13:"Notifications";s:40:"ID_MAFE_a2866cd6efaa65c92278d4771a9eaec7";s:3:"Jul";s:40:"ID_MAFE_a32a9f28ab30c6d2592043e874163a63";s:31:"Permission deleted successfully";s:40:"ID_MAFE_a3365da89800c556fc769d0b544c3f72";s:12:"Default Flow";s:40:"ID_MAFE_a359eaa62de4166c4de8c9699cd42870";s:19:"Activity Properties";s:40:"ID_MAFE_a37ede293936e29279ed543129451ec3";s:6:"Groups";s:40:"ID_MAFE_a398fb77df76e6153df57cd65fd0a7c5";s:5:"radio";s:40:"ID_MAFE_a3abcefb106274416cde9154cfed6a8c";s:40:"Do you want to delete this Message Type?";s:40:"ID_MAFE_a3d9d08ecae92ab5b2aa76e761935405";s:37:"Use a field to generate actions links";s:40:"ID_MAFE_a3e91bd787d916fe4980f4e1892b05f9";s:26:"Reset to original position";s:40:"ID_MAFE_a466673aa0487e479c2603e855eb431c";s:174:"For a better design we recommend using values above 3.
        If you need more info please visit Bootstrap grid system.";s:40:"ID_MAFE_a49bfc71497c26acd31d67999e9767ee";s:25:"File updated successfully";s:40:"ID_MAFE_a4ecfc70574394990cf17bd83df499f7";s:5:"Event";s:40:"ID_MAFE_a4ffdcf0dc1f31b9acaf295d75b51d00";s:3:"Top";s:40:"ID_MAFE_a5048ef2c0f6cc31473263718782029b";s:14:"Select a Skin.";s:40:"ID_MAFE_a5a299eb1993f98a6b58401ee62b66a0";s:38:"Do you want to delete this permission?";s:40:"ID_MAFE_a5b72d5e03d21409fcd79bf3f8715f6d";s:40:"setOrientation(): parameter is not valid";s:40:"ID_MAFE_a5ca0b5894324f8bb54bb9fffad29d1e";s:5:"audio";s:40:"ID_MAFE_a5d4e481e66121a71151435c2c0e68f6";s:16:"Decrement Second";s:40:"ID_MAFE_a603905470e2a5b8c13e96b579ef0dba";s:5:"Debug";s:40:"ID_MAFE_a60852f204ed8028c1c58808b746d115";s:2:"Ok";s:40:"ID_MAFE_a60cf2ece5b3e294aa794916477ac6a8";s:37:"Notify the assigned user to this task";s:40:"ID_MAFE_a6122a65eaa676f700ae68d393054a37";s:5:"Start";s:40:"ID_MAFE_a6478e58690248169052e55c467d1a76";s:15:"force selection";s:40:"ID_MAFE_a6527af0da63377b07a3effae750a485";s:30:"
        Triggers: Create scripts.";s:40:"ID_MAFE_a6c0580005d36b8ad4194b3b31cdb9ee";s:35:"Input Document deleted successfully";s:40:"ID_MAFE_a6ca4597da3795aed1b1fa92f0e8d9a6";s:15:"Previous Decade";s:40:"ID_MAFE_a6ce2340cef46384d71cb790606e9c67";s:17:"text transform to";s:40:"ID_MAFE_a6f7bd5f5255325b9cf287402c6782dd";s:112:"Do1st 2nd ... 30th 31stDD01 02 ... 30 31";s:40:"ID_MAFE_a76d4ef5f3f6a672bbfab2865563e530";s:4:"Time";s:40:"ID_MAFE_a79a682f66f0f9b8aa2ca16816883717";s:6:"Encode";s:40:"ID_MAFE_a7dd12b1dab17d25467b0b0a4c8d4a92";s:4:"show";s:40:"ID_MAFE_a7e82daa7280af25afbaa076ac16eb1e";s:10:"Sequential";s:40:"ID_MAFE_a7f138aa0ee8e9b7d82f49ada1bd22bf";s:10:"datepicker";s:40:"ID_MAFE_a81259cef8e959c624df1d456e5d3297";s:6:"static";s:40:"ID_MAFE_a82be0f551b8708bc08eb33cd9ded0cf";s:11:"Information";s:40:"ID_MAFE_a83ffccdc8a5c8ee14e4a51f403ccbe3";s:49:"Redirect to ProcessMaker predefined response page";s:40:"ID_MAFE_a85b67e3a588039d4954c17730b41ed4";s:123:"Fractional SecondS0 1 ... 8 9SS0 1 ... 98 99";s:40:"ID_MAFE_a88f05b6c963e145a45b58c47cd42a41";s:4:"hide";s:40:"ID_MAFE_a8dd8f3a191bf5bd3fa7b267b6eb0e3b";s:11:"Save & Open";s:40:"ID_MAFE_a959d712144264deebce99d1cb9183ed";s:14:"Insert a title";s:40:"ID_MAFE_a95f0dd593f8e3eb09960c0fbfe9e133";s:28:"Trigger removed successfully";s:40:"ID_MAFE_a9ef06d9637b09f171953304372d9bd8";s:53:"Converging Gateway must have a outgoing sequence flow";s:40:"ID_MAFE_a9f2bfaa472c55e0975d15c0ba59d24d";s:22:"Before Output Document";s:40:"ID_MAFE_aa0f2fff4f672e8106d8490171512bbd";s:104:"The form was recovered from a previous version {0}. Possible missing controls are going to be recreated.";s:40:"ID_MAFE_ab3cc3868af33a9eb61a93bd0adec2a0";s:12:"Collapse all";s:40:"ID_MAFE_ab57fd0432e25d5b3013133a1c910d56";s:2:"KB";s:40:"ID_MAFE_ab584372a831dfbe0761ddf888c67d5c";s:97:"Those controls will no longer be supported and probably will not be available in future versions.";s:40:"ID_MAFE_aba9ccd2c1467c4108a6dc534dd2b355";s:29:"Assigned Elements (Drop here)";s:40:"ID_MAFE_abbd64f40c34c537d3a571af068fce29";s:11:"Orientation";s:40:"ID_MAFE_ac080d8699580b3079575335cf61e9f5";s:14:"Text to search";s:40:"ID_MAFE_ac1b41823ac8a2ff1d66e2874557d268";s:19:"Create Message Type";s:40:"ID_MAFE_ac201fd270c3b96beab24f2829780ab2";s:9:"signature";s:40:"ID_MAFE_ac48a7776ff0e8dc13b0a1300fc0a75f";s:22:"Must connect to a Task";s:40:"ID_MAFE_ac5c74b64b4b8352ef2f181affb5ac2a";s:3:"sql";s:40:"ID_MAFE_ac67ede5a84eb5a1add7ff4440e9a485";s:8:"required";s:40:"ID_MAFE_ac68b62abfd6a9fe26e8ac4236c8ce0c";s:5:"forms";s:40:"ID_MAFE_ad7bdeed2bf3d72e17abe1a8d0508958";s:34:"Drag & Drop a User or a Group here";s:40:"ID_MAFE_ad9673dd7e15e17e0c045d02a48433c2";s:90:"The value introduced doesn\'t have the correct format with a vallid prefix (@@, @#, @=, @&)";s:40:"ID_MAFE_ad973c252653a47144b79403cfb0668b";s:8:"dropdown";s:40:"ID_MAFE_add097eaed8dfb3a5ca64ac7246ce50e";s:61:"Please select the control you want to use with your variable.";s:40:"ID_MAFE_adf9f7f231cca8f669de9ebec73920c8";s:25:"Error value: Hour: 0 - 23";s:40:"ID_MAFE_aed366133afd62b42069e50a58958f11";s:57:"Enter a title displayed on web entry window (if applies).";s:40:"ID_MAFE_aeee5e5818e4bb3fea8fc30d163b0e93";s:23:"Participation required?";s:40:"ID_MAFE_af1fde20506ab96ce731a0704492cdfb";s:105:"The amount of time entered is not valid. Please fill in at least one of the fields (day, hour, or minute)";s:40:"ID_MAFE_b021df6aac4654c454f46c77646e745f";s:5:"Label";s:40:"ID_MAFE_b068931cc450442b63f5b3d276ea4297";s:4:"name";s:40:"ID_MAFE_b086843368d1c92d0a86cbee76b20b6f";s:8:"Evaluate";s:40:"ID_MAFE_b0f069cf5ce65fef0eaf2967dff08867";s:12:"column width";s:40:"ID_MAFE_b1570e5689ffa6f3055426ba877cc4fa";s:112:"Mo1st 2nd ... 11th 12thMM01 02 ... 11 12";s:40:"ID_MAFE_b1897515d548a960afe49ecf66a29021";s:7:"Average";s:40:"ID_MAFE_b1c94ca2fbc3e78fc30069c8d0f01680";s:3:"All";s:40:"ID_MAFE_b1dfe4beb06060e1b96cdf51e446f762";s:7:"add row";s:40:"ID_MAFE_b1f802924e8ba557524f0298a65dc345";s:29:"Permission saved successfully";s:40:"ID_MAFE_b1fcd78a4983c63c73972229b16cb7a6";s:14:"print dynaform";s:40:"ID_MAFE_b206a1b4ea1097761f78e8876f6da779";s:8:"External";s:40:"ID_MAFE_b243a6cb94ba1c81a0caa579227ab48c";s:16:"Messages History";s:40:"ID_MAFE_b292e070d38cedac7309b0635d1edbfe";s:60:"There are problems Edited the Email Event, please try again.";s:40:"ID_MAFE_b32493effa41a17220f8a0a7affaa8d9";s:29:"Day of the month (example: 1)";s:40:"ID_MAFE_b326b5062b2f0e69046810717534cb09";s:4:"true";s:40:"ID_MAFE_b33f61ccf2251cae904b8effbd7f57f0";s:24:"https://example.com:8080";s:40:"ID_MAFE_b39dad036539dc7a45743536e3f8d8af";s:22:"initial selection date";s:40:"ID_MAFE_b4263bcd21beffde1fc98b3dd88f86bd";s:20:"Trigger is assigned.";s:40:"ID_MAFE_b4c7ae206140c5179619b952c3b672ef";s:35:"Invalid value for the integer field";s:40:"ID_MAFE_b4e7d2116bb1534c687d16bdc104ddfe";s:60:"Register a Case Note when the recipient submits the Response";s:40:"ID_MAFE_b4fab4396dba8d97b190eb5f4c5dc76f";s:37:"Do you want to remove the step \'{0}\'?";s:40:"ID_MAFE_b52eb32fc15ea406ee6bb271983b5939";s:13:"Vertical Text";s:40:"ID_MAFE_b55a7dbee5118fdf297492f8fb6e8d4a";s:15:"Execute Trigger";s:40:"ID_MAFE_b55e509c697e4cca0e1d160a7806698f";s:4:"Hour";s:40:"ID_MAFE_b57ed7a0b4f939d0c048882570336e3a";s:12:"Intermediate";s:40:"ID_MAFE_b582209588fc582d8cd4ce26ad1d87ec";s:70:"Do you want to import? All your changes will be lost if you import it.";s:40:"ID_MAFE_b59516b2b00f4cd096cd07ee67653aeb";s:21:"Self Service Evaluate";s:40:"ID_MAFE_b595a13a031f4551ad8b5400ffb617b7";s:25:"Error saving the process.";s:40:"ID_MAFE_b59a471e6943b33e32cc2482ec24fb12";s:114:"HourH0 1 ... 22 23HH00 01 ... 22 23";s:40:"ID_MAFE_b5a7adde1af5c87d7fd797b6245c2a39";s:11:"Description";s:40:"ID_MAFE_b5ceb80c90c6b834060fcd7e0d2c0c28";s:7:"subform";s:40:"ID_MAFE_b5d909fa36b2d67d91e6607c7f23cd92";s:26:"\'default\', \'top\', \'bottom\'";s:40:"ID_MAFE_b6240f93e977cf70300ffa6b5bff79f9";s:17:"Perform this task";s:40:"ID_MAFE_b6660bb18f1a418f7a7de6d82c5e96e4";s:30:"Insert a variable with options";s:40:"ID_MAFE_b6ec7abeb6ae29cc35a4b47475e12afe";s:7:"Process";s:40:"ID_MAFE_b718adec73e04ce3ec720dd11a06a308";s:2:"ID";s:40:"ID_MAFE_b71c644de3981875ca5fc9fdfffd55bc";s:47:"Is not possible create the element in that area";s:40:"ID_MAFE_b728212c8bd0b2dbfd34b9d18e62504f";s:68:"Do you want to close? All your changes will be lost if you close it.";s:40:"ID_MAFE_b74a43dbb36287ea86eb5b0c7b86e8e8";s:10:"Evaluation";s:40:"ID_MAFE_b776b96aded5145322e09111013ef8c5";s:23:"Invalid connection type";s:40:"ID_MAFE_b77bbd177ec1e4d71a0fe96d3d4e8b39";s:10:"Data Input";s:40:"ID_MAFE_b78a3223503896721cca1303f776159b";s:5:"Title";s:40:"ID_MAFE_b79a5b8ee43aa9dc939723becd94a8c0";s:28:"Please enter a numeric value";s:40:"ID_MAFE_b7c2aaa55124be654f3f09361d6e0f62";s:16:"Decrement Minute";s:40:"ID_MAFE_b7de7e4247d4ab279ef031b7a44c201d";s:8:"End date";s:40:"ID_MAFE_b7f6fdbd84a1e6b7e2b8ef9400c93ff3";s:62:"There are problems updating the Start Timer, please try again.";s:40:"ID_MAFE_b80bb7740288fda1f201890375a60c8f";s:2:"id";s:40:"ID_MAFE_b84b068f1f3f6b66583314870e2818c4";s:66:"There are problems getting the output documents, please try again.";s:40:"ID_MAFE_b86f4a68d98e2e1b9ed38ec3d850b02a";s:28:"Save your changes and exit ?";s:40:"ID_MAFE_b875db6ce4bf99e5abfb6d5488b1d80e";s:6:"Webbot";s:40:"ID_MAFE_b8afa4e8d5bb1dca8379fcfcee2d6480";s:59:"
      • View: Allow user to only view the control\'s value.
      • ";s:40:"ID_MAFE_b9925a331df6b1464182bdd6cbb2807c";s:202:"SSS0 1 ... 998 999Timezonez or zzEST CST ... MST PST
        Note: as of 1.6.0, the z/zz format tokens have been deprecated.";s:40:"ID_MAFE_b9cf99bfe1ed82c4a117449ed85680db";s:62:"There are problems saved the OutputDocument, please try again.";s:40:"ID_MAFE_b9f5c797ebbf55adccdd8539a65a0241";s:8:"Disabled";s:40:"ID_MAFE_baf91b987e7003f016a96187c4aea54d";s:62:"Please add option and click in cell for editing the cell value";s:40:"ID_MAFE_bafd7322c6e97d25b6299b5d6fe8920b";s:2:"No";s:40:"ID_MAFE_bb3775bdd3504d816fafe7daaa3643e0";s:147:"Day of Week (Locale)e0 1 ... 5 6Day of Week (ISO)E1 2 ... 6 7";s:40:"ID_MAFE_bb3c8227885fe5d13241a9f7e5f06397";s:60:"
        Output documents: Generate documents with process data.";s:40:"ID_MAFE_bb7476567f5e12e60b01436dad77a533";s:11:"is invalid.";s:40:"ID_MAFE_bbb13df048343bec1b7a2a92db9e861a";s:7:"Show ID";s:40:"ID_MAFE_bbbabdbe1b262f75d99d62880b953be1";s:4:"Role";s:40:"ID_MAFE_bbc0b13be5c0344b98b95223b813615d";s:19:"Start Message Event";s:40:"ID_MAFE_bbf19b586e3b5fb519e07cff499c9d9e";s:27:"Route case when back online";s:40:"ID_MAFE_bd16f59e931cb60f975d902d9a3b6cf0";s:116:"Seconds0 1 ... 58 59ss00 01 ... 58 59";s:40:"ID_MAFE_bd21190449b7e88db48fa0f580a8f666";s:5:"icons";s:40:"ID_MAFE_be1a57f7e1cfe44284e71c5175874967";s:5:"Event";s:40:"ID_MAFE_be523bdcc111d8113eb54f747d89d4d7";s:2:"A7";s:40:"ID_MAFE_bebfb2a099450ef06ded421e59c888b2";s:12:"Format (CSS)";s:40:"ID_MAFE_bec3c2ccfb01e007c2d5282b01766fe1";s:18:"Trigger to execute";s:40:"ID_MAFE_bf207aee24e634019ce40f4bc04b7262";s:16:"Insert a message";s:40:"ID_MAFE_bf8252265e26d92c011456899a2d522e";s:35:"At least one option must be filled.";s:40:"ID_MAFE_bfdc20040cc51551fadc0dabe517af06";s:35:"Self Service Value Based Assignment";s:40:"ID_MAFE_bfe379052f3914db06f3994651836d47";s:15:"Edit Properties";s:40:"ID_MAFE_c028a05a817ab315a9784fa1f0d815dd";s:19:"Parallel Assignment";s:40:"ID_MAFE_c0723cf0be9c7e3b99fcce0d8e894987";s:10:"working...";s:40:"ID_MAFE_c0b06c68c75e0313cac38c4cc8a64d50";s:23:"Generate Web Entry Page";s:40:"ID_MAFE_c13fa34b370a32d2936226f53ce86875";s:13:"Process Users";s:40:"ID_MAFE_c1c425268e68385d1ab5074c17a94f14";s:8:"function";s:40:"ID_MAFE_c1dbca99810306ad4278271382056e6b";s:61:"This action will delete all options. Do you want to continue?";s:40:"ID_MAFE_c22cf8376b1893dcfcef0649fe1a7d87";s:6:"Second";s:40:"ID_MAFE_c2f3f489a00553e7a01d369c103c7251";s:2:"NO";s:40:"ID_MAFE_c312fca2f486deefd552a41ccc75bfab";s:35:"Output Document edited successfully";s:40:"ID_MAFE_c336025d9ce830a12c4c3668febc2983";s:25:"Trigger updated correctly";s:40:"ID_MAFE_c33b138a163847cdb6caeeb7c9a126b4";s:6:"Friday";s:40:"ID_MAFE_c360a6b5c3b1b36a8a5a13737cfda21c";s:18:"Message Field Name";s:40:"ID_MAFE_c3ff20c4d95f758bb6e0e5dcfda8ad4f";s:33:"Invalid value for the float field";s:40:"ID_MAFE_c40b29699c408c2934c6b87e776965db";s:52:"There is already a connection between these elements";s:40:"ID_MAFE_c41a31890959544c6523af684561abe5";s:6:"Target";s:40:"ID_MAFE_c4379b8aabc3e9403dd1076f8a3864b0";s:68:"

        Please select the control you want to use with your variable.

        ";s:40:"ID_MAFE_c44e15eb538fed543cc4b76599859b09";s:28:"Every time scheduled by cron";s:40:"ID_MAFE_c499a5f4b3762b6b464ede4a8055e121";s:25:"Supported Controls: file.";s:40:"ID_MAFE_c4cdd5e672b274b476f4760a304445ba";s:163:"The column sizes are defined with integer numbers separated by spaces. Any combination of column sizes can be defined but all the columns sizes should add 12.
        ";s:40:"ID_MAFE_c50c7d354b9bcf097722ffbce38990a4";s:8:"stepping";s:40:"ID_MAFE_c512b685438f41daa7386329a3b8f8d3";s:5:"Daily";s:40:"ID_MAFE_c53385d51221bcb27c5f37de31043c24";s:11:"No Category";s:40:"ID_MAFE_c5bcf625cbb751aba886be634ef4ef47";s:35:"Invalid Connection between elements";s:40:"ID_MAFE_c5d84b6c19cb058b7b5471b30e926823";s:62:"Invalid operation: Delete message flow before converting it to";s:40:"ID_MAFE_c5e54f7804fa817826dfa5ecc13cd92f";s:14:"Last User Name";s:40:"ID_MAFE_c5f93fd19468533ea5c9114801c2958d";s:35:"Input Document updated successfully";s:40:"ID_MAFE_c61404957758dfda283709e89376ab3e";s:6:"layout";s:40:"ID_MAFE_c61dee25881b22ead46aca2bc70f0f9d";s:25:"Assigned supervisors list";s:40:"ID_MAFE_c6589f5236c0c434d0c63dc5f9a856f2";s:8:"Balanced";s:40:"ID_MAFE_c669a07db307f61a0e1c8e8cc030da6a";s:69:"An unexpected error while assigning the step, please try again later.";s:40:"ID_MAFE_c6baf5d413034c4bbf37bdc231655e10";s:94:"The lane can be dropped only over an empty pool. Please empty the pool before dropping a lane.";s:40:"ID_MAFE_c6bdf6f65f3845da9085e9ae5790b494";s:2:"A2";s:40:"ID_MAFE_c6e76812e5ffe1d7adb0117469239f84";s:55:"Lane: Used to divide a process into different sections.";s:40:"ID_MAFE_c6f2f93133905f75da4b02ccc19ab66a";s:2:"A5";s:40:"ID_MAFE_c72d6772f171179fe635af3b5e544434";s:10:"Legal Copy";s:40:"ID_MAFE_c72d7ee8a23bae4c80e8cc4521f89f7a";s:14:"Steps for task";s:40:"ID_MAFE_c753162c88467b5e75884bb765d7a682";s:14:"Multiple Steps";s:40:"ID_MAFE_c75f7811d70d17dbcd88e9d03752cbed";s:14:"Authentication";s:40:"ID_MAFE_c7892ebbb139886662c6f2fc8c450710";s:7:"Subject";s:40:"ID_MAFE_c78a4a6f9ede9c76f26b0cebed36189b";s:19:"OutPut Document (s)";s:40:"ID_MAFE_c793116b0fc9df6d8761028f4adbe90e";s:39:"Execute a trigger when a case is opened";s:40:"ID_MAFE_c79bdf421714f5087fc34b7c538b6807";s:6:"submit";s:40:"ID_MAFE_c7f8f8652db6d74e086d297129179d2f";s:36:"Task/sub-process name can\'t be empty";s:40:"ID_MAFE_c811eda5d60b171dda58b7dcd2df1652";s:33:"Enable this task for offline use:";s:40:"ID_MAFE_c84b883e444f5a6104a94e46190b1051";s:19:"Edit Input Document";s:40:"ID_MAFE_c86d6b2734026553fcc1826b1813e662";s:23:"string or jQuery object";s:40:"ID_MAFE_c88ad0157bfa285e16c222e651c6d482";s:39:"Execute a trigger when a case is paused";s:40:"ID_MAFE_c942e2c249d4a7f9e2f4bddd02ef87e7";s:66:"Default: false
        Show the "Clear" button in the icon toolbar.
        ";s:40:"ID_MAFE_c97cca23ba8eebfbe951796f03915107";s:20:"Edit Output Document";s:40:"ID_MAFE_c9838204ecea4595edd1ef4a76b66846";s:14:"array variable";s:40:"ID_MAFE_c991b0dfe2947768cfc57a1acb65d721";s:15:"Single Dynaform";s:40:"ID_MAFE_c9cc8cce247e49bae79f15173ce97354";s:4:"Save";s:40:"ID_MAFE_ca0dbad92a874b2f69b549293387925e";s:4:"Code";s:40:"ID_MAFE_ca54a730db8947fb7f724df269a4ad07";s:91:"Gateway: Selects a path or divides the process into multiple paths and joins them together.";s:40:"ID_MAFE_cab2f517f232fec132b37a4778df7139";s:138:"Week Year (ISO)GG70 71 ... 29 30GGGG1970 1971 ... 2029 2030";s:40:"ID_MAFE_cabf52523fbbddadbde30994e36845d0";s:15:"Store Result In";s:40:"ID_MAFE_cae0206c31eaa305dd0e847330c5e837";s:8:"wildcard";s:40:"ID_MAFE_cae09bbf47d1edd91f595be3d58c3fbb";s:10:"Processmap";s:40:"ID_MAFE_cba3917d344178657c24e17192d622be";s:46:"The following variables have been created:
        ";s:40:"ID_MAFE_cbcee680697ae9b5cd066ec611895829";s:19:"Boundary Event Type";s:40:"ID_MAFE_cbf3543f93135ddeb0fbe1b2f822799d";s:117:"Colspan is used to define the size and number of columns of a selected row. Twelve columns can be defined as maximum.";s:40:"ID_MAFE_cbfc6ad7fc06283ba1556ed2e4d30ff4";s:17:"Correlation Value";s:40:"ID_MAFE_cc392b567536af3977d356f3c4f201c6";s:51:"Please upload a file with a valid extension (.json)";s:40:"ID_MAFE_cc476d42149b7b1bf8a60ea941970116";s:36:"Properties invalid elements:

        ";s:40:"ID_MAFE_cc5d90569e1c8313c2b1c2aab1401174";s:9:"September";s:40:"ID_MAFE_cc82ea5c68e8fef6fd016115180de7ec";s:15:"Custom Hostname";s:40:"ID_MAFE_cd0c6092d6a6874f379fe4827ed1db8b";s:6:"PUBLIC";s:40:"ID_MAFE_cda829a5b60fd623ccd9c89377c1ba7f";s:9:"Date time";s:40:"ID_MAFE_cdc02faa21aec923a6865eed7803cf76";s:11:"Target Task";s:40:"ID_MAFE_cdd1f7270c9e7d6be3a484121bf2cd70";s:15:"Link Generation";s:40:"ID_MAFE_ce2c8aed9c2fa0cfbed56cbda4d8bf07";s:5:"Empty";s:40:"ID_MAFE_ce495ab8d79db0d37413d8e95b54e606";s:8:"multiple";s:40:"ID_MAFE_ce4d4b319a571fda7b689cee71432d5d";s:14:"Custom Trigger";s:40:"ID_MAFE_ce50a09343724eb82df11390e2c1de18";s:6:"button";s:40:"ID_MAFE_cec5d779d280ccc9c11ba492353a3a02";s:13:"Remove Object";s:40:"ID_MAFE_cec5f5f46fe524c3b0f9f0c18d74af91";s:18:"Select a language.";s:40:"ID_MAFE_ced3ccc640e21085b1bf8a2389332f70";s:96:"AM/PMAAM PMaam pm";s:40:"ID_MAFE_cef5e20d12886936632c84c319057288";s:12:"exmaple-name";s:40:"ID_MAFE_cf9f7adb0fd03f4072c4f44f8328433f";s:10:"An integer";s:40:"ID_MAFE_d08ccf52b4cdd08e41cfb99ec42e0b29";s:11:"Permissions";s:40:"ID_MAFE_d0aac4ce1ac97df2b4c6e456bbe3a061";s:10:"Expand all";s:40:"ID_MAFE_d0cf959c7706a5c88e7b434c857f9ca8";s:27:"Pending Task / Not Executed";s:40:"ID_MAFE_d0e45878043844ffc41aac437e86b602";s:6:"parent";s:40:"ID_MAFE_d1376c0b3248b39302f2ac2fa87de4b8";s:29:"Default date is out of range.";s:40:"ID_MAFE_d14f18dc87737c53160abb29b9da643c";s:14:"Saving Process";s:40:"ID_MAFE_d1948d0992fcf56030d9f5b250736dad";s:17:"Enable Versioning";s:40:"ID_MAFE_d207b4e0bce42a8f1555ce3a05e287f6";s:3:"Dec";s:40:"ID_MAFE_d23b1ae2181127f01be369b1ca27fdf5";s:29:"The key value already exists.";s:40:"ID_MAFE_d27532d90ecd513e97ab811c0f34dbfd";s:8:"Minimize";s:40:"ID_MAFE_d287f7dbd26ba9650f495a91fd532191";s:124:"object with the all or one of the parameters above; horizontal: \'auto\', \'left\', \'right\' or vertical: \'auto\', \'top\', \'bottom\'";s:40:"ID_MAFE_d2bd8c9509fc30a577287acb37ca93e1";s:20:"datepicker view mode";s:40:"ID_MAFE_d2cd6300ffb46de2841ccf9c252ad9b8";s:21:"Create Input Document";s:40:"ID_MAFE_d2e8a6fdb73b61fc8bb63c75aa9921c8";s:32:"Start file download successfully";s:40:"ID_MAFE_d304ba20e96d87411588eeabac850e34";s:5:"label";s:40:"ID_MAFE_d329fd777726c300d7a044e482b967e7";s:5:"clone";s:40:"ID_MAFE_d3548dd5f5b6667fdbd433a77288973c";s:46:"Error, There are problems updating the element";s:40:"ID_MAFE_d3d2e617335f08df83599665eef8a418";s:5:"Close";s:40:"ID_MAFE_d3eb32a3c80167aaa9aa114db53a22dd";s:4:"Sql:";s:40:"ID_MAFE_d3f29913d052896a7de99dbc03691d93";s:12:"PDF security";s:40:"ID_MAFE_d40a0246031d05173d2fe23ef8b4f7a9";s:30:"Routing rule removed correctly";s:40:"ID_MAFE_d40a430b5994378821419101cda69c58";s:22:"Parallel by Evaluation";s:40:"ID_MAFE_d4211e3744d9a86f562e76204530a2a5";s:48:"Variable for Self Service Value Based Assignment";s:40:"ID_MAFE_d426d6effc8a921775964c7873067700";s:103:"h1 2 ... 11 12hh01 02 ... 11 12";s:40:"ID_MAFE_d47318a2a0d03c15dba85904e34c6afd";s:27:"Hide Logged Information Bar";s:40:"ID_MAFE_d48c796fe10ae93243dd0202fbc5ed78";s:23:"Duplicate value for key";s:40:"ID_MAFE_d4903c30cd1efde76c02488c8697503b";s:13:"Assigned user";s:40:"ID_MAFE_d4eaf061d0141da13fc44f17a1484f19";s:16:"Step {0} ( {1} )";s:40:"ID_MAFE_d55b30607c2a9a2616347d6edb789f6b";s:4:"Last";s:40:"ID_MAFE_d5706ca375c8d6a21acb1deac3f7e357";s:24:"Advanced link generation";s:40:"ID_MAFE_d5d3db1765287eef77d7927cc956f50a";s:5:"title";s:40:"ID_MAFE_d62abd4be004b04615bd652961d6834f";s:16:"Assigned objects";s:40:"ID_MAFE_d66bf84417d8bc392b891637f89e83eb";s:27:"Error value: Minute: 0 - 59";s:40:"ID_MAFE_d685251a3afff77558aaa0101fc941ab";s:67:"There are problems getting the list of dynaforms, please try again.";s:40:"ID_MAFE_d6d390d565e04f51d5d9e9b9d729927c";s:35:"Do you want to delete this Trigger?";s:40:"ID_MAFE_d6f50a79f146ae5544b50c2d9b100a0d";s:16:"Report Generator";s:40:"ID_MAFE_d74c675d11eb7323f063948513b9a14d";s:10:"Empty Task";s:40:"ID_MAFE_d7dea2ba9be1a9aac2a1d06691e50570";s:32:"Message Type Saved successfully.";s:40:"ID_MAFE_d8012aca7276ee78d2e2bd33861d72a1";s:70:"At least one object should be selected in order to execute the action.";s:40:"ID_MAFE_d88c146dfafdea37a837778a92415bc2";s:2:"A0";s:40:"ID_MAFE_d890b531c1bc187c2c2fad9da298cfc6";s:48:"There are problems getting the list of projects.";s:40:"ID_MAFE_d90afd265d3ae2d1062a4dac2613fbd6";s:14:"Web Entry URL:";s:40:"ID_MAFE_d9a178c34608359bd5608813a08de096";s:11:"Manual Task";s:40:"ID_MAFE_d9b9a07c7b536fdc734d3b88b85aac82";s:39:"Use a pattern (to be used in a search).";s:40:"ID_MAFE_da36cfaf48b9e19896e23e1207040d1e";s:6:"months";s:40:"ID_MAFE_da899c7ecb82930d22fb8d1942581648";s:11:"Origin Task";s:40:"ID_MAFE_dae8ace18bdcbcc6ae5aece263e14fe8";s:7:"Options";s:40:"ID_MAFE_db0f6f37ebeb6ea09489124345af2a45";s:5:"group";s:40:"ID_MAFE_db71d165eea16a6618d0aa8d9368c4ab";s:31:"Define accepted variable values";s:40:"ID_MAFE_dc30bc0c7914db5918da4263fce93ad2";s:5:"Clear";s:40:"ID_MAFE_dc3fd488f03d423a04da27ce66274c1b";s:8:"Warning!";s:40:"ID_MAFE_dc45332742bde79337287a115c6422a4";s:15:"Select variable";s:40:"ID_MAFE_dc57a7c94c6039e453fc44f153b865a4";s:71:"The changed variables have been added with the suffix “_1”.";s:40:"ID_MAFE_dc647eb65e6711e155375218212b3964";s:8:"Password";s:40:"ID_MAFE_dc6efaeccf34d292ce91634e532d7b44";s:52:"Hide the case number and the case title in the steps";s:40:"ID_MAFE_dc810b4cb74c8f016bceb38f35f14d34";s:41:"Do you want to delete this DB Connection?";s:40:"ID_MAFE_dc8fc7a5b6a7c0f6711279c884cb4833";s:15:"Web Entry Title";s:40:"ID_MAFE_dca2d7da83c33cb7110af7c69de355fc";s:42:"The property event was saved successfully.";s:40:"ID_MAFE_dce333d9e7472c085cf0e12d13d52be7";s:12:"self Service";s:40:"ID_MAFE_dd1f775e443ff3b9a89270713580a51b";s:8:"Previous";s:40:"ID_MAFE_dd7b1201c11de68c122a739622d5f377";s:37:"Supported Controls: datetime, hidden.";s:40:"ID_MAFE_de04bbb13657e1df223071e8b2cfae41";s:109:"TokenOutputMonthM1 2 ... 11 12";s:40:"ID_MAFE_de340309f61afe838ad6b7666c38de22";s:14:"Export process";s:40:"ID_MAFE_de95b43bceeb4b998aed4aed5cef1ae7";s:4:"edit";s:40:"ID_MAFE_de9b9ed78d7e2e1dceeffee780e2f919";s:10:"javascript";s:40:"ID_MAFE_def36b726efed529b13ba240dd331a12";s:4:"Pool";s:40:"ID_MAFE_df347a373b8f92aa0ae3dd920a5ec2f6";s:4:"rows";s:40:"ID_MAFE_df9d1858f32ca3b186ac018ca508a144";s:26:"Variable for Case priority";s:40:"ID_MAFE_dfc40f0e59f5a510ccd9db550affc2a5";s:16:"Parallel gateway";s:40:"ID_MAFE_dfeaaeb4316477bd556ea5e8c3295887";s:8:"datetime";s:40:"ID_MAFE_e019dd49d439bb6d6765f7d2f6915333";s:15:"Close Validator";s:40:"ID_MAFE_e04aa5104d082e4a51d241391941ba26";s:8:"variable";s:40:"ID_MAFE_e071ce22a73ed2e5ea13f4d61d76f5ab";s:20:"Database Connection:";s:40:"ID_MAFE_e09646ce9f4b38cbf4816df15cee61d6";s:10:"Report toO";s:40:"ID_MAFE_e0aa021e21dddbd6d8cecec71e9cf564";s:2:"OK";s:40:"ID_MAFE_e0c9b0646bf818123171ad13d15b48e0";s:32:"There are problems removing task";s:40:"ID_MAFE_e12167aa0a7698e6ebc92b4ce3909b53";s:2:"To";s:40:"ID_MAFE_e148afc16b27021949123135f0cfb672";s:14:"Array of users";s:40:"ID_MAFE_e16d24cd68030dda478e6ca7151010e2";s:8:"@@myData";s:40:"ID_MAFE_e1a9dc9f23534e63de9df0d540ac1611";s:4:"Once";s:40:"ID_MAFE_e1ba155a9f2e8c3be94020eef32a0301";s:6:"Manual";s:40:"ID_MAFE_e1c496f67d70286897d9813254b4c0b1";s:15:"Of the month(s)";s:40:"ID_MAFE_e1e4c8c9ccd9fc39c391da4bcd093fb2";s:5:"Block";s:40:"ID_MAFE_e20cbb947afcf84cf58de1358ee1068d";s:13:"Error message";s:40:"ID_MAFE_e21db27183e0325f6f827b5781336bab";s:13:"Select a Skin";s:40:"ID_MAFE_e2627d9094274c7bcdc01ce1dadbaaab";s:21:"Select Target Process";s:40:"ID_MAFE_e29d57981d438d31f08b968bb12ed568";s:16:"Select a Control";s:40:"ID_MAFE_e2a990c9958b0fd2ecb860335737c258";s:45:"Please configure script to wait for a signal.";s:40:"ID_MAFE_e2ac1703ae8a4bb8b146f7337a7e4cab";s:9:"Last User";s:40:"ID_MAFE_e2b9d6eb9f3ec7d4e6089274a4481fab";s:67:"There are problems getting the list of DynaForms, please try again.";s:40:"ID_MAFE_e30f555e5a24f076a5d5be70a4625270";s:3:"TNS";s:40:"ID_MAFE_e3ce9b91bd7b1be415b5e687006ad179";s:226:"false: No default selection
        true: current date
        year: the first day of the current year
        month: the first day of the month
        day: the current day
        hour: the current hour without minutes
        minute: the current minute";s:40:"ID_MAFE_e4204641574e4827600356b4dcacd276";s:3:"Pdf";s:40:"ID_MAFE_e44b145bd8b49b06e0ad2ced1ad56466";s:10:"Plain Text";s:40:"ID_MAFE_e47eb6970857d9b170bb3691a0dad2f4";s:44:"Activity must have an outgoing sequence flow";s:40:"ID_MAFE_e4cf1a5db1d2df2e913b6685e634afad";s:63:"Enter a valid URL to be redirected when entry will be completed";s:40:"ID_MAFE_e54e3cf1f4745ffacdc539446402f9e4";s:27:"Output Document to Generate";s:40:"ID_MAFE_e5771a362d88a71a657bfcd21ca54b3f";s:5:"Units";s:40:"ID_MAFE_e5f8dbb32f8dead7935095ec1e38cc67";s:11:"Start Event";s:40:"ID_MAFE_e635032a5f71d809146d3872389f5b0c";s:11:"Choose File";s:40:"ID_MAFE_e659b52eba1f0299b2d8ca3483919e72";s:5:"Type:";s:40:"ID_MAFE_e68564f23e0e939acea76dc3d2bc01bf";s:3:"Jan";s:40:"ID_MAFE_e693021f9ae34a3833f0036c52837cfd";s:40:"
        Variables: Define the process data.";s:40:"ID_MAFE_e6fa96066374220d571ce0ed5f818ca2";s:13:"One Time Only";s:40:"ID_MAFE_e6fe2cb291ace4c56d3f9481b3b963af";s:17:"Select a language";s:40:"ID_MAFE_e70d93ce81ad26fe9c3c5d904a955260";s:13:"Edit Variable";s:40:"ID_MAFE_e711a42279b23490048c2a4bbaeb1afc";s:17:"Edit Message Type";s:40:"ID_MAFE_e72f0ee21d7c9d52b358a3bda9133429";s:33:"Message Type Deleted successfully";s:40:"ID_MAFE_e76f82ba7eb19b9a6a22829ead887c7d";s:12:"Self Service";s:40:"ID_MAFE_e787b4cb0cdefd8881e38a4f54305701";s:13:"Examples:
        ";s:40:"ID_MAFE_e7d22294bdcb7133967c3548ece982e5";s:3:"UID";s:40:"ID_MAFE_e807d3ccf8d24c8c1a3d86db5da78da8";s:4:"Days";s:40:"ID_MAFE_e8308c9bdecef89676a80116e65d9210";s:28:"- Select an input document -";s:40:"ID_MAFE_e889b1ca9624a9fbe23c4f062d7e5f01";s:6:"geomap";s:40:"ID_MAFE_e8be55bf3a30501aef09d2e74de97976";s:25:"This name already exists.";s:40:"ID_MAFE_e8fab833730f3a939d0b3812fe043b5d";s:4:"href";s:40:"ID_MAFE_e93a4587303a40147959da9901f50e34";s:15:"Horizontal Text";s:40:"ID_MAFE_e9baaa746b16c3c4b1c6668acba2a095";s:7:"The day";s:40:"ID_MAFE_e9cb217697088a98b1937d111d936281";s:10:"Attachment";s:40:"ID_MAFE_e9e8378dd79d6183c91dc32bb85e1363";s:19:"Assigned users list";s:40:"ID_MAFE_ea171d540ccd5f0669171ef06d3cd848";s:3:"Feb";s:40:"ID_MAFE_ea1dfeb79bcdfcc668bc8a09e101b7e9";s:20:"- Select a process -";s:40:"ID_MAFE_ea307f4b2295ccbeec8e6ef77e0a3364";s:43:"There are problems saved, please try again.";s:40:"ID_MAFE_ea4788705e6873b424c65e91c2846b19";s:6:"Cancel";s:40:"ID_MAFE_eaeb30f9f18e0c50b178676f3eaef45f";s:4:"Task";s:40:"ID_MAFE_eb0e94f426e2486a5af19633142d5ac7";s:8:"No users";s:40:"ID_MAFE_eb178264802ebbd52cccc8feadb72a6f";s:10:"PARAMETERS";s:40:"ID_MAFE_eb4b40c1221dad5b23fe7ef84d292be1";s:3:"Jun";s:40:"ID_MAFE_eba58323955caff5dc6ed8b89fd52ccf";s:11:"Cases Notes";s:40:"ID_MAFE_ebb035d359e317060c652f54a18cfb1b";s:7:"Copy of";s:40:"ID_MAFE_ebc1c8328f25c6ccb2ff00dd27b56693";s:12:"is required.";s:40:"ID_MAFE_ebcc39462e6620a8cf432194084a5483";s:8:"Options:";s:40:"ID_MAFE_ec211f7c20af43e742bf2570c3cb84f9";s:3:"Add";s:40:"ID_MAFE_ec36eecb212798bfc86076f1759b5824";s:13:"Participation";s:40:"ID_MAFE_ec53a8c4f07baed5d8825072c89799be";s:6:"Status";s:40:"ID_MAFE_ec6f1a89963c5b95d783e0c260fc959a";s:39:"Can\'t connect start event to subprocess";s:40:"ID_MAFE_ec724ea84e93ee183d93f0ee67eb5d47";s:30:"string, moment.local(\'locale\')";s:40:"ID_MAFE_ec8c00db917906278b80b96ded113351";s:25:"Testing Server Connection";s:40:"ID_MAFE_eca60ae8611369fe28a02e2ab8c5d12e";s:7:"October";s:40:"ID_MAFE_eca71f5ca33e0810a5eba99c4e31693b";s:10:"Name Value";s:40:"ID_MAFE_ecc40a7a6571d7e558482fbc1fa8bf7e";s:71:"An unexpected error while deleting the trigger, please try again later.";s:40:"ID_MAFE_ece7c5dcf104d858b2ea7b80d3c09dce";s:93:"Select dates by days, months or years by default when the date picker is initially shown.
        ";s:40:"ID_MAFE_ed32b37d44409cdcca89b579bff51348";s:40:"Do you want to delete this routing rule?";s:40:"ID_MAFE_ed484439470b8e84346a8117d0adf0c2";s:12:"Public Files";s:40:"ID_MAFE_ed5dea09095f671b801bee34ea28a319";s:10:"Permission";s:40:"ID_MAFE_ee11cbb19052e40b07aac0ca060c23ee";s:4:"user";s:40:"ID_MAFE_ee2faeed038501c1deab01c7b54f2fa9";s:4:"hint";s:40:"ID_MAFE_ee458e0db2f22a6528caf5111e594df0";s:14:"Export Diagram";s:40:"ID_MAFE_ee86a7940c08cf3c74b87afe09ce964c";s:36:"Do you want to delete this DynaForm?";s:40:"ID_MAFE_ee89abf4f4c10ef961a90dd20e7979ed";s:59:"There are problems creating the DynaForm, please try again.";s:40:"ID_MAFE_ef2e2525cf10996e5e7e480cdb28ec7f";s:9:"Send Task";s:40:"ID_MAFE_ef61fb324d729c341ea8ab9901e23566";s:7:"Add new";s:40:"ID_MAFE_ef78da8db34b8af99c406b2bddea82b2";s:18:"Input Document (s)";s:40:"ID_MAFE_ef831a7b020689074c3df21c36dfc3c0";s:6:"Months";s:40:"ID_MAFE_efb4777327e6f704fb1519c1882f93ec";s:5:"Timer";s:40:"ID_MAFE_f04aa7019c490474fa3ce16e93501b57";s:3:"Sep";s:40:"ID_MAFE_f0c8b2bc40856314cdc241d77f7eb12a";s:15:"Horizontal line";s:40:"ID_MAFE_f11f4e6128e29dff10ba00f8c1254a48";s:12:"Dynaform (s)";s:40:"ID_MAFE_f15c1cae7882448b3fb0404682e17e61";s:7:"Content";s:40:"ID_MAFE_f19e18aa38c0387bebad06c76c638e0a";s:11:"Sub Process";s:40:"ID_MAFE_f1a76f66cca677c6e628d9ca58a6c8fc";s:4:"Flow";s:40:"ID_MAFE_f1e505c1ac6b1e2409fd1dd6520da2ce";s:26:"Step editing successfully.";s:40:"ID_MAFE_f1e5d7a5fe13498abbdeb0f1f19136a8";s:5:"panel";s:40:"ID_MAFE_f217bd2ed27f82d5c856035f95801373";s:30:"Permission edited successfully";s:40:"ID_MAFE_f2a6c498fb90ee345d997f888fce3b18";s:6:"Delete";s:40:"ID_MAFE_f2dc40c4f8e4d156f519a6453f6b2a27";s:22:"day view header format";s:40:"ID_MAFE_f3a29486bed19a90f2da6d007818b427";s:5:"Steps";s:40:"ID_MAFE_f3b92fc0f97f128818cfb44321376bca";s:10:"Assignment";s:40:"ID_MAFE_f45c3a0bb3687ed8e221253b3fd4a2ce";s:9:"EXCLUSIVE";s:40:"ID_MAFE_f45fabda0c6a595f709b3996398132f5";s:60:"Diverging gateways expect to receive only one incoming flow.";s:40:"ID_MAFE_f4636507ca93332f92f92fb219a43b02";s:19:"Database Connection";s:40:"ID_MAFE_f49b52022300199128ed01380edda751";s:62:"There are problems updating the Timer Event, please try again.";s:40:"ID_MAFE_f4ae7ce97eda9edfe1541b3fdea115b6";s:13:"Group or User";s:40:"ID_MAFE_f4ee0932c0b3cdb0af6d4407fc915b28";s:33:"The variable Name already exists.";s:40:"ID_MAFE_f4f33214dfca4a6aa8a15fff06c43ff5";s:13:"One date/time";s:40:"ID_MAFE_f4f70727dc34561dfde1a3c529b6205c";s:8:"Settings";s:40:"ID_MAFE_f54d8cf0ad33dc46d9452d4ea2462459";s:61:"There are problems update the Step Trigger, please try again.";s:40:"ID_MAFE_f6039d44b29456b20f8f373155ae4973";s:8:"Username";s:40:"ID_MAFE_f670ea66cfb0e90bd6090472ad692694";s:7:"Minutes";s:40:"ID_MAFE_f698f67f5666aff10729d8a1cb1c14d2";s:7:"Trigger";s:40:"ID_MAFE_f6e23536e8d5c5f27f6f6d774eb81652";s:50:"The configuring of multiple instances will be lost";s:40:"ID_MAFE_f6eb4ee83cd8508379e695479564fddd";s:88:"The imported dynaform include new variables and existing variables that require changes.";s:40:"ID_MAFE_f70649197cbdd9cde4fa62f00355a144";s:35:"The process was saved successfully.";s:40:"ID_MAFE_f724849ad2f7797436db0dbb5fc79a70";s:40:"Do you want to delete all routing rules?";s:40:"ID_MAFE_f727eb287649c090519308749775c175";s:16:"Previous Century";s:40:"ID_MAFE_f7531e2d0ea27233ce00b5f01c5bf335";s:5:"print";s:40:"ID_MAFE_f75963d32a20c9b16e02169b667aa569";s:15:"Callback Action";s:40:"ID_MAFE_f77415a724d143456212940f13767f42";s:54:"The file size exceeds the limit. Max allowed limit is:";s:40:"ID_MAFE_f775fa07e143b2e671946a48af8f42ca";s:10:"versioning";s:40:"ID_MAFE_f7a524eeeba4c19644a8492b922547ef";s:12:"Main Folders";s:40:"ID_MAFE_f7d0c779f08738b7af7e7da3777548c2";s:20:"Unsupported element.";s:40:"ID_MAFE_f82413ecc07fb74bf40ccfe963a5c4b6";s:9:"lowercase";s:40:"ID_MAFE_f827cf462f62848df37c5e1e94a4da74";s:4:"True";s:40:"ID_MAFE_f82e519e2e82239be5f49d78b24ea228";s:34:"Supported Controls: Multiple File.";s:40:"ID_MAFE_f8320b26d30ab433c5a54546d21f414c";s:5:"False";s:40:"ID_MAFE_f870c761f7f6737381a821feb9a73890";s:18:"This a sub-process";s:40:"ID_MAFE_f92965e2c8a7afb3c1b9a5c09a263636";s:4:"Done";s:40:"ID_MAFE_f93509db95228584504382f98aae0f52";s:13:"Message Types";s:40:"ID_MAFE_f945435ef7365a1e0ae2fa1b8230a17e";s:128:"Week of Yearw1 2 ... 52 53wo1st 2nd ... 52nd 53rd";s:40:"ID_MAFE_f97d2922ab3ce558f9943dd780d04ae7";s:55:"Allowed file extensions (Use .* to allow any extension)";s:40:"ID_MAFE_f9aae5fda8d810a29f12d1e61b4ab25f";s:5:"Users";s:40:"ID_MAFE_f9ab05454998236921a6b0e281fae632";s:8:"validate";s:40:"ID_MAFE_fa2b5b7c9bccd35e42cb74042690a091";s:14:"Email response";s:40:"ID_MAFE_fa3c608c8fc755543f0d37afd6a42651";s:5:"TO DO";s:40:"ID_MAFE_fa3e5edac607a88d8fd7ecb9d6d67424";s:5:"March";s:40:"ID_MAFE_fa53b9f14bee0d47d744863b871b4677";s:24:"Intermediate Timer Event";s:40:"ID_MAFE_fb216d9e8791e63c8d12bdc420956839";s:6:"locale";s:40:"ID_MAFE_fb7393c8bfd85b64a670cfd73a449a05";s:18:"Disable Grid Lines";s:40:"ID_MAFE_fb8e567d9b10447761969e1e08eebc2b";s:6:"Create";s:40:"ID_MAFE_fbb3a99250a09f01c3e8193f6fe9e1c4";s:25:"Step removed successfully";s:40:"ID_MAFE_fbb7d71920afdff488c3514f3f99fe7c";s:11:"Upload File";s:40:"ID_MAFE_fbd86a8fe4703e24aff466cbe75facd6";s:26:"This is a Message of Error";s:40:"ID_MAFE_fc13e2d25ee4c9f4b2263aa7066790a9";s:22:"Create Output Document";s:40:"ID_MAFE_fc4786f4974405965a4a00dde8d6e9f9";s:22:"Create/Select Variable";s:40:"ID_MAFE_fc85b3878f914dbad84b82aa35d1c9b9";s:16:"Output Documents";s:40:"ID_MAFE_fcf4ce3ff760206c487c9b5a6677dc1c";s:19:"Allowed Permissions";s:40:"ID_MAFE_fcfa44a72c608ed9ba6a46ee1b77556b";s:65:"There are problems updating the OutputDocument, please try again.";s:40:"ID_MAFE_fd05d7f6bfc90e815087880e8e915b43";s:9:"Examples:";s:40:"ID_MAFE_fd301d675be7b677ba979a430a80c010";s:2:"A8";s:40:"ID_MAFE_fe14a40df4290a46f7c41621d56ae987";s:71:"
      • Disabled: Control is greyed out, but still displays its value.
      • ";s:40:"ID_MAFE_fe8096b87357ded238c39b72488da84b";s:15:"Saved correctly";s:40:"ID_MAFE_fee203b36e6653c5cbe12bd1f3c6b119";s:9:"textfield";s:40:"ID_MAFE_ff4a008470319a22d9cf3d14af485977";s:4:"grid";s:40:"ID_MAFE_ffc1dca70df11105d22d9f427a9e260b";s:10:"Edit Label";s:40:"ID_MAFE_ffcf70e892b8ac3facbac0f88602396b";s:5:"Every";s:29:"ID_MAFE_TRANSLATION_DIRECTORY";s:26:"MAFE Translation Directory";s:25:"ID_MAIL_SENT_SUCCESSFULLY";s:39:"Your message has been sent successfully";s:20:"ID_MAIL_STATUS_ERROR";s:5:"Error";s:22:"ID_MAIL_STATUS_PENDING";s:7:"Pending";s:19:"ID_MAIL_STATUS_SENT";s:4:"Sent";s:20:"ID_MAIL_TEST_SUCCESS";s:30:"Test message sent successfully";s:28:"ID_MAIL_TO_NOT_VALID_ADDRESS";s:55:""Mail to" does not contain a valid email address format";s:14:"ID_MAINTENANCE";s:11:"Maintenance";s:10:"ID_MANAGER";s:7:"Manager";s:22:"ID_MANAGERS_DASHBOARDS";s:18:"Managers dashboard";s:20:"ID_MANUAL_ASSIGNMENT";s:17:"Manual Assignment";s:6:"ID_MAP";s:14:"My Case Status";s:11:"ID_MAP_TYPE";s:8:"Map Type";s:27:"ID_MARKET_SERVER_CONTACTING";s:49:"There was a problem contacting the market server.";s:13:"ID_MASKS_LIST";s:10:"Masks List";s:27:"ID_MATCH_ATTRIBUTES_TO_SYNC";s:24:"Match attributes to sync";s:29:"ID_MAXIMUM_SIZE_FILE_REQUIRED";s:34:"The file maximum size is required!";s:16:"ID_MAX_FILE_SIZE";s:24:"Maximum upload file size";s:26:"ID_MAX_INDICATOR_DASHBOARD";s:28:"Maximum number of Indicators";s:15:"ID_MAX_LIFETIME";s:25:"Cookie Lifetime (Seconds)";s:33:"ID_MAX_LIMIT_COLUMNS_FOR_DATABASE";s:88:"The maximun limit of columns for a database table is 255, you already have them defined!";s:8:"ID_MEDIA";s:5:"Media";s:9:"ID_MEMBER";s:6:"Member";s:10:"ID_MEMBERS";s:7:"Members";s:12:"ID_MEMBER_OF";s:9:"MEMBER OF";s:15:"ID_MEMORY_LIMIT";s:17:"Memory Limit (MB)";s:24:"ID_MEMORY_LIMIT_VALIDATE";s:60:"Memory Limit value has to be either a positive integer or -1";s:12:"ID_MENU_NAME";s:18:"Enterprise Manager";s:10:"ID_MESSAGE";s:7:"Message";s:11:"ID_MESSAGES";s:8:"Messages";s:19:"ID_MESSAGES_HISTORY";s:16:"Messages History";s:27:"ID_MESSAGE_EMPTY_DATE_FIELD";s:87:"There is at least one empty date field in the holiday grid, please check and try again.";s:46:"ID_MESSAGE_EVENT_DEFINITION_ALREADY_REGISTERED";s:62:"The Message-Event-Definition with {0}: {1} already registered.";s:42:"ID_MESSAGE_EVENT_DEFINITION_DOES_NOT_EXIST";s:58:"The Message-Event-Definition with {0}: {1} does not exist.";s:50:"ID_MESSAGE_EVENT_DEFINITION_DOES_NOT_IS_REGISTERED";s:66:"The Message-Event-Definition with {0}: {1} does not is registered.";s:60:"ID_MESSAGE_EVENT_DEFINITION_VARIABLES_DO_NOT_MEET_DEFINITION";s:70:"The variables do not meet with the definition of Message-Type-Variable";s:44:"ID_MESSAGE_EVENT_RELATION_ALREADY_REGISTERED";s:46:"The Message-Event-Relation already registered.";s:40:"ID_MESSAGE_EVENT_RELATION_DOES_NOT_EXIST";s:56:"The Message-Event-Relation with {0}: {1} does not exist.";s:53:"ID_MESSAGE_EVENT_RELATION_DOES_NOT_EXIST_MESSAGE_FLOW";s:61:"Does not exist a "Message Flow" between {0}: {1} and {2}: {3}";s:45:"ID_MESSAGE_EVENT_TASK_RELATION_DOES_NOT_EXIST";s:61:"The Message-Event-Task-Relation with {0}: {1} does not exist.";s:16:"ID_MESSAGE_LOGIN";s:139:"The default language set here is for the Language dropdown box displayed on the login screen. This configuration is set for each workspace.";s:30:"ID_MESSAGE_ROOT_CHANGE_FAILURE";s:35:"The root password can\'t be updated!";s:29:"ID_MESSAGE_ROOT_CHANGE_SUCESS";s:48:"The root password has been updated successfully!";s:15:"ID_MESSAGE_SENT";s:12:"message sent";s:29:"ID_MESSAGE_SUBJECT_DERIVATION";s:32:"Notification for task assignment";s:36:"ID_MESSAGE_SUBJECT_NOTE_NOTIFICATION";s:33:"A note has been added to the case";s:17:"ID_MESSAGE_SYSTEM";s:192:"The language that is set by default applies directly when the domain is entered (eg.- http://127.0.0.1:8081), the system reads the configuration and redirects the link to the selected language";s:18:"ID_MESSAGE_SYSTEM2";s:129:"(eg.- http://127.0.0.1:8081/sys/en/classic/login/login), it should be emphasized that this configuration is for all environments.";s:30:"ID_MESSAGE_TYPE_DOES_NOT_EXIST";s:46:"The Message Type with {0}: {1} does not exist.";s:35:"ID_MESSAGE_TYPE_NAME_ALREADY_EXISTS";s:53:"The Message Type Name with {0}: "{1}" already exists.";s:36:"ID_MESSAGE_TYPE_NAME_VARIABLE_EXISTS";s:32:"The name of the variable exists.";s:39:"ID_MESSAGE_TYPE_VARIABLE_DOES_NOT_EXIST";s:42:"The Variable with {0}: {1} does not exist.";s:44:"ID_MESSAGE_TYPE_VARIABLE_NAME_ALREADY_EXISTS";s:49:"The Variable Name with {0}: "{1}" already exists.";s:21:"ID_MESS_ENGINE_TYPE_1";s:10:"Mail (PHP)";s:21:"ID_MESS_ENGINE_TYPE_2";s:16:"SMTP (PHPMailer)";s:21:"ID_MESS_ENGINE_TYPE_3";s:15:"SMTP (OpenMail)";s:21:"ID_MESS_ENGINE_TYPE_4";s:19:"OAUTH (GMail OAuth)";s:25:"ID_MESS_SEND_MAX_REQUIRED";s:64:"The maximum number of attempts to send mail is a required field.";s:17:"ID_MESS_TEST_BODY";s:23:"ProcessMaker Test Email";s:35:"ID_MESS_TEST_MESSAGE_ERROR_PHP_MAIL";s:32:"Test message send failed, error:";s:27:"ID_MESS_TEST_MESSAGE_SENDED";s:30:"Test message sent successfully";s:20:"ID_MESS_TEST_SUBJECT";s:10:"Test Email";s:9:"ID_METHOD";s:6:"Method";s:10:"ID_METHODS";s:7:"Methods";s:15:"ID_MILLISECONDS";s:12:"Milliseconds";s:35:"ID_MINIMUM_DATA_REQUIRED_TO_RUN_THE";s:117:"Minimum data required to run the "Test Connection": "Server Address, Port, Enabled TLS, Anonymous, Username, Password";s:9:"ID_MINUTE";s:6:"Minute";s:10:"ID_MINUTES";s:7:"Minutes";s:20:"ID_MINUTE_ABBREVIATE";s:3:"min";s:26:"ID_MIN_INDICATOR_DASHBOARD";s:35:"You can not delete more Indicators.";s:11:"ID_MODIFIED";s:8:"Modified";s:6:"ID_MON";s:3:"Mon";s:19:"ID_MONITORED_FOLDER";s:16:"Monitored Folder";s:8:"ID_MONTH";s:5:"Month";s:9:"ID_MONTHS";s:6:"Months";s:10:"ID_MONTH_1";s:7:"January";s:11:"ID_MONTH_10";s:7:"October";s:11:"ID_MONTH_11";s:8:"November";s:11:"ID_MONTH_12";s:8:"December";s:10:"ID_MONTH_2";s:8:"February";s:10:"ID_MONTH_3";s:5:"March";s:10:"ID_MONTH_4";s:5:"April";s:10:"ID_MONTH_5";s:3:"May";s:10:"ID_MONTH_6";s:4:"June";s:10:"ID_MONTH_7";s:4:"July";s:10:"ID_MONTH_8";s:6:"August";s:10:"ID_MONTH_9";s:9:"September";s:14:"ID_MONTH_ABB_1";s:3:"Jan";s:15:"ID_MONTH_ABB_10";s:3:"Oct";s:15:"ID_MONTH_ABB_11";s:3:"Nov";s:15:"ID_MONTH_ABB_12";s:3:"Dec";s:14:"ID_MONTH_ABB_2";s:3:"Feb";s:14:"ID_MONTH_ABB_3";s:3:"Mar";s:14:"ID_MONTH_ABB_4";s:3:"Apr";s:14:"ID_MONTH_ABB_5";s:3:"May";s:14:"ID_MONTH_ABB_6";s:3:"Jun";s:14:"ID_MONTH_ABB_7";s:3:"Jul";s:14:"ID_MONTH_ABB_8";s:3:"Aug";s:14:"ID_MONTH_ABB_9";s:3:"Sep";s:12:"ID_MORE_INFO";s:9:"More Info";s:19:"ID_MORE_INFORMATION";s:16:"more information";s:12:"ID_MORE_THAN";s:9:"more than";s:22:"ID_MOST_AT_LEAST_3_DAY";s:40:"You must define at least 3 Working Days!";s:7:"ID_MOVE";s:4:"Move";s:19:"ID_MSG_AJAX_FAILURE";s:64:"An error has occurred. Please contact your system administrator.";s:18:"ID_MSG_ASSIGN_DONE";s:35:"User successfully assigned to group";s:35:"ID_MSG_CANNOT_DELETE_AUTHENTICATION";s:72:"The authentication source cannot be deleted while it has assigned users.";s:29:"ID_MSG_CANNOT_DELETE_CALENDAR";s:56:"The calendar cannot be deleted while it has assignations";s:29:"ID_MSG_CANNOT_DELETE_CATEGORY";s:71:"The category cannot be deleted while it is still assigned to processes.";s:31:"ID_MSG_CANNOT_DELETE_DEPARTMENT";s:61:"The department cannot be deleted while it has assigned users.";s:30:"ID_MSG_CANNOT_DELETE_INPUT_DOC";s:58:"Input Document cannot be deleted while has assigned tasks.";s:25:"ID_MSG_CANNOT_DELETE_USER";s:96:"The user cannot be deleted since it is referenced in a process design and/or has assigned cases.";s:33:"ID_MSG_CANNOT_EXPORT_DEFAULT_SKIN";s:71:"Default skin can\'t be exported. Instead create new one based on default";s:25:"ID_MSG_CANNOT_EXPORT_SKIN";s:31:"Can\'t export skin. Server Error";s:29:"ID_MSG_CANNOT_REMOVE_LANGUAGE";s:38:"You cannot delete the default language";s:28:"ID_MSG_CLEAR_GRID_FIRST_ITEM";s:56:"Do you want to clear the information from the first row?";s:31:"ID_MSG_CONFIRM_ASSIGN_ALL_USERS";s:55:"Do you want to assign all available users to this role?";s:26:"ID_MSG_CONFIRM_CANCEL_CASE";s:42:"Are you sure you want to cancel this case?";s:27:"ID_MSG_CONFIRM_CANCEL_CASES";s:51:"Are you sure you want to cancel all selected cases?";s:41:"ID_MSG_CONFIRM_DEASIGN_USER_GROUP_MESSAGE";s:51:"Are you sure you want to remove this user or group?";s:35:"ID_MSG_CONFIRM_DEASIGN_USER_MESSAGE";s:42:"Are you sure you want to remove this user?";s:33:"ID_MSG_CONFIRM_DELETE_AUTH_SOURCE";s:49:"Do you want to delete this authentication source?";s:26:"ID_MSG_CONFIRM_DELETE_CASE";s:42:"Are you sure you want to delete this case?";s:27:"ID_MSG_CONFIRM_DELETE_CASES";s:51:"Are you sure you want to delete all selected cases?";s:36:"ID_MSG_CONFIRM_DELETE_CASE_SCHEDULER";s:52:"Are you sure you want to delete this scheduled case?";s:41:"ID_MSG_CONFIRM_DELETE_CASE_TRACKER_OBJECT";s:34:"Do you want to delete this object?";s:31:"ID_MSG_CONFIRM_DELETE_CONDITION";s:38:"Are you sure to delete this condition?";s:32:"ID_MSG_CONFIRM_DELETE_DEPARTMENT";s:38:"Do you want to delete this department?";s:30:"ID_MSG_CONFIRM_DELETE_DOCUMENT";s:37:"Do you want to delete this document ?";s:30:"ID_MSG_CONFIRM_DELETE_DYNAFORM";s:37:"Do you want to delete this DynaForm ?";s:27:"ID_MSG_CONFIRM_DELETE_EVENT";s:33:"Do you want to delete this event?";s:27:"ID_MSG_CONFIRM_DELETE_GROUP";s:43:"Are you sure you want to delete this group?";s:31:"ID_MSG_CONFIRM_DELETE_IDOCUMENT";s:76:"This object is being used in some steps. Are you sure you want to delete it?";s:29:"ID_MSG_CONFIRM_DELETE_MESSAGE";s:35:"Do you want to delete this message?";s:28:"ID_MSG_CONFIRM_DELETE_OUTDOC";s:44:"Do you want to delete this output document ?";s:29:"ID_MSG_CONFIRM_DELETE_PROCESS";s:36:"Do you want to delete this process ?";s:34:"ID_MSG_CONFIRM_DELETE_REPORT_TABLE";s:40:"Do you want to delete this report table?";s:25:"ID_MSG_CONFIRM_DELETE_ROW";s:39:"Do you want to delete the selected row?";s:26:"ID_MSG_CONFIRM_DELETE_STEP";s:59:"Are you sure you want to eliminate this step from the task?";s:41:"ID_MSG_CONFIRM_DELETE_SUPERVISOR_DYNAFORM";s:36:"Do you want to remove this DynaForm?";s:38:"ID_MSG_CONFIRM_DELETE_SUPERVISOR_INPUT";s:42:"Do you want to remove this Input Document?";s:29:"ID_MSG_CONFIRM_DELETE_TRIGGER";s:35:"Do you want to delete this trigger?";s:26:"ID_MSG_CONFIRM_DELETE_USER";s:33:"Do you want to delete this user ?";s:46:"ID_MSG_CONFIRM_DELETE_USER_ASSINGED_SUPERVISOR";s:92:"The user can not be deleted while assigned as a supervisor. Do you want to delete it anyway?";s:44:"ID_MSG_CONFIRM_DELETE_USER_PRIVATE_PROCESSES";s:136:"This user has private processes, if you continue all the user\'s private processes will become public processes. Do you want to continue?";s:28:"ID_MSG_CONFIRM_DELETE_WEBBOT";s:44:"Are you sure you want to delete this webbot?";s:30:"ID_MSG_CONFIRM_REMOVE_LANGUAGE";s:46:"Are you sure you want to remove this language?";s:29:"ID_MSG_CONFIRM_REMOVE_TRIGGER";s:45:"Are you sure you want to remove this trigger?";s:26:"ID_MSG_CONFIRM_REMOVE_USER";s:42:"Are you sure you want to remove this user?";s:31:"ID_MSG_CONFIRM_REMOVE_USERGROUP";s:48:"Are you sure you want to remove this user group?";s:29:"ID_MSG_CONFIRM_RESET_TEMPLATE";s:55:"Are you sure you want to restore the default template ?";s:26:"ID_MSG_ENABLE_HTML_EDITING";s:150:"Warning: Editing the HTML prevents fields from being added or moved. Edit the HTML only after creating all the fields. Do you want to continue?";s:21:"ID_MSG_ERROR_DUE_DATE";s:18:"Due date required!";s:22:"ID_MSG_ERROR_PRO_TITLE";s:23:"Process title required!";s:26:"ID_MSG_ERROR_USR_FIRSTNAME";s:22:"First name is required";s:25:"ID_MSG_ERROR_USR_LASTNAME";s:21:"Last name is required";s:25:"ID_MSG_ERROR_USR_USERNAME";s:19:"User name required!";s:24:"ID_MSG_GROUP_NAME_EXISTS";s:26:"Group name already exists!";s:26:"ID_MSG_NORESULTS_USERGROUP";s:36:"This user is not assigned to a group";s:20:"ID_MSG_REMOVE_PLUGIN";s:49:"Are you sure that you want to remove this plugin?";s:28:"ID_MSG_REMOVE_PLUGIN_SUCCESS";s:28:"Plugin successfully removed!";s:15:"ID_MSJ_REPORSTO";s:89:"The current user does not have a valid Reports To user. Please contact the administrator.";s:24:"ID_MSSQL_SUCCESS_CONNECT";s:38:"Successfully connected to MSSQL Server";s:25:"ID_MSSQL_SUPPORT_OPTIONAL";s:26:"MSSQL Support is optional.";s:26:"ID_MULTIPLE_STARTING_TASKS";s:38:"Multiple starting tasks in the process";s:16:"ID_MYCASE_NUMBER";s:6:"Case #";s:26:"ID_MYSQL_CREDENTIALS_WRONG";s:72:"Connection Error: unable to connect to MySQL using provided credentials.";s:14:"ID_MYSQL_ERROR";s:16:"MySQL error: {0}";s:24:"ID_MYSQL_SUCCESS_CONNECT";s:38:"Successfully connected to MySQL Server";s:13:"ID_MY_ACCOUNT";s:10:"My account";s:11:"ID_MY_CASES";s:8:"My Cases";s:15:"ID_MY_DOCUMENTS";s:12:"My Documents";s:12:"ID_MY_DRAFTS";s:9:"My Drafts";s:11:"ID_MY_INBOX";s:8:"My inbox";s:7:"ID_NAME";s:4:"Name";s:14:"ID_NAME_EXISTS";s:15:"The name exists";s:16:"ID_NAME_REQUIRED";s:23:"Table Name is required.";s:25:"ID_NAME_STG_TITLE_REQUIRE";s:20:"Stage title required";s:25:"ID_NAME_TAS_TITLE_REQUIRE";s:19:"Task title required";s:10:"ID_NCAMBIO";s:42:"@#, Replaces the value without any change.";s:16:"ID_NEED_REGISTER";s:65:"You need to be registered to download this process. Register NOW!";s:6:"ID_NEW";s:3:"New";s:16:"ID_NEW_ADD_TABLE";s:12:"New PM Table";s:19:"ID_NEW_BPMN_PROJECT";s:16:"New BPMN Project";s:11:"ID_NEW_CASE";s:8:"New case";s:12:"ID_NEW_CASES";s:11:"% New Cases";s:17:"ID_NEW_CASE_PANEL";s:14:"New Case Panel";s:21:"ID_NEW_CASE_SCHEDULER";s:18:"New Case Scheduler";s:15:"ID_NEW_CATEGORY";s:19:"Create New Category";s:26:"ID_NEW_CONDITION_FROM_STEP";s:23:"New Condition From Step";s:17:"ID_NEW_DEPARTMENT";s:3:"New";s:15:"ID_NEW_DYNAFORM";s:13:"New DynaForm.";s:12:"ID_NEW_EVENT";s:9:"New Event";s:13:"ID_NEW_FOLDER";s:10:"New Folder";s:12:"ID_NEW_GROUP";s:3:"New";s:16:"ID_NEW_INPUTDOCS";s:18:"New Input Document";s:11:"ID_NEW_NOTE";s:8:"New Note";s:15:"ID_NEW_PASSWORD";s:12:"New Password";s:20:"ID_NEW_PASSWORD_SENT";s:49:"Your new password was sent to your email account!";s:25:"ID_NEW_PASS_SAME_OLD_PASS";s:38:"The confirm password must be the same!";s:14:"ID_NEW_PMTABLE";s:12:"New PM Table";s:14:"ID_NEW_PROJECT";s:11:"New Project";s:19:"ID_NEW_REPORT_TABLE";s:16:"New Report Table";s:23:"ID_NEW_REPORT_TABLE_OLD";s:30:"New Report Table (Old Version)";s:19:"ID_NEW_SITE_TESTING";s:19:"New site testing...";s:11:"ID_NEW_SKIN";s:8:"New Skin";s:11:"ID_NEW_STEP";s:8:"New Step";s:21:"ID_NEW_SUB_DEPARTMENT";s:18:"New Sub-Department";s:20:"ID_NEW_TAB_INDICATOR";s:13:"Add Indicator";s:18:"ID_NEW_TRANSLATION";s:15:"New Translation";s:15:"ID_NEW_TRIGGERS";s:11:"New Trigger";s:14:"ID_NEW_VERSION";s:11:"New Version";s:16:"ID_NEW_WEB_ENTRY";s:13:"New Web Entry";s:16:"ID_NEW_WORKSPACE";s:13:"New Workspace";s:7:"ID_NEXT";s:4:"Next";s:12:"ID_NEXT_STEP";s:9:"Next Step";s:12:"ID_NEXT_TASK";s:15:"Next Task/Event";s:7:"ID_NLIC";s:30:"License installed successfully";s:5:"ID_NO";s:2:"No";s:20:"ID_NODELETEOPTIONALL";s:121:"You must add all the days that you have selected in work days, otherwise you should leave at least an "-- ALL --" option.";s:7:"ID_NONE";s:4:"None";s:8:"ID_NONEC";s:35:"@# Replace the value with no change";s:21:"ID_NON_WRITABLE_FILES";s:18:"Non-writable Files";s:9:"ID_NORMAL";s:6:"Normal";s:16:"ID_NORMAL_EXPORT";s:6:"Normal";s:14:"ID_NOTES_READY";s:5:"Ready";s:9:"ID_NOTICE";s:6:"Notice";s:15:"ID_NOTIFICATION";s:12:"Notification";s:21:"ID_NOTIFICATION_ERROR";s:62:"A problem occurred while trying to send the Task Notification.";s:9:"ID_NOTIFY";s:6:"Notify";s:28:"ID_NOTIFY_USERS_AFTER_ASSIGN";s:46:"After routing notify the next assigned user(s)";s:20:"ID_NOTIFY_USERS_CASE";s:20:"Notify users of case";s:24:"ID_NOT_ABLE_DELETE_CASES";s:78:"You are not allowed to delete cases, please contact your System Administrator.";s:20:"ID_NOT_ABLE_REASSIGN";s:51:"You are not able to reassign cases of this process.";s:25:"ID_NOT_AVAILABLE_DATABASE";s:14:"Not available.";s:19:"ID_NOT_CREATE_TABLE";s:40:"Could not create the table with the name";s:14:"ID_NOT_DEFINED";s:11:"Not defined";s:16:"ID_NOT_DERIVATED";s:61:"The case couldn\'t be routed. Consult the system administrator";s:14:"ID_NOT_ENABLED";s:11:"Not Enabled";s:20:"ID_NOT_EXECUTE_QUERY";s:87:"Changes to {0} are forbidden. Please contact system administrator for more information.";s:18:"ID_NOT_EXISTS_FILE";s:20:"File does not exists";s:15:"ID_NOT_FINISHED";s:12:"Not finished";s:32:"ID_NOT_HAVE_BOOKMARKED_PROCESSES";s:35:"You don\'t have bookmarked processes";s:17:"ID_NOT_HAVE_USERS";s:19:"doesn\'t have users.";s:15:"ID_NOT_IMPORTED";s:12:"NOT IMPORTED";s:16:"ID_NOT_IN_FOLDER";s:13:"Not in folder";s:13:"ID_NOT_PASSED";s:11:"Not Passed.";s:14:"ID_NOT_PM_FILE";s:22:"This is not a .pm file";s:17:"ID_NOT_PRIVILEGES";s:26:"You do not have privileges";s:22:"ID_NOT_PROCESS_RELATED";s:18:"Not from a Process";s:36:"ID_NOT_REGISTERED_PROCESS_SUPERVISOR";s:67:"This id: {0} does not correspond to a registered process supervisor";s:15:"ID_NOT_REQUIRED";s:12:"Not Required";s:11:"ID_NOT_SENT";s:8:"Not sent";s:21:"ID_NOT_VALID_RELATION";s:63:"This id for pu_uid: {0} does not correspond to a valid relation";s:16:"ID_NOT_WORKSPACE";s:44:"You have specified an unavailable workspace.";s:26:"ID_NOT_WORKSPACE_SPECIFIED";s:23:"No workspace specified!";s:19:"ID_NO_DB_CONNECTION";s:27:"No DB Connection to display";s:26:"ID_NO_DERIVATION_BPMN_RULE";s:173:"Process definition error: All conditions in evaluation routing rule evaluated to false, so workflow has stopped. Please change the definition of the evaluation routing rule.";s:21:"ID_NO_DERIVATION_RULE";s:191:"Process definition error: All conditions in parallel evaluation routing rule evaluated to false, so workflow has stopped. Please change the definition of the parallel evaluation routing rule.";s:11:"ID_NO_EXIST";s:14:"Does not exist";s:17:"ID_NO_FIELD_FOUND";s:16:"No fields found!";s:23:"ID_NO_IMAGES_TO_DISPLAY";s:20:"No images to display";s:27:"ID_NO_INEFFICIENT_PROCESSES";s:24:"No Inefficient Processes";s:23:"ID_NO_INEFFICIENT_TASKS";s:20:"No Inefficient Tasks";s:23:"ID_NO_INEFFICIENT_USERS";s:20:"No Inefficient Users";s:29:"ID_NO_INEFFICIENT_USER_GROUPS";s:26:"No Inefficient User Groups";s:13:"ID_NO_INSTALL";s:115:"A problem occurred during the installation of the system. Please, uninstall the partial installation and try again.";s:24:"ID_NO_INTERNET_CONECTION";s:52:"Enterprise Plugins Manager no connected to internet.";s:20:"ID_NO_ITEMS_SELECTED";s:17:"No item selected.";s:29:"ID_NO_LICENSE_FEATURE_ENABLED";s:84:"Your license does not have the Gmail integration. Please contact your administrator.";s:22:"ID_NO_MANAGER_SELECTED";s:19:"No Manager Selected";s:23:"ID_NO_MORE_APPLICATIONS";s:29:"No more applications to show.";s:18:"ID_NO_NEW_VERSIONS";s:25:"No new versions available";s:25:"ID_NO_OLDER_SESSION_FILES";s:32:"There are no older session files";s:32:"ID_NO_PERMISSION_NO_PARTICIPATED";s:179:"You cannot open this case because on the reason below:
        You do not have permission to see this case.
        You have not participated in this case.
        Case is already claimed.";s:22:"ID_NO_PREVIOUS_USR_UID";s:41:"The previous task doesn\'t have any users.";s:14:"ID_NO_REASSIGN";s:15:"Do not reassign";s:13:"ID_NO_RECORDS";s:10:"No records";s:19:"ID_NO_RECORDS_FOUND";s:16:"No records found";s:21:"ID_NO_RELATED_PROCESS";s:35:"The related process does not exists";s:18:"ID_NO_REPORT_TABLE";s:64:"The table \'{0}\' that you trying to import is not a report table.";s:12:"ID_NO_RESUME";s:31:"The user doesn\'t have a resume.";s:21:"ID_NO_SELECTED_FIELDS";s:18:"No selected fields";s:23:"ID_NO_SELECTION_WARNING";s:59:"One item should be selected in order to execute the action.";s:24:"ID_NO_SET_MANAGER_SUCCES";s:28:"Manager unassigned correctly";s:19:"ID_NO_STARTING_TASK";s:24:"No starting task defined";s:11:"ID_NO_USERS";s:32:"The task doesn\'t have any users.";s:11:"ID_NO_VALUE";s:2:"No";s:7:"ID_NULL";s:4:"Null";s:15:"ID_NUMBER_CASES";s:12:"Number cases";s:9:"ID_OBJECT";s:6:"Object";s:22:"ID_OBJECTS_UNAVAILABLE";s:65:"No objects are available. All objects have been already assigned.";s:18:"ID_OBJECT_ASSIGNED";s:38:"Objects has been successfully assigned";s:15:"ID_OBJECT_CLASS";s:14:"Object Classes";s:16:"ID_OBJECT_FAILED";s:24:"Failed to assign Objects";s:16:"ID_OBJECT_REMOVE";s:36:"Object has been removed successfully";s:16:"ID_OBJECT_UPDATE";s:34:"User has been updated successfully";s:6:"ID_OFF";s:3:"Off";s:17:"ID_OFFLINE_TABLES";s:14:"Offline Tables";s:25:"ID_OFFLINE_TABLES_DISABLE";s:17:"Set Online Tables";s:24:"ID_OFFLINE_TABLES_ENABLE";s:18:"Set Offline Tables";s:15:"ID_OF_THE_MONTH";s:15:"of the month(s)";s:5:"ID_OK";s:2:"Ok";s:14:"ID_OLD_VERSION";s:11:"old version";s:5:"ID_ON";s:2:"On";s:15:"ID_ONCE_PER_DAY";s:12:"Once per day";s:10:"ID_ON_TIME";s:7:"On Time";s:7:"ID_OPEN";s:4:"Open";s:19:"ID_OPENSSL_OPTIONAL";s:20:"OpenSSL is optional.";s:12:"ID_OPEN_CASE";s:9:"Open Case";s:16:"ID_OPEN_DATABASE";s:16:"Opening database";s:10:"ID_OPEN_DB";s:23:"Trying to open database";s:20:"ID_OPEN_DYNAFORM_TAB";s:30:"Open the Dynaform in a new tab";s:17:"ID_OPEN_IN_:POPUP";s:15:"Open in a popup";s:23:"ID_OPEN_IN_A_NEW_WINDOW";s:20:"Open in a new window";s:16:"ID_OPEN_IN_POPUP";s:15:"Open in a popup";s:12:"ID_OPEN_WITH";s:9:"Open With";s:19:"ID_OPERATING_SYSTEM";s:16:"Operating System";s:9:"ID_OPTION";s:6:"Option";s:10:"ID_OPTIONS";s:7:"Options";s:20:"ID_OPTIONS_MENU_TASK";s:17:"Options Menu Task";s:10:"ID_OPT_ALL";s:3:"All";s:16:"ID_OPT_COMPLETED";s:15:"Completed by Me";s:11:"ID_OPT_JUMP";s:7:"Jump To";s:11:"ID_OPT_READ";s:4:"Read";s:14:"ID_OPT_STARTED";s:13:"Started by Me";s:13:"ID_OPT_UNREAD";s:6:"Unread";s:14:"ID_ORIENTATION";s:11:"Orientation";s:9:"ID_ORIGIN";s:6:"Origin";s:14:"ID_ORIGIN_TASK";s:11:"Origin Task";s:8:"ID_OTHER";s:5:"Other";s:9:"ID_OUTBOX";s:6:"Outbox";s:18:"ID_OUTGOING_SERVER";s:15:"Outgoing Server";s:12:"ID_OUTPUT_DB";s:6:"Output";s:18:"ID_OUTPUT_DOCUMENT";s:15:"Output Document";s:19:"ID_OUTPUT_DOCUMENTS";s:16:"Output Documents";s:47:"ID_OUTPUT_DOCUMENT_CONFIG_NOT_SUPPORT_EXTENSION";s:65:"The document in its configuration does not support this extension";s:33:"ID_OUTPUT_DOCUMENT_DOES_NOT_EXIST";s:49:"The Output Document with {0}: {1} does not exist.";s:36:"ID_OUTPUT_DOCUMENT_INVALID_EXTENSION";s:17:"Invalid extension";s:31:"ID_OUTPUT_DOCUMENT_ITS_ASSIGNED";s:57:"The Output Document with {0}: {1} it\'s assigned in "{2}".";s:27:"ID_OUTPUT_DOCUMENT_TEMPLATE";s:24:"Output Document Template";s:18:"ID_OUTPUT_GENERATE";s:27:"Output Document to Generate";s:14:"ID_OUTPUT_INFO";s:27:"Output Document Information";s:19:"ID_OUTPUT_NOT_EXIST";s:42:"The output with {0}: \'{1}\' does not exist.";s:18:"ID_OUTPUT_NOT_SAVE";s:81:"Not saved because there is an Output Document with the same name in this process.";s:16:"ID_OUTPUT_REMOVE";s:45:"Output document has been removed successfully";s:16:"ID_OUTPUT_UPDATE";s:46:"Output document has been updated successfully.";s:27:"ID_OUT_PUT_DOC_UPLOAD_TITLE";s:36:"Upload Output Document Template File";s:30:"ID_OU_FOR_RETIRED_EMPLOYEES_OU";s:27:"OU for Retired Employees OU";s:10:"ID_OVERDUE";s:11:"Task Status";s:12:"ID_OVERWRITE";s:9:"Overwrite";s:18:"ID_OVERWRITE_EXIST";s:20:"Overwrite if exists?";s:20:"ID_OVERWRITE_PMTABLE";s:74:"The PMTable \'{0}\' already exists in the workspace, what do you want to do?";s:28:"ID_OVERWRITE_RELATED_PROCESS";s:99:"The report table \'{0}\' that you want to import is related to other process, what do you want to do?";s:20:"ID_OVERWRITE_RPTABLE";s:61:"The report table \'{0}\' already exist, what do you want to do?";s:11:"ID_OVER_DUE";s:12:"Inbox Status";s:8:"ID_OWNER";s:5:"Owner";s:20:"ID_OWNER_INFORMATION";s:17:"Owner Information";s:13:"ID_OWNER_TYPE";s:10:"Owner type";s:7:"ID_PAGE";s:4:"Page";s:12:"ID_PAGE_SIZE";s:9:"Page Size";s:16:"ID_PARALLEL_TASK";s:13:"Parallel Task";s:13:"ID_PARAMETERS";s:10:"Parameters";s:30:"ID_PARENT_DEPARTMENT_NOT_EXIST";s:31:"Parent department doesn\'t exist";s:16:"ID_PARTICIPATION";s:13:"Participation";s:25:"ID_PARTICIPATION_REQUIRED";s:23:"Participation Required?";s:18:"ID_PASSWD_REQUIRED";s:20:"Password is required";s:11:"ID_PASSWORD";s:8:"Password";s:23:"ID_PASSWORDS_DONT_MATCH";s:32:"The password fields don\'t match.";s:17:"ID_PASSWORD_ADMIN";s:32:"Password (admin)(Max. length 20)";s:24:"ID_PASSWORD_ADMIN_RETYPE";s:16:"Re-type Password";s:32:"ID_PASSWORD_CHANGED_SUCCESSFULLY";s:46:"Your password has been successfully changed to";s:29:"ID_PASSWORD_COMPLIES_POLICIES";s:49:"The password complies with the security policies.";s:19:"ID_PASSWORD_CONFIRM";s:16:"Confirm Password";s:34:"ID_PASSWORD_CONFIRMATION_INCORRECT";s:39:"The password confirmation is incorrect.";s:19:"ID_PASSWORD_CURRENT";s:16:"Current Password";s:25:"ID_PASSWORD_CURRENT_ENTER";s:26:"Enter the current password";s:29:"ID_PASSWORD_CURRENT_INCORRECT";s:33:"The current password is incorrect";s:21:"ID_PASSWORD_SURPRASES";s:50:"Password is longer than the maximum allowed length";s:19:"ID_PASSWORD_TESTING";s:16:"Testing password";s:7:"ID_PATH";s:4:"Path";s:8:"ID_PAUSE";s:5:"Pause";s:9:"ID_PAUSED";s:6:"Paused";s:14:"ID_PAUSED_CASE";s:5:"Pause";s:13:"ID_PAUSE_CASE";s:10:"Pause Case";s:21:"ID_PAUSE_CASE_TO_DATE";s:35:"Do you want to pause the case until";s:13:"ID_PAUSE_DATE";s:10:"Pause Date";s:15:"ID_PAUSING_CASE";s:12:"Pausing Case";s:10:"ID_PENDING";s:7:"Pending";s:15:"ID_PENDING_TASK";s:27:"Pending Task / Not Executed";s:16:"ID_PENDING_TASKS";s:13:"Pending Tasks";s:15:"ID_PERFORM_TASK";s:17:"Perform this Task";s:9:"ID_PERIOD";s:6:"Period";s:14:"ID_PERIODICITY";s:11:"Periodicity";s:14:"ID_PERMISSIONS";s:11:"Permissions";s:26:"ID_PERMISSIONS_FOR_THE_ROL";s:24:"Permissions for the role";s:27:"ID_PERMISSION_ALREADY_EXIST";s:30:"The Permission already exists!";s:18:"ID_PERMISSION_CODE";s:15:"Permission Code";s:28:"ID_PERMISSION_DOES_NOT_EXIST";s:44:"The permission with {0}: {1} does not exist.";s:18:"ID_PERMISSION_NAME";s:15:"Permission Name";s:17:"ID_PERMISSION_NEW";s:23:"New specific Permission";s:13:"ID_PERMITIONS";s:11:"Permissions";s:23:"ID_PERSONAL_INFORMATION";s:20:"Personal information";s:8:"ID_PHONE";s:5:"Phone";s:15:"ID_PHONE_NUMBER";s:12:"Phone Number";s:8:"ID_PHOTO";s:5:"Photo";s:11:"ID_PHP_INFO";s:15:"PHP Information";s:26:"ID_PHP_MSSQL_NOT_INSTALLED";s:26:"php-mssql is Not Installed";s:25:"ID_PHP_MYSQLI_NOT_INSTALL";s:27:"php-mysqli is Not Installed";s:25:"ID_PHP_MYSQL_NOT _INSTALL";s:26:"php-mysql is Not Installed";s:14:"ID_PHP_VERSION";s:11:"PHP Version";s:18:"ID_PHP_WEB_SERVICE";s:25:"PHP & Web Service options";s:6:"ID_PIN";s:3:"Pin";s:14:"ID_PIN_INVALID";s:18:"The PIN is invalid";s:9:"ID_PLEASE";s:6:"please";s:32:"ID_PLEASE_CHANGE_PASSWORD_POLICY";s:69:"Please change your password to one that complies with these policies.";s:43:"ID_PLEASE_CONFIGURE_ESTIMATED_DURATION_TASK";s:53:"Please, configure the estimated duration of the task.";s:24:"ID_PLEASE_ENTER_COMMENTS";s:22:"Please enter comments!";s:27:"ID_PLEASE_ENTER_CREDENTIALS";s:35:"Please enter your credentials below";s:27:"ID_PLEASE_ENTER_DESCRIPTION";s:28:"Please, enter a description.";s:31:"ID_PLEASE_ENTER_REQUIRED_FIELDS";s:32:"Please enter the required fields";s:21:"ID_PLEASE_SELECT_FILE";s:33:"Please select the file to attach!";s:32:"ID_PLEASE_SELECT_FILES_TO_UPLOAD";s:33:"Please select the files to upload";s:21:"ID_PLEASE_SELECT_LOGO";s:18:"Please Select Logo";s:29:"ID_PLEASE_SELECT_MAX_X_FIELDS";s:31:"Please select 80 fields at most";s:22:"ID_PLEASE_SELECT_PHOTO";s:21:"Please select a photo";s:23:"ID_PLEASE_SELECT_PLUGIN";s:24:"Please select the plugin";s:24:"ID_PLEASE_SELECT_PO_FILE";s:24:"Please select a .po file";s:29:"ID_PLEASE_SELECT_UPGRADE_FILE";s:30:"Please select the upgrade file";s:45:"ID_PLEASE_SET_VALUE_DAYS_EXECUTION_TIME_FIELD";s:61:"Please, set a value for the days in the Execution Time field.";s:19:"ID_PLEASE_TRY_LATER";s:17:"Please try later.";s:14:"ID_PLEASE_WAIT";s:14:"Please wait...";s:10:"ID_PLUGINS";s:7:"Plugins";s:20:"ID_PLUGINS_DIRECTORY";s:17:"Plugins Directory";s:18:"ID_PLUGINS_MANAGER";s:15:"Plugins Manager";s:21:"ID_PLUGIN_CANT_DELETE";s:62:"The plugin is activated, please deactivate first to remove it.";s:27:"ID_PLUGIN_DEPENDENCE_PLUGIN";s:39:"This plugin needs "{Dependence}" plugin";s:14:"ID_PLUGIN_FILE";s:11:"Plugin file";s:18:"ID_PMDRIVE_DISABLE";s:155:"Are you sure to disable the Google Drive Integration? If you do this, the input, output and file documents will be stored only in your ProcessMaker server.";s:29:"ID_PMDRIVE_NO_CONTENT_IN_FILE";s:50:"The file doesn\'t have any content stored on Drive.";s:10:"ID_PMGMAIL";s:8:"PM Gmail";s:18:"ID_PMGMAIL_DISABLE";s:124:"Are you sure to disable the Gmail Integration? If you do this, all the mails and relabelling sent to Gmail will be disabled.";s:24:"ID_PMGMAIL_GENERAL_ERROR";s:46:"An error in processing Gmail requests occurred";s:19:"ID_PMGMAIL_SETTINGS";s:31:"Settings for Processmaker Gmail";s:16:"ID_PMGMAIL_VALID";s:29:"The Gmail token is not valid.";s:12:"ID_PMG_EMAIL";s:21:"Service Account Email";s:11:"ID_PMG_FILE";s:27:"Service Account Certificate";s:18:"ID_PMG_SELECT_FILE";s:35:"Please select a json file to upload";s:18:"ID_PMG_TYPE_ACCEPT";s:33:"Only accepts files in format json";s:39:"ID_PMPLUGIN_IMPORT_PLUGIN_IS_ENTERPRISE";s:113:"The plugin "{0}" is a Enterprise Edition Plugin, please install the Enterprise Plugins Manager to use this plugin";s:10:"ID_PMTABLE";s:8:"PM Table";s:11:"ID_PMTABLES";s:9:"PM Tables";s:18:"ID_PMTABLES_ALERT1";s:46:"You can\'t repeat a column name, please rename:";s:18:"ID_PMTABLES_ALERT2";s:39:"Field Name for all columns is required.";s:18:"ID_PMTABLES_ALERT3";s:40:"Field Label for all columns is required.";s:18:"ID_PMTABLES_ALERT4";s:27:"Please set a field type for";s:18:"ID_PMTABLES_ALERT5";s:28:"Please set a field size for:";s:18:"ID_PMTABLES_ALERT6";s:47:"At least one column must be set as Primary Key.";s:18:"ID_PMTABLES_ALERT7";s:41:"Please set columns for this Report Table.";s:18:"ID_PMTABLES_ALERT8";s:30:"Set a Physical Field Name for:";s:23:"ID_PMTABLES_CANT_EXPORT";s:30:"There are no tables to export.";s:25:"ID_PMTABLES_NOTICE_EXPORT";s:58:"From each table select at least one Schema/Data to export.";s:38:"ID_PMTABLES_RESERVED_FIELDNAME_WARNING";s:71:"The word {0} is reserved by the database engine please set another one.";s:25:"ID_PMTABLE_ALREADY_EXISTS";s:30:"The table "{0}" already exits!";s:29:"ID_PMTABLE_CLASS_DOESNT_EXIST";s:41:"ERROR: The class fie "{0}" doesn\'t exist!";s:31:"ID_PMTABLE_DATA_EXISTS_WARNINIG";s:84:"record(s) were found in this table. If you edit the structure all data will be lost.";s:20:"ID_PMTABLE_DATA_KEEP";s:29:"Keep the records of the table";s:25:"ID_PMTABLE_DOES_NOT_EXIST";s:42:"The PM Table with {0}: {1} does not exist.";s:35:"ID_PMTABLE_FIELD_IS_NOT_PRIMARY_KEY";s:63:"The field {0}: {1}, is not a primary key field of the PM Table.";s:25:"ID_PMTABLE_IMPORT_SUCCESS";s:33:"File "{0}" imported successfully.";s:29:"ID_PMTABLE_IMPORT_WITH_ERRORS";s:36:"File "{0}" imported but with errors:";s:29:"ID_PMTABLE_INVALID_FIELD_NAME";s:84:"The following fields cannot be created because they contain the reserved words "{0}"";s:38:"ID_PMTABLE_INVALID_FIELD_NAME_VARIABLE";s:177:"There is a conflict with some field names: "{0}", please rename them avoiding the use of numbers and considering that underscores are ignored when validating unique field names.";s:23:"ID_PMTABLE_INVALID_FILE";s:41:"Invalid PM table(s) file, import aborted!";s:23:"ID_PMTABLE_INVALID_NAME";s:77:"Could not create the table with the name "{0}" because it is a reserved word.";s:20:"ID_PMTABLE_NOT_FOUND";s:62:"The PM Table associated with this DynaForm could not be found.";s:33:"ID_PMTABLE_NOT_FOUNDED_SAVED_DATA";s:116:"The data from this case was saved in the database, but it was not saved in the PM Table, which it couldn\'t be found.";s:32:"ID_PMTABLE_NOT_IMPORT_HAS_ERRORS";s:39:"File "{0}" was not imported has errors:";s:52:"ID_PMTABLE_PRIMARY_KEY_FIELD_IS_MISSING_IN_ATTRIBUTE";s:74:"The primary key field {0} of the PM Table is missing in the attribute {1}.";s:19:"ID_PMTABLE_REQUIRED";s:35:"It is required to select a PM table";s:29:"ID_PMTABLE_SAVE_AND_DATA_LOST";s:36:"Save changes? All data will be lost.";s:61:"ID_PMTABLE_TOTAL_PRIMARY_KEY_FIELDS_IS_NOT_EQUAL_IN_ATTRIBUTE";s:92:"The total primary key fields of the PM Table is {0}, the attribute {1} has {2} primary keys.";s:33:"ID_PMTABLE_UPLOADING_FILE_PROBLEM";s:40:"A problem occurred while uploading file.";s:14:"ID_PM_DYNAFORM";s:17:"PM Table Dynaform";s:29:"ID_PM_ENV_HOME_SETTINGS_TITLE";s:13:"Home Settings";s:34:"ID_PM_ENV_SETTINGS_CASESLIST_TITLE";s:20:"Cases Lists Settings";s:39:"ID_PM_ENV_SETTINGS_REGIONFIELDSET_TITLE";s:17:"Regional Settings";s:24:"ID_PM_ENV_SETTINGS_TITLE";s:33:"Processmaker Environment Settings";s:37:"ID_PM_ENV_SETTINGS_USERFIELDSET_TITLE";s:28:"Display Information Settings";s:14:"ID_PM_FILENAME";s:17:"Download PM File:";s:12:"ID_PM_FOLDER";s:19:"ProcessMaker Folder";s:26:"ID_PM_FUNCTION_CHANGE_CASE";s:87:"The "{0}" function has {1} the current case, the script has stopped to avoid conflicts.";s:10:"ID_PM_GRID";s:6:"pmGrid";s:30:"ID_PM_HEARTBEAT_SETTINGS_TITLE";s:24:"Heart Beat Configuration";s:11:"ID_PM_TABLE";s:8:"PM Table";s:15:"ID_POLICY_ALERT";s:60:"Your password does not meet the following password policies:";s:20:"ID_POLICY_ALERT_INFO";s:47:"Your password must meet the following policies:";s:7:"ID_PORT";s:4:"Port";s:19:"ID_PORT_UNREACHABLE";s:28:"Destination Port Unreachable";s:11:"ID_POSITION";s:8:"Position";s:12:"ID_POSTED_AT";s:9:"Posted at";s:20:"ID_POSTED_DATA_EMPTY";s:25:"The posted data is empty!";s:39:"ID_PPP_CHANGE_PASSWORD_AFTER_NEXT_LOGIN";s:63:"Your previous password has expired, please enter a new password";s:20:"ID_PPP_EXPIRATION_IN";s:22:"Password Expiration in";s:21:"ID_PPP_MAXIMUM_LENGTH";s:14:"Maximum length";s:21:"ID_PPP_MAXIMUN_LENGTH";s:14:"Maximum length";s:21:"ID_PPP_MINIMUM_LENGTH";s:14:"Minimum length";s:21:"ID_PPP_MINIMUN_LENGTH";s:14:"Minimum length";s:35:"ID_PPP_NUMERICAL_CHARACTER_REQUIRED";s:31:"Numerical Character is required";s:33:"ID_PPP_SPECIAL_CHARACTER_REQUIRED";s:29:"Special Character is required";s:35:"ID_PPP_UPPERCASE_CHARACTER_REQUIRED";s:31:"Uppercase Character is required";s:14:"ID_PREFERENCES";s:11:"Preferences";s:9:"ID_PREFIX";s:6:"Prefix";s:18:"ID_PREINSTALLATION";s:22:"Pre-installation check";s:10:"ID_PREVIEW";s:7:"Preview";s:11:"ID_PREVIOUS";s:8:"Previous";s:17:"ID_PREVIOUS_MONTH";s:14:"Previous Month";s:19:"ID_PREVIOUS_QUARTER";s:16:"Previous quarter";s:16:"ID_PREVIOUS_STEP";s:13:"Previous Step";s:16:"ID_PREVIOUS_WEEK";s:13:"Previous Week";s:16:"ID_PREVIOUS_YEAR";s:13:"Previous Year";s:10:"ID_PREVIUS";s:8:"Previous";s:14:"ID_PREV_VALUES";s:15:"Previous Values";s:14:"ID_PRIMARY_KEY";s:11:"Primary Key";s:11:"ID_PRIORITY";s:8:"Priority";s:13:"ID_PRIORITY_H";s:4:"HIGH";s:13:"ID_PRIORITY_L";s:3:"LOW";s:13:"ID_PRIORITY_N";s:6:"NORMAL";s:14:"ID_PRIORITY_VH";s:9:"VERY HIGH";s:14:"ID_PRIORITY_VL";s:8:"VERY LOW";s:10:"ID_PRIVACY";s:7:"Privacy";s:10:"ID_PRIVATE";s:7:"Private";s:12:"ID_PROCESING";s:15:"Processing: {0}";s:10:"ID_PROCESS";s:7:"Process";s:12:"ID_PROCESSED";s:9:"Processed";s:12:"ID_PROCESSES";s:9:"Processes";s:13:"ID_PROCESSING";s:14:"Processing ...";s:15:"ID_PROCESSMAKER";s:12:"ProcessMaker";s:33:"ID_PROCESSMAKER_ALREADY_INSTALLED";s:34:"ProcessMaker is already installed.";s:39:"ID_PROCESSMAKER_FORGOT_PASSWORD_SERVICE";s:36:"ProcessMaker Forgot Password Service";s:28:"ID_PROCESSMAKER_INSTALLATION";s:25:"ProcessMaker Installation";s:23:"ID_PROCESSMAKER_LICENSE";s:32:"ProcessMaker Open Source License";s:33:"ID_PROCESSMAKER_REQUIREMENTS_APCU";s:4:"ACPU";s:34:"ID_PROCESSMAKER_REQUIREMENTS_CHECK";s:21:"Check PM Requirements";s:33:"ID_PROCESSMAKER_REQUIREMENTS_CURL";s:12:"cURL Version";s:40:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION";s:106:"If any of these items are not supported (marked as " No"), then please take actions to correct them.
        ";s:41:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION2";s:104:"Failure to do so correctly could lead to your ProcessMaker installation not functioning correctly!
        ";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP1_1";s:97:"If any of these items are not supported (marked as No), then please take actions to correct them.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP1_2";s:85:"Failure to do so could lead your ProcessMaker installation not functioning correctly.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP2_1";s:95:"These settings are recommended for PHP in order to ensure full compatibility with ProcessMaker.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP2_2";s:83:"However, ProcessMaker still operates if your settings do not match the recommended.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_1";s:119:"In order for ProcessMaker to function correctly it needs to be able to access or write to certain files or directories.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP3_2";s:135:"If you see "unwritable", change the permissions on the file or directory to allow ProcessMaker to write to it.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP4_1";s:141:"ProcessMaker stores all of its data in a database. This screen gives the installation program the information needed to create this database.";s:48:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP4_2";s:123:"If you are installing ProcessMaker on a remote web server, you will need to get this information from your Database Server.";s:46:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP5";s:105:"ProcessMaker uses workspaces to store data. Please enter a valid workspace name and credentials to login.";s:46:"ID_PROCESSMAKER_REQUIREMENTS_DESCRIPTION_STEP6";s:3:"xxx";s:35:"ID_PROCESSMAKER_REQUIREMENTS_DOMXML";s:15:"DOM/XML Support";s:31:"ID_PROCESSMAKER_REQUIREMENTS_GD";s:10:"GD Support";s:33:"ID_PROCESSMAKER_REQUIREMENTS_LDAP";s:16:"LDAP Support (*)";s:42:"ID_PROCESSMAKER_REQUIREMENTS_LDAP_OPTIONAL";s:16:"LDAP is optional";s:40:"ID_PROCESSMAKER_REQUIREMENTS_MEMORYLIMIT";s:21:"Memory Limit >= 256MB";s:34:"ID_PROCESSMAKER_REQUIREMENTS_MSSQL";s:17:"MSSQL Support (*)";s:44:"ID_PROCESSMAKER_REQUIREMENTS_MULTIBYTESTRING";s:25:"Multibyte Strings Support";s:34:"ID_PROCESSMAKER_REQUIREMENTS_MYSQL";s:13:"MySQL Support";s:36:"ID_PROCESSMAKER_REQUIREMENTS_OPENSSL";s:19:"OpenSSL Version (*)";s:45:"ID_PROCESSMAKER_REQUIREMENTS_OPENSSL_OPTIONAL";s:20:"Open SSL is optional";s:32:"ID_PROCESSMAKER_REQUIREMENTS_PHP";s:76:"PHP recommended version 7.4, we maintain compatibility starting with PHP 7.3";s:33:"ID_PROCESSMAKER_REQUIREMENTS_SOAP";s:12:"Soap Support";s:23:"ID_PROCESSMAKER_SLOGAN1";s:48:"This Business Process is Powered By ProcessMaker";s:33:"ID_PROCESSMAKER_SUCCESS_INSTALLED";s:94:"ProcessMaker was successfully installed
        Workspace " {0} " was installed correctly.";s:30:"ID_PROCESSMAKER_UI_NOT_INSTALL";s:119:"The new ProcessMaker UI couldn\'t be applied on installation. You can enable it afterwards in ADMIN > Settings > System.";s:26:"ID_PROCESSMAKER_VALIDATION";s:113:"Please insert a valid processmaker user name and password, in order to assign the case to their respective owner.";s:34:"ID_PROCESSMAKER_WRITE_CONFIG_INDEX";s:59:"ProcessMaker couldn\'t write on configuration file: {0}
        ";s:37:"ID_PROCESSMAP_CALENDAR_CONFIRM_DELETE";s:46:"Are you sure you want to delete this calendar?";s:23:"ID_PROCESSMAP_DYNAFORMS";s:9:"DynaForms";s:24:"ID_PROCESSMAP_EVALUATION";s:10:"Evaluation";s:22:"ID_PROCESSMAP_MESSAGES";s:8:"Messages";s:38:"ID_PROCESSMAP_PARALLEL_EVALUATION_FORK";s:29:"Parallel by Evaluation (fork)";s:27:"ID_PROCESSMAP_PARALLEL_FORK";s:15:"Parallel (fork)";s:27:"ID_PROCESSMAP_PARALLEL_JOIN";s:15:"Parallel (join)";s:23:"ID_PROCESSMAP_SELECTION";s:9:"Selection";s:24:"ID_PROCESSMAP_SEQUENTIAL";s:10:"Sequential";s:19:"ID_PROCESSMAP_TITLE";s:13:"BPMN Designer";s:29:"ID_PROCESSNAME_ALREADY_EXISTS";s:32:"The Process Name already exists!";s:30:"ID_PROCESSTITLE_ALREADY_EXISTS";s:47:"The Process Title "{PRO_TITLE}" already exists!";s:28:"ID_PROCESS_ALREADY_IN_SYSTEM";s:85:"The process is already in the System and the value for importOption is not specified.";s:62:"ID_PROCESS_CANNOT_BE_UPDATED_THERE_ARE_TASKS_WITH_ACTIVE_CASES";s:237:"The process cannot be updated because there are tasks with active cases which are not presented in the new definition of the process, please verify that there are not active cases in those tasks before trying to import the process again.";s:22:"ID_PROCESS_CANT_DELETE";s:60:"You can\'t delete the process "{0}" because it has {1} cases.";s:19:"ID_PROCESS_CATEGORY";s:18:"Process Categories";s:32:"ID_PROCESS_DEFINITION_INCOMPLETE";s:91:"To create a new process all the process objects must be selected/included in the pmx2 file.";s:34:"ID_PROCESS_DEFINITION_NON_EXISTENT";s:59:"The PROCESS_DEFINITION is required to complete the process.";s:22:"ID_PROCESS_DEF_PROBLEM";s:80:"There is a problem in the process definition and/or an exception error occurred.";s:27:"ID_PROCESS_DELETE_ALL_LABEL";s:45:"Do you want to delete all selected processes?";s:23:"ID_PROCESS_DELETE_LABEL";s:43:"Do you want to delete the selected process?";s:18:"ID_PROCESS_DETAILS";s:15:"Process Details";s:25:"ID_PROCESS_DOES_NOT_EXIST";s:41:"The process with {0}: {1} does not exist.";s:21:"ID_PROCESS_EFFICIENCE";s:24:"Process Efficiency Index";s:27:"ID_PROCESS_EXIST_SOME_GROUP";s:119:"Some of the groups that you are trying to import already exist. Please select one of the following options to continue.";s:23:"ID_PROCESS_FILE_MANAGER";s:20:"Process File Manager";s:34:"ID_PROCESS_GROUP_MERGE_PREEXISTENT";s:106:"Merge the imported groups, with the preexistent local groups (no changes will be made to the local groups)";s:23:"ID_PROCESS_GROUP_RENAME";s:26:"Rename the imported groups";s:13:"ID_PROCESS_ID";s:10:"Process ID";s:23:"ID_PROCESS_INEFFICIENCE";s:25:"Process Inefficiency Cost";s:22:"ID_PROCESS_INFORMATION";s:19:"Process Information";s:22:"ID_PROCESS_IS_REQUIRED";s:25:"Process field is required";s:14:"ID_PROCESS_MAP";s:11:"Process Map";s:15:"ID_PROCESS_NAME";s:12:"Process Name";s:21:"ID_PROCESS_NOCATEGORY";s:11:"No Category";s:24:"ID_PROCESS_NONE_CATEGORY";s:15:"- No Category -";s:20:"ID_PROCESS_NOT_EXIST";s:247:"The report table \'{0}\' is related to a process not present in the workspace, import the related process first. To relate the report table to other process, open the process in the designer and import from there. The report table can\'t be imported.";s:22:"ID_PROCESS_NO_CATEGORY";s:11:"No Category";s:19:"ID_PROCESS_NO_EXIST";s:22:"Process doesn\'t exist!";s:22:"ID_PROCESS_PERMISSIONS";s:19:"Process Permissions";s:29:"ID_PROCESS_PERMISSIONS_CREATE";s:39:"Process Permission created successfully";s:27:"ID_PROCESS_PERMISSIONS_EDIT";s:38:"Process Permission edited successfully";s:31:"ID_PROCESS_PERMISSION_NOT_EXIST";s:54:"The process permission with {0}: \'{1}\' does not exist.";s:15:"ID_PROCESS_SAVE";s:12:"Process Save";s:23:"ID_PROCESS_SAVE_SUCCESS";s:35:"The process was saved successfully!";s:31:"ID_PROCESS_SUCESSFULLY_IMPORTED";s:28:"Process sucessfully imported";s:16:"ID_PROCESS_TASKS";s:14:"Process\'s Task";s:25:"ID_PROCESS_TITLE_REQUIRED";s:26:"Process Title is required.";s:14:"ID_PROCESS_UID";s:11:"Process UID";s:26:"ID_PROCESS_UID_NOT_DEFINED";s:31:"the process uid is not defined!";s:34:"ID_PROCESS_VARIABLE_DOES_NOT_EXIST";s:42:"The variable with {0}: {1} does not exist.";s:48:"ID_PROCESS_VARIABLE_REQUIRED_VARIABLES_FOR_QUERY";s:62:"The variable "{0}" requires the variables "{1}" for the query.";s:22:"ID_PROCESS_WAS_NOT_SET";s:27:"The Process ID was not set!";s:10:"ID_PROFILE";s:7:"Profile";s:34:"ID_PROJECT_CATEGORY_DOES_NOT_EXIST";s:50:"The project category with {0}: {1} does not exist.";s:25:"ID_PROJECT_DOES_NOT_EXIST";s:41:"The project with {0}: {1} does not exist.";s:29:"ID_PROJECT_DOWNLOAD_CORRECTLY";s:32:"Project downloaded successfully.";s:18:"ID_PROJECT_IS_BPMN";s:42:"The project with {0}: {1} is BPMN process.";s:20:"ID_PROJECT_NOT_EXIST";s:43:"The project with {0}: \'{1}\' does not exist.";s:30:"ID_PROJECT_PUBLISHED_CORRECTLY";s:37:"Project has been published correctly.";s:27:"ID_PROJECT_SHARED_CORRECTLY";s:34:"Project has been shared correctly.";s:31:"ID_PROJECT_TITLE_ALREADY_EXISTS";s:49:"The project title with {0}: "{1}" already exists.";s:22:"ID_PROJECT_WAS_NOT_SET";s:27:"The Project ID was not set!";s:13:"ID_PROPERTIES";s:10:"Properties";s:11:"ID_PROVIDER";s:8:"Provider";s:13:"ID_PROXY_HOST";s:4:"Host";s:17:"ID_PROXY_PASSWORD";s:8:"Password";s:13:"ID_PROXY_PORT";s:4:"Port";s:17:"ID_PROXY_SETTINGS";s:14:"Proxy Settings";s:13:"ID_PROXY_USER";s:4:"User";s:18:"ID_PRO_CREATE_DATE";s:12:"Date Created";s:12:"ID_PRO_DEBUG";s:5:"Debug";s:18:"ID_PRO_DESCRIPTION";s:19:"Process Description";s:23:"ID_PRO_EFFICIENCY_INDEX";s:24:"Process Efficiency Index";s:12:"ID_PRO_TITLE";s:13:"Process Title";s:29:"ID_PRO_UID_PARAMETER_IS_EMPTY";s:31:"The PRO_UID parameter is empty.";s:11:"ID_PRO_USER";s:14:"Assigned users";s:9:"ID_PUBLIC";s:6:"Public";s:20:"ID_PUBLIC_INDEX_FILE";s:17:"Public Index file";s:12:"ID_PUBLISHER";s:9:"Publisher";s:10:"ID_QUARTER";s:7:"Quarter";s:8:"ID_QUERY";s:5:"Query";s:14:"ID_QUOTA_TOTAL";s:11:"Quota total";s:13:"ID_QUOTA_TYPE";s:10:"Quota type";s:13:"ID_QUOTA_USED";s:10:"Quota used";s:19:"ID_RADIO_CREATE_NEW";s:30:"Create a new copy of the Table";s:21:"ID_RADIO_NOT_IMPORTED";s:23:"Do not import the Table";s:25:"ID_RADIO_NOT_IMPORTED_PMT";s:23:"Do not import the Table";s:25:"ID_RADIO_NOT_IMPORTED_RPT";s:30:"Do not import the report table";s:18:"ID_RADIO_OVERWRITE";s:28:"Overwrite the existing Table";s:24:"ID_RADIO_RELATED_PROCESS";s:43:"Import and relate it to the current process";s:9:"ID_RATING";s:6:"Rating";s:16:"ID_RBAC_DATABASE";s:13:"Rbac Database";s:21:"ID_RBAC_DATABASE_NAME";s:36:"Please enter the Rbac Database Name.";s:19:"ID_RB_DATABASE_NAME";s:18:"Rbac Database Name";s:13:"ID_REACTIVATE";s:10:"Reactivate";s:20:"ID_REACTIVATING_CASE";s:20:"Reactivating case...";s:28:"ID_READ_ONLINE_DOCUMENTATION";s:25:"Read Online Documentation";s:16:"ID_REALLY_SHOULD";s:23:"You really should do it";s:9:"ID_REASON";s:6:"Reason";s:18:"ID_REASON_REASSIGN";s:28:"Reason to reassign this case";s:11:"ID_REASSIGN";s:8:"Reassign";s:13:"ID_REASSIGNED";s:10:"Reassigned";s:16:"ID_REASSIGNED_TO";s:13:"Reassigned to";s:15:"ID_REASSIGNMENT";s:12:"REASSIGNMENT";s:21:"ID_REASSIGNMENT_ERROR";s:106:"The case has already been routed or assigned to another person. Try to open the case again to reassign it.";s:28:"ID_REASSIGNMENT_PAUSED_ERROR";s:42:"The case is paused and can\'t be reasigned.";s:23:"ID_REASSIGNMENT_SUCCESS";s:49:"Case #{APP_NUMBER} was reassigned to user {USER}.";s:29:"ID_REASSIGN_ALL_CASES_BY_TASK";s:26:"Reassign All Cases by Task";s:16:"ID_REASSIGN_CASE";s:13:"Reassign Case";s:17:"ID_REASSIGN_CASES";s:14:"Reassign Cases";s:19:"ID_REASSIGN_CONFIRM";s:33:"Do you want to reassign the case?";s:20:"ID_REASSIGN_MY_CASES";s:17:"Reassign my cases";s:14:"ID_REASSIGN_TO";s:8:"Reassign";s:17:"ID_REASSIGN_USERS";s:17:"User Reassignment";s:26:"ID_REBUILDING_TRANSLATIONS";s:23:"Rebuilding translations";s:18:"ID_REBUILD_SUCCESS";s:15:"REBUILD SUCCESS";s:26:"ID_RECEIVED_EMPTY_RESPONSE";s:26:"Received an empty response";s:24:"ID_RECENT_VERSION_PLUGIN";s:72:"Task does not have a routing rule. Please, check the process definition.";s:10:"ID_RECORDS";s:7:"Records";s:27:"ID_RECORD_CANNOT_BE_CREATED";s:33:"The record couldn’t be created!";s:24:"ID_RECORD_DOES_NOT_EXIST";s:21:"Record does not exist";s:33:"ID_RECORD_DOES_NOT_EXIST_IN_TABLE";s:46:"The record "{0}", does not exist in table {1}.";s:25:"ID_RECORD_EXISTS_IN_TABLE";s:37:"The record "{0}" exists in table {1}.";s:19:"ID_RECORD_NOT_FOUND";s:28:"Record not found for id: {0}";s:27:"ID_RECORD_SAVED_SUCCESFULLY";s:25:"Record saved successfully";s:15:"ID_REDIRECT_URL";s:59:"The System can try to redirect to the correct url. Try Now.";s:14:"ID_RED_ENDS_IN";s:11:"Red Ends In";s:16:"ID_RED_STARTS_IN";s:13:"Red Starts In";s:16:"ID_REFRESH_LABEL";s:7:"Refresh";s:27:"ID_REFRESH_LABEL_PLUGIN_TIP";s:23:"Refresh the plugin list";s:18:"ID_REFRESH_MESSAGE";s:21:"You clicked Ctrl + F5";s:21:"ID_REFRESH_TIME_SCOPE";s:54:"Only applied for counters in the home view folder list";s:23:"ID_REFRESH_TIME_SECONDS";s:31:"Counters Refresh Time (seconds)";s:15:"ID_REFRESH_VIEW";s:12:"Refresh view";s:13:"ID_REGENERATE";s:10:"Regenerate";s:25:"ID_REGENERATE_DATA_REPORT";s:22:"Regenerate Data Report";s:29:"ID_REGISTRY_CANNOT_BE_UPDATED";s:31:"The registry cannot be updated!";s:17:"ID_RELATED_GROUPS";s:14:"Related Groups";s:18:"ID_RELATED_PROCESS";s:15:"Related Process";s:16:"ID_RELATED_TASKS";s:13:"Related Tasks";s:16:"ID_RELATED_USERS";s:13:"Related Users";s:17:"ID_RELATION_EXIST";s:29:"This relation already exists!";s:9:"ID_RELOAD";s:6:"Reload";s:9:"ID_REMOVE";s:6:"Remove";s:10:"ID_REMOVED";s:7:"Removed";s:24:"ID_REMOVED_SESSION_FILES";s:36:"Older session files has been removed";s:25:"ID_REMOVE_ALL_BUTTON_FACE";s:2:"<<";s:20:"ID_REMOVE_ALL_GROUPS";s:17:"Remove All Groups";s:21:"ID_REMOVE_ALL_MEMBERS";s:18:"Remove All Members";s:25:"ID_REMOVE_ALL_PERMISSIONS";s:22:"Remove All Permissions";s:19:"ID_REMOVE_ALL_USERS";s:16:"Remove All Users";s:15:"ID_REMOVE_FIELD";s:12:"Remove field";s:14:"ID_REMOVE_LOGO";s:42:"Are you sure you want to delete this Logo?";s:16:"ID_REMOVE_PLUGIN";s:13:"Remove Plugin";s:14:"ID_REMOVE_ROLE";s:42:"Are you sure you want to delete this role?";s:29:"ID_REMOVE_SUPERVISOR_DYNAFORM";s:26:"Remove Supervisor Dynaform";s:26:"ID_REMOVE_SUPERVISOR_INPUT";s:23:"Remove Supervisor Input";s:14:"ID_REMOVE_USER";s:11:"Remove User";s:32:"ID_REMOVE_USERS_FROM_DEPARTAMENT";s:28:"Remove Users From Department";s:22:"ID_REMOVE_VARIABLES_IN";s:19:"Remove Variables In";s:23:"ID_REMOVE_VARIABLES_OUT";s:20:"Remove Variables Out";s:27:"ID_REMOVING_SELECTED_TABLES";s:40:"Removing selected table(s), please wait!";s:9:"ID_RENAME";s:6:"Rename";s:8:"ID_RENEW";s:5:"Renew";s:9:"ID_REOPEN";s:7:"re-open";s:15:"ID_REPEAT_EVERY";s:12:"Repeat every";s:12:"ID_REPEAT_ON";s:9:"Repeat on";s:14:"ID_REPLACED_BY";s:11:"Replaced by";s:16:"ID_REPLACED_LOGO";s:21:"The logo was replaced";s:14:"ID_REPLACE_ALL";s:11:"Replace all";s:15:"ID_REPLACE_LOGO";s:12:"Replace Logo";s:26:"ID_REPLACE_WITHOUT_CHANGES";s:33:"Replace the value without changes";s:10:"ID_REPORT1";s:33:"Case duration by process and task";s:10:"ID_REPORT2";s:27:"Number of cases per process";s:10:"ID_REPORT3";s:25:"Number of cases per month";s:10:"ID_REPORT4";s:33:"Number of cases per starting user";s:10:"ID_REPORT5";s:34:"Number of cases per executing user";s:10:"ID_REPORTS";s:7:"Reports";s:13:"ID_REPORTS_TO";s:10:"Reports to";s:18:"ID_REPORT_DATABASE";s:15:"Report Database";s:23:"ID_REPORT_DATABASE_NAME";s:38:"Please enter the Report Database Name.";s:16:"ID_REPORT_EDITED";s:32:"Report Table Edited Successfully";s:17:"ID_REPORT_REMOVED";s:42:"Report Table has been removed successfully";s:14:"ID_REPORT_SAVE";s:31:"Report Table Saved Successfully";s:15:"ID_REPORT_TABLE";s:12:"Report Table";s:16:"ID_REPORT_TABLES";s:13:"Report Tables";s:40:"ID_REPORT_TABLES_DATA_EXPORT_NOT_ALLOWED";s:45:"Data export for Report Tables is not allowed!";s:21:"ID_REPORT_TABLE_TITLE";s:5:"Title";s:17:"ID_REQUEST_ACTION";s:25:"You may request an action";s:27:"ID_REQUEST_ACTION_NOT_EXIST";s:35:"The requested action does not exist";s:20:"ID_REQUEST_DOCUMENTS";s:15:"Input Documents";s:15:"ID_REQUEST_SENT";s:13:"Request sent.";s:17:"ID_REQUIRED_FIELD";s:14:"Required Field";s:24:"ID_REQUIRED_FIELDS_ERROR";s:36:"Some required fields were not filled";s:23:"ID_REQUIRED_FIELDS_GRID";s:122:"The marked fields in the form are required and/or have errors in their format. Please verify the fields before continuing.";s:31:"ID_REQUIRED_NAME_CASE_SCHEDULER";s:41:"You forgot the name of the Case Scheduler";s:25:"ID_REQUIRED_NAME_DYNAFORM";s:23:"Dynaform name required.";s:9:"ID_RESEND";s:6:"Resend";s:16:"ID_RESERVED_WORD";s:29:"because it is a reserved word";s:8:"ID_RESET";s:5:"Reset";s:14:"ID_RESET_DATES";s:11:"Reset Dates";s:16:"ID_RESET_FILTERS";s:13:"Reset Filters";s:17:"ID_RESET_PASSWORD";s:14:"Reset password";s:25:"ID_RESOLVE_APPLICATION_ID";s:52:"Can not resolve the Apllication ID for this request.";s:30:"ID_RESPONSABILITIES_ASSIGNMENT";s:30:"Assignment of responsibilities";s:23:"ID_RESTORED_SUCESSFULLY";s:20:"Restored sucessfully";s:18:"ID_RESTORE_DEFAULT";s:15:"Restore default";s:15:"ID_RESTORE_LOGO";s:24:"Restore the default logo";s:17:"ID_RESTORING_CASE";s:14:"Restoring case";s:9:"ID_RESULT";s:6:"Result";s:9:"ID_RESUME";s:6:"Resume";s:25:"ID_RETURN_ADVANCED_SEARCH";s:6:"Return";s:8:"ID_RIGHT";s:5:"right";s:15:"ID_RIGHT_MARGIN";s:12:"Right Margin";s:7:"ID_ROLE";s:4:"Role";s:8:"ID_ROLES";s:5:"Roles";s:23:"ID_ROLES_CAN_NOT_DELETE";s:67:"This role cannot be deleted while it still has some assigned users.";s:12:"ID_ROLES_MSG";s:28:"You cannot modify this role.";s:23:"ID_ROLES_SUCCESS_DELETE";s:37:"Your role has been deleted correctly.";s:20:"ID_ROLES_SUCCESS_NEW";s:32:"Role has been created correctly.";s:23:"ID_ROLES_SUCCESS_UPDATE";s:32:"Role has been updated correctly.";s:27:"ID_ROLE_CODE_ALREADY_EXISTS";s:45:"The role code with {0}: "{1}" already exists.";s:30:"ID_ROLE_CODE_INVALID_CHARACTER";s:61:"The \'Code\' field cannot contain special characters or spaces.";s:22:"ID_ROLE_DOES_NOT_EXIST";s:38:"The role with {0}: {1} does not exist.";s:14:"ID_ROLE_EXISTS";s:25:"Role code already exists.";s:47:"ID_ROLE_FIELD_CANNOT_CONTAIN_SPECIAL_CHARACTERS";s:60:"The "{0}" field cannot contain special characters or spaces.";s:16:"ID_ROLE_INACTIVE";s:27:"The user\'s role is inactive";s:27:"ID_ROLE_NAME_ALREADY_EXISTS";s:45:"The role name with {0}: "{1}" already exists.";s:22:"ID_ROLE_NAME_NOT_EMPTY";s:34:"The \'Name\' field can not be empty.";s:38:"ID_ROLE_PERMISSION_IS_ALREADY_ASSIGNED";s:61:"The permission with {0}: {1} is already assigned to the role.";s:34:"ID_ROLE_PERMISSION_IS_NOT_ASSIGNED";s:57:"The permission with {0}: {1} is not assigned to the role.";s:54:"ID_ROLE_PERMISSION_ROLE_PERMISSIONS_CAN_NOT_BE_CHANGED";s:53:"The permissions of the "{0}" role can not be changed.";s:32:"ID_ROLE_USER_IS_ALREADY_ASSIGNED";s:55:"The user with {0}: {1} is already assigned to the role.";s:28:"ID_ROLE_USER_IS_NOT_ASSIGNED";s:51:"The user with {0}: {1} is not assigned to the role.";s:14:"ID_ROOT_FOLDER";s:11:"Root Folder";s:12:"ID_ROOT_USER";s:9:"Root User";s:18:"ID_ROOT_USER_SUPER";s:29:"Root User has SUPER privilege";s:21:"ID_ROUTED_CASE_STATUS";s:18:"Routed Case Status";s:22:"ID_ROUTE_BATCH_ROUTING";s:22:"Route cases per batch?";s:19:"ID_ROUTE_IS_SECJOIN";s:32:"The route is of "SEC-JOIN" type.";s:48:"ID_ROUTE_PARENT_DOES_NOT_EXIST_FOR_ROUTE_SECJOIN";s:66:"The parent route does not exist for this route of "SEC-JOIN" type.";s:47:"ID_ROUTE_TO_TASK_INTERMEDIATE-THROW-EMAIL-EVENT";s:50:"The following case is a "Intermediate Email Event"";s:49:"ID_ROUTE_TO_TASK_INTERMEDIATE_CATCH_MESSAGE_EVENT";s:67:"The case will be paused until you receive the corresponding message";s:47:"ID_ROUTE_TO_TASK_INTERMEDIATE_CATCH_TIMER_EVENT";s:63:"The case will be stopped until it has reached the time setting.";s:28:"ID_ROUTE_TO_TASK_SCRIPT_TASK";s:37:"The following case is a "Script-Task"";s:29:"ID_ROUTE_TO_TASK_SERVICE_TASK";s:38:"The following case is a "Service-Task"";s:41:"ID_ROUTING_SCREEN_TEMPLATE_DOES_NOT_EXIST";s:57:"The routing screen template with {0}: {1} does not exist.";s:7:"ID_ROWS";s:4:"Rows";s:16:"ID_ROWS_PER_PAGE";s:13:"Rows per Page";s:21:"ID_ROW_DOES_NOT_EXIST";s:24:"This row does not exist!";s:19:"ID_RP_DATABASE_NAME";s:20:"Report Database Name";s:27:"ID_RT_CONTINUE_TABLE_RENAME";s:27:"Continue renaming the table";s:21:"ID_RT_NOT_CHANGE_NAME";s:18:"Do not change name";s:23:"ID_RT_RENAME_NAME_TABLE";s:111:"All references to the previous table name are going to be invalid. Do you really want to change the table name?";s:24:"ID_RULES_AND_USER_GROUPS";s:21:"Rules and user groups";s:27:"ID_SALES_DEPARTMENT_REQUEST";s:64:"It sends a request to Sales Department, do you want to continue?";s:14:"ID_SAML_ENABLE";s:26:"SAML Authentication Enable";s:16:"ID_SAML_PROVIDER";s:28:"SAML Authentication Provider";s:10:"ID_SAMPLES";s:7:"Samples";s:6:"ID_SAT";s:3:"Sat";s:7:"ID_SAVE";s:4:"Save";s:8:"ID_SAVED";s:5:"Saved";s:9:"ID_SAVED2";s:8:"Saved...";s:21:"ID_SAVED_SUCCESSFULLY";s:18:"Saved Successfully";s:20:"ID_SAVE_AND_CONTINUE";s:17:"Save and Continue";s:15:"ID_SAVE_CHANGES";s:12:"Save Changes";s:39:"ID_SAVE_DERIVATION_RULES_BEFORE_CLOSING";s:49:"Save changes to the routing rules before closing?";s:44:"ID_SAVE_DYNAFORM_INFORMATION_BEFORE_PRINTING";s:64:"Do you want to save the dynaform information before printing it?";s:22:"ID_SAVE_GUIDE_POSITION";s:18:"Save Line Position";s:16:"ID_SAVE_NEW_STEP";s:13:"Save New Step";s:16:"ID_SAVE_SETTINGS";s:13:"Save Settings";s:21:"ID_SAVE_TASK_POSITION";s:18:"Save Task Position";s:23:"ID_SAVE_TASK_PROPERTIES";s:20:"Save Task Properties";s:21:"ID_SAVE_TEXT_POSITION";s:18:"Save Text Position";s:9:"ID_SAVING";s:9:"Saving...";s:30:"ID_SAVING_ENVIRONMENT_SETTINGS";s:27:"Saving Environment Settings";s:15:"ID_SAVING_LABEL";s:6:"Saving";s:17:"ID_SAVING_PROCESS";s:14:"Saving process";s:17:"ID_SCHEDULER_LIST";s:19:"New cases scheduler";s:16:"ID_SCHEDULER_LOG";s:20:"Cases Scheduler Logs";s:34:"ID_SCHEDULER_SUCCESS_CHANGE_STATUS";s:49:"Case Scheduler status has been changed correctly.";s:27:"ID_SCHEDULER_SUCCESS_DELETE";s:42:"Case Scheduler has been deleted correctly.";s:24:"ID_SCHEDULER_SUCCESS_NEW";s:42:"Case Scheduler has been created correctly.";s:27:"ID_SCHEDULER_SUCCESS_UPDATE";s:42:"Case Scheduler has been updated correctly.";s:17:"ID_SCHEDULER_TASK";s:17:"Scheduled Task ID";s:9:"ID_SCHEMA";s:6:"Schema";s:14:"ID_SCRIPT_TASK";s:11:"Script Task";s:42:"ID_SCRIPT_TASK_ACTIVITY_ALREADY_REGISTERED";s:50:"The Script-Task with {0}: "{1}" already registered";s:9:"ID_SEARCH";s:6:"Search";s:12:"ID_SEARCHING";s:12:"Searching...";s:27:"ID_SEARCHING_CANCEL_MESSAGE";s:135:"We are still gathering your search results. This may take a while based on your search criteria. You may cancel this search at any time";s:21:"ID_SEARCHING_TIME_OUT";s:21:"Your search timed out";s:29:"ID_SEARCHING_UNEXPECTED_ERROR";s:116:"An unexpected error occurred while searching for your results. Error Code {0} and Please contact your administrator.";s:37:"ID_SEARCHING_UNEXPECTED_ERROR_DEFAULT";s:97:"An unexpected error occurred while searching for your results. Please contact your administrator.";s:22:"ID_SEARCH_ALSO_APP_UID";s:32:"Search also in the APP_UID field";s:18:"ID_SEARCH_FOR_USER";s:15:"Search for user";s:17:"ID_SEARCH_PATTERN";s:14:"Search Pattern";s:16:"ID_SEARCH_RESULT";s:14:"Search results";s:14:"ID_SEARCH_USER";s:8:"Username";s:22:"ID_SEARCH_XML_METADATA";s:19:"Search XML metadata";s:9:"ID_SECOND";s:6:"Second";s:10:"ID_SECONDS";s:7:"Seconds";s:20:"ID_SECOND_ABBREVIATE";s:1:"s";s:16:"ID_SECOND_FIGURE";s:12:"Second Graph";s:6:"ID_SEE";s:3:"See";s:16:"ID_SEE_FULL_LIST";s:17:"See complete list";s:9:"ID_SELECT";s:6:"Select";s:11:"ID_SELECTED";s:8:"selected";s:17:"ID_SELECTED_FIELD";s:14:"selected field";s:25:"ID_SELECTED_IMAGE_DELETED";s:36:"The selected image has been deleted.";s:25:"ID_SELECTED_IMAGE_IS_LOGO";s:51:"The selected image has been established as the logo";s:13:"ID_SELECT_ALL";s:70:"You must define at least one \'ALL\' for other days you have not defined";s:18:"ID_SELECT_AN_IMAGE";s:22:"Please select an image";s:21:"ID_SELECT_AUTH_SOURCE";s:31:"Select Authentication Source...";s:19:"ID_SELECT_DATE_TIME";s:51:"Select the time and day you want this task to start";s:21:"ID_SELECT_DAY_OF_WEEK";s:35:"Select the day(s) of the week below";s:19:"ID_SELECT_DIRECTORY";s:18:"Select a directory";s:18:"ID_SELECT_DYNAFORM";s:31:"Please select the Dynaform Type";s:30:"ID_SELECT_DYNAFORM_USE_IN_CASE";s:86:"The "dyn_uid" parameter is required to configure a Web Entry of type "Single Dynaform"";s:14:"ID_SELECT_FILE";s:13:"Select a file";s:25:"ID_SELECT_FILE_PMT_IMPORT";s:25:"Please select a .pmt file";s:24:"ID_SELECT_FILE_PM_IMPORT";s:24:"Please select a .pm file";s:28:"ID_SELECT_FIRST_PM_TABLE_ROW";s:45:"First select a PM Table from the list please.";s:19:"ID_SELECT_FIRST_ROW";s:32:"First select a ROW from the list";s:14:"ID_SELECT_GRID";s:13:"Select a grid";s:28:"ID_SELECT_LANGUAGE_FROM_LIST";s:45:"First select a language from the list please.";s:21:"ID_SELECT_LEAST_FIELD";s:65:"Select at least one field (You can select a maximum of 80 fields)";s:22:"ID_SELECT_LICENSE_FILE";s:21:"Select a license file";s:22:"ID_SELECT_ONE_AT_LEAST";s:38:"Select at least one item from the list";s:28:"ID_SELECT_ONE_ITEM_FROM_LIST";s:47:"Select just one item from the list to be edited";s:20:"ID_SELECT_ONE_OPTION";s:17:"select one option";s:22:"ID_SELECT_OPTION_TABLE";s:73:"Select an option to export the schema or data from the selected table(s).";s:16:"ID_SELECT_PLUGIN";s:22:"Please select a plugin";s:21:"ID_SELECT_PLUGIN_FILE";s:20:"Select a plugin file";s:17:"ID_SELECT_PM_FILE";s:18:"Select a .pmt file";s:22:"ID_SELECT_PROCESS_FILE";s:21:"Select a process file";s:16:"ID_SELECT_STATUS";s:16:"Select status...";s:15:"ID_SELECT_TABLE";s:32:"Please select a table to export.";s:23:"ID_SELECT_TEMPLATE_FILE";s:22:"Select a template file";s:23:"ID_SELECT_USER_OR_GROUP";s:70:"Please select the name of a user or a group in the Group or User field";s:18:"ID_SELECT_VARIABLE";s:15:"Select Variable";s:19:"ID_SELECT_WORKSPACE";s:18:"Select a workspace";s:14:"ID_SELFSERVICE";s:12:"Self Service";s:15:"ID_SELF_SERVICE";s:12:"Self Service";s:17:"ID_SEL_AFTER_DATE";s:24:"Please select after date";s:18:"ID_SEL_BEFORE_DATE";s:25:"Please select before date";s:15:"ID_SEL_END_DATE";s:22:"Please select end date";s:17:"ID_SEL_START_DATE";s:24:"Please select start date";s:11:"ID_SEMESTER";s:8:"Semester";s:7:"ID_SEND";s:4:"Post";s:18:"ID_SENDING_REQUEST";s:18:"Sending Request...";s:35:"ID_SENDING_REQUEST_SALES_DEPARTMENT";s:64:"Sending request to ProcessMaker Sales Department, please wait...";s:25:"ID_SENDMAIL_NOT_INSTALLED";s:149:"An error has occured, please verify on which server "SendMail" has been installed or any other mail service, and if it has been configured correctly.";s:10:"ID_SEND_AT";s:7:"send at";s:31:"ID_SEND_EMAIL_CASE_PARTICIPANTS";s:30:"Send Email (Case Participants)";s:29:"ID_SEND_EMAIL_TO_PARTICIPANTS";s:26:"Send email to participants";s:7:"ID_SENT";s:12:"Participated";s:10:"ID_SENT_BY";s:7:"Sent By";s:9:"ID_SERVER";s:6:"Server";s:17:"ID_SERVER_ADDRESS";s:14:"Server Address";s:29:"ID_SERVER_COMMUNICATION_ERROR";s:31:"Failed to connect to the server";s:15:"ID_SERVER_ERROR";s:12:"Server error";s:12:"ID_SERVER_IP";s:17:"Server IP Address";s:14:"ID_SERVER_NAME";s:14:"Server Address";s:14:"ID_SERVER_PORT";s:11:"Server Port";s:17:"ID_SERVER_PROBLEM";s:16:"Server Problem :";s:18:"ID_SERVER_PROTOCOL";s:15:"Server Protocol";s:18:"ID_SERVER_REPORTED";s:15:"Server reported";s:10:"ID_SERVICE";s:7:"Service";s:10:"ID_SESSION";s:7:"Session";s:17:"ID_SESSION_ACTIVE";s:14:"Session active";s:20:"ID_SESSION_DIRECTORY";s:17:"Session directory";s:18:"ID_SESSION_EXPIRED";s:24:"The session has expired.";s:11:"ID_SETTINGS";s:8:"Settings";s:27:"ID_SETTINGS_HEARTBEAT_TITLE";s:15:"Display Setting";s:18:"ID_SETTING_MESSAGE";s:29:"The Settings tool was clicked";s:16:"ID_SETTING_SUPER";s:23:"Setting SUPER privilege";s:8:"ID_SETUP";s:5:"Admin";s:23:"ID_SETUP_MAILCONF_TITLE";s:20:"Test SMTP Connection";s:20:"ID_SETUP_WEBSERVICES";s:5:"Setup";s:19:"ID_SET_A_TABLE_NAME";s:16:"Set a Table Name";s:14:"ID_SET_COLUMNS";s:11:"Set Columns";s:14:"ID_SET_MANAGER";s:11:"Set Manager";s:22:"ID_SET_MANAGER_SUCCESS";s:26:"Manager assigned correctly";s:17:"ID_SET_NO_MANAGER";s:16:"Unassign Manager";s:17:"ID_SET_SUPERVISOR";s:14:"Set Supervisor";s:25:"ID_SET_SUPERVISOR_SUCCESS";s:29:"Supervisor assigned correctly";s:24:"ID_SET_TABLE_DESCRIPTION";s:23:"Set a Table Description";s:35:"ID_SHOULD_SELECT_LANGUAGE_FROM_LIST";s:32:"Select a language from the list.";s:19:"ID_SHOW_CASES_NOTES";s:15:"Show Case Notes";s:12:"ID_SHOW_DIRS";s:9:"Show Dirs";s:24:"ID_SHOW_HIDE_CASES_STEPS";s:28:"Show or hide the Cases Steps";s:30:"ID_SHOW_RETURN_ADVANCED_SEARCH";s:25:"Return to Advanced Search";s:10:"ID_SIGN_IN";s:7:"Sign In";s:11:"ID_SIGN_OUT";s:8:"Sign out";s:16:"ID_SIMPLE_REPORT";s:13:"Simple Report";s:7:"ID_SITE";s:4:"Site";s:16:"ID_SITE_CREATING";s:16:"site creating...";s:7:"ID_SIZE";s:4:"Size";s:16:"ID_SIZE_IN_BYTES";s:13:"Size in bytes";s:28:"ID_SIZE_VERY_LARGE_PERMITTED";s:53:"The file is too large . Please upload a smaller file.";s:8:"ID_SKINS";s:5:"Skins";s:22:"ID_SKIN_ALREADY_EXISTS";s:19:"Skin already exists";s:12:"ID_SKIN_BASE";s:9:"Base skin";s:29:"ID_SKIN_CONFIGURATION_MISSING";s:31:"Missing skin configuration file";s:16:"ID_SKIN_CREATING";s:15:"Generating Skin";s:20:"ID_SKIN_DOESNT_EXIST";s:19:"Skin does not exist";s:24:"ID_SKIN_ERROR_EXTRACTING";s:21:"Error extracting skin";s:17:"ID_SKIN_EXCEPTION";s:21:"Skin Engine Exception";s:17:"ID_SKIN_EXPORTING";s:14:"Exporting Skin";s:21:"ID_SKIN_FILE_REQUIRED";s:18:"Skin file required";s:14:"ID_SKIN_FOLDER";s:11:"Folder name";s:29:"ID_SKIN_FOLDER_NOT_DELETEABLE";s:25:"Can\'t delete default skin";s:26:"ID_SKIN_FOLDER_PERMISSIONS";s:53:"You do not have permissions to access the Skin Folder";s:23:"ID_SKIN_FOLDER_REQUIRED";s:28:"Skin folder name is required";s:17:"ID_SKIN_IMPORTING";s:14:"Importing Skin";s:28:"ID_SKIN_INCORRECT_VERIFY_URL";s:79:"You\'re trying to get a resource from an incorrect skin, please verify your url.";s:24:"ID_SKIN_LAYOUT_NOT_FOUND";s:16:"Layout not Found";s:21:"ID_SKIN_NAME_REQUIRED";s:21:"Skin Name is required";s:22:"ID_SKIN_SUCCESS_CREATE";s:25:"Skin successfully created";s:22:"ID_SKIN_SUCCESS_DELETE";s:25:"Skin successfully deleted";s:24:"ID_SKIN_SUCCESS_IMPORTED";s:26:"Skin successfully imported";s:17:"ID_SKIN_SWITCHING";s:14:"Switching Skin";s:12:"ID_SKIN_TEAM";s:17:"ProcessMaker Team";s:7:"ID_SLOW";s:4:"slow";s:25:"ID_SMTP_ALREADY_CONNECTED";s:29:"Already connected to a server";s:31:"ID_SMTP_ERROR_AUTH_NOT_ACCEPTED";s:37:"Authentication not accepted in server";s:33:"ID_SMTP_ERROR_CALLED_DATA_WITHOUT";s:37:"Called Data() without being connected";s:34:"ID_SMTP_ERROR_CALLED_HELLO_WITHOUT";s:38:"Called Hello() without being connected";s:33:"ID_SMTP_ERROR_CALLED_MAIL_WITHOUT";s:37:"Called Mail() without being connected";s:33:"ID_SMTP_ERROR_CALLED_QUIT_WITHOUT";s:37:"Called Quit() without being connected";s:38:"ID_SMTP_ERROR_CALLED_RECIPIENT_WITHOUT";s:42:"Called Recipient() without being connected";s:34:"ID_SMTP_ERROR_CALLED_RESET_WITHOUT";s:38:"Called Reset() without being connected";s:40:"ID_SMTP_ERROR_CALLED_SENDANDMAIL_WITHOUT";s:44:"Called SendAndMail() without being connected";s:28:"ID_SMTP_ERROR_COULD_NOT_AUTH";s:22:"Could not authenticate";s:35:"ID_SMTP_ERROR_DATA_COM_NOT_ACCEPTED";s:35:"DATA command not accepted by server";s:31:"ID_SMTP_ERROR_DATA_NOT_ACCEPTED";s:27:"DATA not accepted by server";s:27:"ID_SMTP_ERROR_ENABLE_PHPINI";s:52:"You need to enable some modules in your php.ini file";s:24:"ID_SMTP_ERROR_EOF_CAUGHT";s:38:"EOF caught while checking if connected";s:31:"ID_SMTP_ERROR_MAIL_NOT_ACCEPTED";s:31:"MAIL not accepted by the server";s:43:"ID_SMTP_ERROR_MET_TURN_SMTP_NOT_IMPLEMENTED";s:46:"The method TURN of the SMTP is not implemented";s:26:"ID_SMTP_ERROR_NOT_ACCEPTED";s:22:"not accepted by server";s:35:"ID_SMTP_ERROR_PASSWORD_NOT_ACCEPTED";s:35:"Password not accepted by the server";s:31:"ID_SMTP_ERROR_RCPT_NOT_ACCEPTED";s:31:"RCPT not accepted by the server";s:25:"ID_SMTP_ERROR_RSET_FAILED";s:11:"RSET failed";s:31:"ID_SMTP_ERROR_SAML_NOT_ACCEPTED";s:31:"SAML not accepted by the server";s:29:"ID_SMTP_ERROR_SERVER_REJECTED";s:33:"SMTP server rejected quit command";s:23:"ID_SMTP_ERROR_START_TLS";s:41:"Called StartTLS() without being connected";s:36:"ID_SMTP_ERROR_START_TLS_NOT_ACCEPTED";s:35:"STARTTLS not accepted by the server";s:35:"ID_SMTP_ERROR_USERNAME_NOT_ACCEPTED";s:35:"Username not accepted by the server";s:29:"ID_SMTP_FAILED_CONNECT_SERVER";s:27:"Failed to connect to server";s:16:"ID_SNAP_GEOMETRY";s:13:"Snap Geometry";s:18:"ID_SOMETHING_WRONG";s:19:"Something was wrong";s:31:"ID_SOME_ACTORS_ALREADY_ASSIGNED";s:56:"Some actor(s) is/are already assigned to task {0}";s:23:"ID_SOME_FIELDS_REQUIRED";s:25:"Some Fields are required.";s:10:"ID_SORT_BY";s:7:"Sort by";s:13:"ID_SOUTHPANEL";s:10:"southPanel";s:27:"ID_SPECIFY_DELEGATION_INDEX";s:35:"Please specify the delegation index";s:15:"ID_SPLIT_BUTTON";s:12:"Split Button";s:13:"ID_SQL_ESCAPE";s:42:"Replace the value for use in SQL sentences";s:19:"ID_SQL_FILE_INVALID";s:32:"File {0} is not a valid sql file";s:8:"ID_STAGE";s:5:"Stage";s:9:"ID_STAGES";s:6:"Stages";s:19:"ID_STANDARD_LOGGING";s:9:"Log Files";s:16:"ID_STARTED_CASES";s:16:"My Started Cases";s:23:"ID_STARTED_SUCCESSFULLY";s:20:"Started successfully";s:20:"ID_STARTING_LOG_FILE";s:17:"Starting log file";s:20:"ID_STARTING_NEW_CASE";s:17:"Starting new case";s:16:"ID_STARTING_TIME";s:13:"Starting time";s:23:"ID_START_A_NEW_CASE_FOR";s:21:"Start a new case for:";s:13:"ID_START_CASE";s:3:"New";s:13:"ID_START_DATE";s:10:"Start Date";s:17:"ID_START_DATE_MDY";s:22:"* Start Date ("m/d/Y")";s:23:"ID_START_DATE_NOT_VALID";s:64:"The start date provided is not valid, please enter a valid date.";s:14:"ID_START_HH_MM";s:12:"Start(hh:mm)";s:32:"ID_START_MESSAGE_EVENT_WEB_ENTRY";s:30:"Start Message Event(Web Entry)";s:17:"ID_START_NEW_CASE";s:16:"Start a new case";s:13:"ID_START_TASK";s:13:"Starting Task";s:19:"ID_START_TIME_EVENT";s:34:"Start Timer Event (Case Scheduler)";s:15:"ID_STATE_REGION";s:15:"State or Region";s:41:"ID_STATIC_PARTIAL_JOIN_MULTIPLE_INSTANCES";s:41:"Static Partial Join for Multiple Instance";s:9:"ID_STATUS";s:6:"Status";s:14:"ID_STATUS_CASE";s:11:"Status Case";s:22:"ID_STATUS_REASSIGNMENT";s:19:"Status Reassignment";s:8:"ID_STEPS";s:5:"Steps";s:11:"ID_STEPS_OF";s:8:"Steps Of";s:20:"ID_STEPS_UNAVAILABLE";s:61:"No steps are available. All Steps have been already assigned.";s:16:"ID_STEP_ASSIGNED";s:35:"Step has been assigned successfully";s:14:"ID_STEP_DELETE";s:11:"Step Delete";s:22:"ID_STEP_DOES_NOT_EXIST";s:38:"The step with {0}: {1} does not exist.";s:12:"ID_STEP_DOWN";s:9:"Step Down";s:12:"ID_STEP_LIST";s:9:"Step List";s:15:"ID_STEP_REMOVED";s:34:"Step has been removed successfully";s:10:"ID_STEP_UP";s:7:"Step Up";s:22:"ID_STRATEGIC_DASHBOARD";s:4:"KPIs";s:10:"ID_SUBJECT";s:7:"Subject";s:9:"ID_SUBMIT";s:6:"submit";s:14:"ID_SUBMIT_NOTE";s:9:"Post Note";s:13:"ID_SUBPROCESS";s:11:"Sub-Process";s:18:"ID_SUBPROCESS_NAME";s:16:"Sub-Process name";s:18:"ID_SUBPROCESS_SAVE";s:52:"Sub-process properties have been saved successfully.";s:18:"ID_SUBPROCESS_USER";s:18:"(Sub-Process User)";s:16:"ID_SUBSCRIPTIONS";s:13:"Subscriptions";s:10:"ID_SUCCESS";s:7:"Success";s:15:"ID_SUCCESSFULLY";s:12:"Successfully";s:25:"ID_SUCCESSFULLY_CONNECTED";s:22:"Successfully connected";s:24:"ID_SUCCESSFULLY_UPLOADED";s:22:"Successfully uploaded.";s:24:"ID_SUCCESSFUL_CONNECTION";s:21:"Successful connection";s:31:"ID_SUCCESS_DIRECTORIES_WRITABLE";s:47:"Success, all required directories are writable.";s:17:"ID_SUCCESS_RECORD";s:16:"Success Records:";s:12:"ID_SUCESSFUL";s:9:"Sucessful";s:10:"ID_SUMMARY";s:7:"Summary";s:35:"ID_SUMMARY_DERIVATION_BATCH_ROUTING";s:22:"Summary of Derivations";s:15:"ID_SUMMARY_FORM";s:12:"Summary form";s:30:"ID_SUMMARY_FORM_NO_PERMISSIONS";s:56:"You do not have permission to access to the summary form";s:6:"ID_SUN";s:3:"Sun";s:14:"ID_SUPERVISING";s:11:"Supervising";s:13:"ID_SUPERVISOR";s:10:"Supervisor";s:22:"ID_SUPERVISOR_ASSIGNED";s:54:"Supervisor has been successfully assigned to a Process";s:37:"ID_SUPERVISOR_DOES_NOT_HAVE_DYNAFORMS";s:54:"Supervisor does not have a permission for Dynaform(s).";s:20:"ID_SUPERVISOR_FAILED";s:44:"Failed saving Supervisor Assigned to process";s:21:"ID_SUPERVISOR_REMOVED";s:53:"Supervisor has been removed successfully from Process";s:19:"ID_SUPERVISOR_TASKS";s:16:"Supervisor Tasks";s:25:"ID_SUPERVISOR_UNAVAILABLE";s:73:"No supervisors are available. All supervisors have been already assigned.";s:10:"ID_SUPPORT";s:7:"Support";s:16:"ID_SWITCH_EDITOR";s:13:"Switch Editor";s:19:"ID_SWITCH_INTERFACE";s:16:"Switch Interface";s:9:"ID_SYSTEM";s:6:"System";s:14:"ID_SYSTEM_INFO";s:18:"System information";s:26:"ID_SYSTEM_REDIRECT_CONFIRM";s:64:"You must login again to view the changes. Do you want do it now?";s:18:"ID_SYSTEM_SETTINGS";s:15:"System Settings";s:8:"ID_TABLE";s:5:"Table";s:30:"ID_TABLES_REMOVED_SUCCESSFULLY";s:27:"tables removed Successfully";s:29:"ID_TABLES_REMOVED_WITH_ERRORS";s:30:"tables removed but with errors";s:19:"ID_TABLES_TO_EXPORT";s:16:"Tables To Export";s:23:"ID_TABLE_ALREADY_EXISTS";s:20:"Table already exists";s:23:"ID_TABLE_INVALID_SYNTAX";s:14:"Invalid syntax";s:13:"ID_TABLE_NAME";s:10:"Table Name";s:25:"ID_TABLE_NAME_IS_REQUIRED";s:23:"Table Name is required.";s:23:"ID_TABLE_NAME_TOO_SHORT";s:66:"The table name is too short, it should have at least 4 characters.";s:26:"ID_TABLE_NOT_EXIST_SKIPPED";s:32:"Table does not exist... skipped!";s:18:"ID_TABLE_NOT_FOUND";s:15:"Table Not found";s:13:"ID_TABLE_TYPE";s:10:"Table Type";s:7:"ID_TAGS";s:4:"Tags";s:7:"ID_TAKE";s:4:"Take";s:17:"ID_TAREA_COLGANTE";s:9:"Leaf task";s:9:"ID_TARGET";s:6:"Target";s:26:"ID_TARGET_ORIGIN_USER_SAME";s:35:"Target and Origin user are the same";s:14:"ID_TARGET_TASK";s:11:"Target Task";s:34:"ID_TARGET_USER_DESTINATION_INVALID";s:38:"The target user destination is invalid";s:35:"ID_TARGET_USER_DOES_NOT_HAVE_RIGHTS";s:56:"The target user does not have rights to execute the task";s:7:"ID_TASK";s:4:"Task";s:8:"ID_TASKS";s:5:"Tasks";s:19:"ID_TASK_CANT_DELETE";s:57:"You can\'t delete the task "{0}" because it has {1} cases.";s:33:"ID_TASK_DEFINED_MANUAL_ASSIGNMENT";s:41:"The task is defined for Manual assignment";s:34:"ID_TASK_DOES_NOT_HAVE_ROUTING_RULE";s:72:"Task does not have a routing rule. Please, check the process definition.";s:16:"ID_TASK_DURATION";s:13:"Task Duration";s:10:"ID_TASK_ID";s:7:"Task ID";s:19:"ID_TASK_INFORMATION";s:16:"Task Information";s:38:"ID_TASK_INVALID_USER_NOT_ASSIGNED_TASK";s:52:"Task invalid or the user is not assigned to the task";s:19:"ID_TASK_IN_PROGRESS";s:16:"Task in Progress";s:17:"ID_TASK_NOT_EXIST";s:40:"The task with {0}: \'{1}\' does not exist.";s:17:"ID_TASK_NOT_FOUND";s:26:"Task not found for id: {0}";s:19:"ID_TASK_NOT_RELATED";s:23:"[Not related to a task]";s:16:"ID_TASK_NO_STEPS";s:31:"The task doesn\'t have any steps";s:15:"ID_TASK_OVERDUE";s:7:"Overdue";s:23:"ID_TASK_PROPERTIES_SAVE";s:43:"Task properties has been saved successfully";s:21:"ID_TASK_REASSIGNMENTS";s:18:"Task Reassignments";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_ACTION_EMAIL";s:24:"Action by Email Response";s:35:"ID_TASK_SCHEDULER_ACTION_EMAIL_DESC";s:47:"Action by email response account email revision";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";s:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:35:"ID_TASK_SCHEDULER_CALCULATE_ELAPSED";s:27:"Calculated the elapsed time";s:40:"ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC";s:98:"Calculates the elapsed time according to the configured calendar of all open tasks in active cases";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:12:"Case actions";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case emails";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:28:"ID_TASK_SCHEDULER_CLEAN_SELF";s:25:"Clean self service tables";s:33:"ID_TASK_SCHEDULER_CLEAN_SELF_DESC";s:86:"Clean unused records for Self-Service Value-Based feature. It is a maintenance command";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";s:22:"ID_TASK_SCHEDULER_LDAP";s:22:"ProcessMaker LDAP cron";s:27:"ID_TASK_SCHEDULER_LDAP_DESC";s:55:"Synchronize advance LDAP attributes from their settings";s:32:"ID_TASK_SCHEDULER_MESSAGE_EVENTS";s:14:"Message events";s:37:"ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC";s:32:"Intermediate and end email event";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:20:"ProcessMaker plugins";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_REPORTING";s:9:"Reporting";s:32:"ID_TASK_SCHEDULER_REPORT_PROCESS";s:21:"KPI Report by process";s:37:"ID_TASK_SCHEDULER_REPORT_PROCESS_DESC";s:40:"Recalculate KPI\'s information by process";s:30:"ID_TASK_SCHEDULER_REPORT_USERS";s:18:"KPI Report by user";s:35:"ID_TASK_SCHEDULER_REPORT_USERS_DESC";s:37:"Recalculate KPI\'s information by user";s:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile notifications";s:28:"ID_TASK_SCHEDULER_UNASSIGNED";s:15:"Unassigned case";s:33:"ID_TASK_SCHEDULER_UNASSIGNED_DESC";s:77:"Run the trigger for self-service cases that have a configured timeout setting";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:16:"ID_TASK_TRANSFER";s:18:"Task Transfer Date";s:28:"ID_TASK_WAS_ASSIGNED_TO_USER";s:131:"Manual assignment shouldn\'t be used with sub-processes.
        The task "{0}" from case {1} was assigned to user {2} ( {3} {4} )";s:23:"ID_TAS_DURATION_REQUIRE";s:22:"Duration task required";s:11:"ID_TAS_EDIT";s:17:"Tasks (Edit mode)";s:29:"ID_TAS_UID_PARAMETER_IS_EMPTY";s:31:"The TAS_UID parameter is empty.";s:11:"ID_TAS_VIEW";s:17:"Tasks (View mode)";s:12:"ID_TEMPLATES";s:9:"Templates";s:26:"ID_TEMPLATE_FILE_NOT_EXIST";s:47:"Template file \'{FILE_TEMPLATE}\' does not exist.";s:27:"ID_TEMPLATE_PARAMETER_EMPTY";s:32:"The TEMPLATE parameter is empty.";s:12:"ID_TERMS_USE";s:12:"Terms of use";s:7:"ID_TEST";s:4:"Test";s:21:"ID_TESTING_CONNECTION";s:21:"Testing connection...";s:21:"ID_TEST_CONFIGURATION";s:18:"Test Configuration";s:18:"ID_TEST_CONNECTION";s:15:"Test Connection";s:27:"ID_TEST_DATABASE_ORACLE_TNS";s:8:"Test TNS";s:20:"ID_TEST_EMAIL_SERVER";s:17:"Test Email Server";s:24:"ID_TEST_ERROR_ORACLE_TNS";s:58:"Error Testing Connection: Opening database type TNS failed";s:12:"ID_TEST_USER";s:9:"Test User";s:17:"ID_TEST_WEB_ENTRY";s:14:"Test Web Entry";s:7:"ID_TEXT";s:4:"TEXT";s:22:"ID_THANKS_USE_SERVICES";s:42:"Thanks for using the ProcessMaker services";s:6:"ID_THE";s:3:"The";s:26:"ID_THERE_ARE_NO_LDAP_USERS";s:23:"There are no LDAP Users";s:28:"ID_THERE_MUST__LEAST_HOLIDAY";s:32:"There must be at least a holiday";s:30:"ID_THERE_PROBLEM_SENDING_EMAIL";s:40:"There was a problem sending the email to";s:34:"ID_THE_APPLICATION_IS_NOT_CANCELED";s:43:"Error: The application {0} is not canceled.";s:28:"ID_THE_DEFAULT_CONFIGURATION";s:41:"The default configuration was not defined";s:31:"ID_THE_FILE_COULDNT_BE_UPLOADED";s:101:"The file couldn’t be uploaded please review the allowed files or contact your System Administrator.";s:51:"ID_THE_FILE_SIZE_IS_BIGGER_THAN_THE_MAXIMUM_ALLOWED";s:89:"The file size is bigger than the maximum allowed, the maximum size allowed is {0} Mbytes.";s:37:"ID_THE_MAXIMUM_VALUE_OF_THIS_FIELD_IS";s:39:"The maximum value of this field is {0}.";s:31:"ID_THE_MIMETYPE_EXTENSION_ERROR";s:86:"The mime type does not correspond to the permitted extension, please verify your file.";s:38:"ID_THE_NAME_CHANGE_MAY_CAUSE_DATA_LOSS";s:74:"The change might cause data loss in the PM table. Do you want to continue?";s:39:"ID_THE_PHP_FILES_EXECUTION_WAS_DISABLED";s:77:"The PHP files execution was disabled please contact the system administrator.";s:33:"ID_THE_REASON_REASSIGN_USER_EMPTY";s:36:"Please complete the reassign reason.";s:69:"ID_THE_REPORT_TABLE_IS_REGENERATING_PLEASE_COME_BACK_IN_A_FEW_MINUTES";s:67:"The report table is regenerating please come back in a few minutes.";s:39:"ID_THE_UPLOAD_OF_PHP_FILES_WAS_DISABLED";s:77:"The upload of PHP files was disabled please contact the system administrator.";s:34:"ID_THE_USERNAME_EMAIL_IS_INCORRECT";s:34:"The username or email is incorrect";s:13:"ID_THIS_MONTH";s:10:"This Month";s:15:"ID_THIS_QUARTER";s:12:"This quarter";s:12:"ID_THIS_WEEK";s:9:"This Week";s:12:"ID_THIS_YEAR";s:9:"This Year";s:15:"ID_THREAD_INDEX";s:12:"Thread Index";s:51:"ID_THREAD_STATUS_DOES_NOT_EXIST_FOR_THE_APPLICATION";s:60:"Error: Thread status does not exist for the application {0}.";s:6:"ID_THU";s:3:"Thu";s:14:"ID_TIMER_EVENT";s:11:"Timer event";s:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";s:19:"ID_TIMER_EVENT_DESC";s:50:"Executes timer start and intermediate timer events";s:29:"ID_TIMER_EVENT_DOES_NOT_EXIST";s:47:"The Timer-Event with {0}: "{1}" does not exist.";s:37:"ID_TIMER_EVENT_DOES_NOT_IS_REGISTERED";s:55:"The Timer-Event with {0}: "{1}" does not is registered.";s:21:"ID_TIME_EXIST_IN_LIST";s:34:"The day and time exist in the list";s:13:"ID_TIME_HOURS";s:12:"Time (Hours)";s:10:"ID_TIME_IN";s:12:"time in ${0}";s:13:"ID_TIME_LABEL";s:4:"Time";s:16:"ID_TIME_NEXT_RUN";s:13:"Time Next Run";s:16:"ID_TIME_REQUIRED";s:16:"Time is required";s:27:"ID_TIME_STARTING_EXCEED_END";s:46:"The starting time must not exceed the end time";s:23:"ID_TIME_START_WITH_TASK";s:25:"The time starts with task";s:12:"ID_TIME_UNIT";s:9:"Time Unit";s:12:"ID_TIME_ZONE";s:9:"Time Zone";s:27:"ID_TIME_ZONE_DOES_NOT_EXIST";s:45:"The time zone with {0}: "{1}" does not exist.";s:31:"ID_TIME_ZONE_LOGIN_DESCRIPTION1";s:74:"Your local machine time zone does not match your current profile settings.";s:31:"ID_TIME_ZONE_LOGIN_DESCRIPTION2";s:87:"Your time zone profile settings will be updated in accordance to your current location.";s:31:"ID_TIME_ZONE_LOGIN_DESCRIPTION3";s:55:"This operation will help you avoid date storage issues.";s:38:"ID_TIME_ZONE_LOGIN_DESCRIPTION_DETAILS";s:68:"Your current profile time zone: {0}, is going to be updated to: {1}.";s:24:"ID_TIME_ZONE_LOGIN_TITLE";s:23:"Time zone configuration";s:17:"ID_TIMING_CONTROL";s:14:"Timing Control";s:21:"ID_TINY_ALL_VARIABLES";s:13:"All variables";s:22:"ID_TINY_GRID_VARIABLES";s:14:"Grid Variables";s:25:"ID_TINY_PROCESS_VARIABLES";s:17:"Process Variables";s:23:"ID_TINY_SYSTEM_VARIABLE";s:15:"System Variable";s:24:"ID_TINY_SYSTEM_VARIABLES";s:16:"System Variables";s:21:"ID_TINY_TYPE_VARIABLE";s:13:"Type Variable";s:8:"ID_TITLE";s:5:"Title";s:34:"ID_TITLE_AUTHENTICATION_SOURCE_INF";s:33:"Authentication Source Information";s:18:"ID_TITLE_CANCELLED";s:8:"Canceled";s:18:"ID_TITLE_COMPLETED";s:9:"Completed";s:18:"ID_TITLE_DASHBOARD";s:25:"Dashboard Indicator Title";s:14:"ID_TITLE_DRAFT";s:5:"Draft";s:22:"ID_TITLE_EXPORT_RESULT";s:14:"Export Summary";s:20:"ID_TITLE_EXPORT_TOOL";s:14:"Exporting Tool";s:14:"ID_TITLE_FIELD";s:5:"Title";s:23:"ID_TITLE_FIELD_DYNAFORM";s:5:"title";s:14:"ID_TITLE_INBOX";s:5:"Inbox";s:19:"ID_TITLE_LOG_DETAIL";s:10:"Log Detail";s:19:"ID_TITLE_NO_INSTALL";s:26:"SYSTEM INSTALLATION FAILED";s:21:"ID_TITLE_PARTICIPATED";s:12:"Participated";s:15:"ID_TITLE_PAUSED";s:6:"Paused";s:17:"ID_TITLE_REQUIRED";s:18:"Title is required.";s:19:"ID_TITLE_START_CASE";s:10:"Start Case";s:19:"ID_TITLE_UNASSIGNED";s:10:"Unassigned";s:5:"ID_TO";s:2:"To";s:8:"ID_TODAY";s:5:"Today";s:8:"ID_TOOLS";s:5:"Tools";s:20:"ID_TOO_MANY_REQUESTS";s:76:"Upon configurations, you have reached the maximum number of files to upload.";s:13:"ID_TOP_MARGIN";s:10:"Top Margin";s:14:"ID_TOTAL_CASES";s:11:"Total Cases";s:25:"ID_TOTAL_CASES_REASSIGNED";s:22:"Total Cases Reassigned";s:8:"ID_TO_DO";s:5:"To do";s:11:"ID_TO_FLOAT";s:36:"Replace the value converted to float";s:13:"ID_TO_INTEGER";s:38:"Replace the value converted to integer";s:14:"ID_TO_REASSIGN";s:8:"Reassign";s:12:"ID_TO_REVISE";s:6:"Review";s:12:"ID_TO_STRING";s:27:"Replace the value in quotes";s:9:"ID_TO_URL";s:35:"Replace the value with URL encoding";s:19:"ID_TRANSFER_HISTORY";s:16:"Transfer History";s:25:"ID_TRANSLATIONS_DIRECTORY";s:22:"Translations Directory";s:28:"ID_TRANSLATION_NOT_WRITEABLE";s:80:"The translation file is not writable.
        Please give write permission to file:";s:11:"ID_TRIGGERS";s:8:"Triggers";s:17:"ID_TRIGGERS_SAVED";s:13:"Trigger saved";s:23:"ID_TRIGGERS_UNAVAILABLE";s:67:"No triggers are available. All triggers have been already assigned.";s:26:"ID_TRIGGERS_VALIDATE_EERR1";s:37:"* The {Object} {Description} depends.";s:22:"ID_TRIGGERS_VALIDATION";s:67:"No Dependencies were found for this trigger in {Object} definitions";s:27:"ID_TRIGGERS_VALIDATION_ERR2";s:66:"({N}) Dependencies were found for this trigger in {Object} objects";s:27:"ID_TRIGGERS_VALIDATION_ERR3";s:37:"* The {Object} {Description} depends.";s:17:"ID_TRIGGER_ASSIGN";s:40:"Triggers has been assigned successfully.";s:22:"ID_TRIGGER_COPY_OPTION";s:35:"Copy/Import Triggers from a Process";s:34:"ID_TRIGGER_COPY_OPTION_DESCRIPTION";s:86:"With this option you can copy/import a trigger from any other processes in the system.";s:21:"ID_TRIGGER_COPY_TITLE";s:19:"Copy/Import Trigger";s:13:"ID_TRIGGER_DB";s:7:"Trigger";s:25:"ID_TRIGGER_DOES_NOT_EXIST";s:41:"The trigger with {0}: {1} does not exist.";s:37:"ID_TRIGGER_EDITOR_HINT_ADVISE_MESSAGE";s:58:"Press Ctrl + Space in the Editor, to get the function list";s:56:"ID_TRIGGER_HAS_BEEN_MODIFIED_MANUALLY_INVALID_FOR_WIZARD";s:83:"The trigger with {0}: {1} has been manually modified. It is invalid for the wizard.";s:43:"ID_TRIGGER_HAS_NOT_BEEN_CREATED_WITH_WIZARD";s:64:"The trigger with {0}: {1}, has not been created with the wizard.";s:20:"ID_TRIGGER_NOT_EXIST";s:43:"The trigger with {0}: \'{1}\' does not exist.";s:17:"ID_TRIGGER_REMOVE";s:38:"Trigger has been removed successfully.";s:19:"ID_TRIGGER_REQUIRED";s:19:"Trigger is required";s:23:"ID_TRIGGER_RETURN_LABEL";s:29:"Variable to hold return value";s:23:"ID_TRIGGER_RETURN_TITLE";s:12:"Return value";s:22:"ID_TRIGGER_SOURCE_LINK";s:16:"Edit Source Code";s:31:"ID_TRIGGER_TITLE_ALREADY_EXISTS";s:49:"The trigger title with {0}: "{1}" already exists.";s:7:"ID_TRUE";s:4:"TRUE";s:16:"ID_TRYING_CANCEL";s:86:"You are tying to cancel the current case. Please be aware this action cannot be undone";s:6:"ID_TUE";s:3:"Tue";s:16:"ID_TWICE_PER_DAY";s:13:"Twice per day";s:7:"ID_TYPE";s:4:"Type";s:15:"ID_TYPE_PROCESS";s:12:"Process Type";s:6:"ID_UID";s:3:"UID";s:24:"ID_UNABLE_GET_DASHBOARDS";s:24:"Unable to get Dashboards";s:20:"ID_UNABLE_START_CASE";s:22:"Unable to start a case";s:17:"ID_UNABLE_TO_EDIT";s:62:"Unable to edit. Make sure your file has an editable extension.";s:23:"ID_UNABLE_TO_SEND_EMAIL";s:41:"Unable to send email, the task is closed.";s:13:"ID_UNASSIGNED";s:10:"Unassigned";s:19:"ID_UNASSIGNED_INBOX";s:16:"Unassigned Inbox";s:21:"ID_UNASSIGNED_MESSAGE";s:22:"unassignedMessage.html";s:20:"ID_UNASSIGNED_STATUS";s:17:"Unassigned Status";s:19:"ID_UNASSIGNED_USERS";s:16:"Unassigned Users";s:10:"ID_UNCHECK";s:7:"Uncheck";s:30:"ID_UNDEFINED_VALUE_IS_REQUIRED";s:42:"Undefined value for "{0}", it is required.";s:35:"ID_UNEXPECTED_ERROR_OCCURRED_PLEASE";s:52:"An unexpected error occurred please try again later.";s:11:"ID_UNISTALL";s:9:"Uninstall";s:15:"ID_UNISTALL_TIP";s:21:"Uninstall this plugin";s:8:"ID_UNITS";s:5:"Units";s:10:"ID_UNKNOWN";s:7:"Unknown";s:14:"ID_UNKNOW_USER";s:11:"Unknow user";s:10:"ID_UNPAUSE";s:7:"Unpause";s:15:"ID_UNPAUSE_CASE";s:7:"Unpause";s:15:"ID_UNPAUSE_DATE";s:12:"Unpause Date";s:15:"ID_UNPAUSE_TIME";s:12:"Unpause Time";s:17:"ID_UNPAUSING_CASE";s:17:"Unpausing case...";s:27:"ID_UNSAVED_CHANGES_QUESTION";s:96:"You are about to close a window and there may be some unsaved changes. Are you sure to continue?";s:26:"ID_UNSAVED_TRIGGERS_WINDOW";s:88:"You have unsaved changes in popup! If you leave the page all the windows will be closed.";s:16:"ID_UNTITLED_TASK";s:13:"Untitled task";s:15:"ID_UN_CHECK_ALL";s:12:"Un-Check All";s:5:"ID_UP";s:2:"Up";s:9:"ID_UPDATE";s:6:"Update";s:23:"ID_UPDATED_SUCCESSFULLY";s:20:"Updated Successfully";s:21:"ID_UPDATE_AUTH_SOURCE";s:28:"Update Authentication Source";s:18:"ID_UPDATE_CALENDAR";s:15:"Update Calendar";s:24:"ID_UPDATE_CASE_SCHEDULER";s:21:"Update Case Scheduler";s:18:"ID_UPDATE_CATEGORY";s:15:"Update Category";s:26:"ID_UPDATE_DASHLET_INSTANCE";s:23:"Update Dashlet Instance";s:29:"ID_UPDATE_DATABASE_CONNECTION";s:26:"Update Database Connection";s:22:"ID_UPDATE_DATA_PMTABLE";s:25:"Update Data from PM Table";s:14:"ID_UPDATE_DATE";s:6:"Update";s:21:"ID_UPDATE_DEPARTAMENT";s:17:"Update Department";s:18:"ID_UPDATE_DYNAFORM";s:34:"Update Dynaform add/deleted fields";s:22:"ID_UPDATE_EMAIL_SERVER";s:19:"Update Email Server";s:24:"ID_UPDATE_EMAIL_SETTINGS";s:21:"Update Email Settings";s:30:"ID_UPDATE_ENVIRONMENT_SETTINGS";s:27:"Update Environment Settings";s:16:"ID_UPDATE_FAILED";s:14:"Updated Failed";s:15:"ID_UPDATE_GROUP";s:12:"Update Group";s:24:"ID_UPDATE_INPUT_DOCUMENT";s:21:"Update Input Document";s:17:"ID_UPDATE_LICENSE";s:14:"Upload License";s:24:"ID_UPDATE_LOGIN_SETTINGS";s:21:"Update Login Settings";s:25:"ID_UPDATE_OUTPUT_DOCUMENT";s:22:"Update Output Document";s:17:"ID_UPDATE_PMTABLE";s:15:"Update PM Table";s:14:"ID_UPDATE_ROLE";s:11:"Update Role";s:25:"ID_UPDATE_SUB_DEPARTAMENT";s:21:"Update Sub Department";s:14:"ID_UPDATE_TEXT";s:9:"Edit Text";s:17:"ID_UPDATE_TRIGGER";s:14:"Update trigger";s:14:"ID_UPDATE_USER";s:11:"Update User";s:23:"ID_UPDATING_LICENSE_MSG";s:29:"Uploading the license file...";s:17:"ID_UPDATING_TABLE";s:30:"Updating table, please wait...";s:10:"ID_UPGRADE";s:14:"Upgrade System";s:19:"ID_UPGRADES_PATCHES";s:16:"Upgrades/Patches";s:21:"ID_UPGRADE_ENTERPRISE";s:115:"This feature is not available in ProcessMaker Community Edition. Please upgrade to ProcessMaker Enterprise Edition.";s:19:"ID_UPGRADE_FINISHED";s:17:"Upgrade finished.";s:16:"ID_UPGRADE_LABEL";s:7:"Upgrade";s:24:"ID_UPGRADE_NEVER_UPGRADE";s:14:"Never upgraded";s:14:"ID_UPGRADE_NOW";s:11:"Upgrade now";s:16:"ID_UPGRADE_READY";s:29:"System upgraded from revision";s:19:"ID_UPGRADE_STARTING";s:44:"Please wait while the upgrade is starting...";s:17:"ID_UPGRADE_SYSTEM";s:14:"Upgrade System";s:19:"ID_UPGRADE_VIEW_LOG";s:8:"View log";s:19:"ID_UPGRADING_PLUGIN";s:41:"Please wait while upgrading the plugin...";s:9:"ID_UPLOAD";s:6:"Upload";s:21:"ID_UPLOADED_DOCUMENTS";s:18:"Uploaded Documents";s:17:"ID_UPLOADING_FILE";s:17:"Uploading file...";s:29:"ID_UPLOADING_IMAGE_WRONG_SIZE";s:38:"Error uploading image, wrong file size";s:25:"ID_UPLOADING_PROCESS_FILE";s:29:"Uploading the process file...";s:29:"ID_UPLOADING_TRANSLATION_FILE";s:33:"Uploading the translation file...";s:18:"ID_UPLOAD_COMPLETE";s:15:"Upload complete";s:24:"ID_UPLOAD_ERR_CANT_WRITE";s:28:"Failed to write file to disk";s:23:"ID_UPLOAD_ERR_EXTENSION";s:32:"File upload stopped by extension";s:23:"ID_UPLOAD_ERR_FORM_SIZE";s:89:"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form";s:22:"ID_UPLOAD_ERR_INI_SIZE";s:70:"The uploaded file exceeds the upload_max_filesize directive in php.ini";s:35:"ID_UPLOAD_ERR_NOT_ALLOWED_EXTENSION";s:110:"The file has not been attached because the extension is not allowed or because the content doesn\'t correspond.";s:21:"ID_UPLOAD_ERR_NO_FILE";s:20:"No file was uploaded";s:24:"ID_UPLOAD_ERR_NO_TMP_DIR";s:26:"Missing a temporary folder";s:21:"ID_UPLOAD_ERR_PARTIAL";s:45:"The uploaded file was only partially uploaded";s:21:"ID_UPLOAD_ERR_UNKNOWN";s:20:"Unknown upload error";s:44:"ID_UPLOAD_ERR_WRONG_ALLOWED_EXTENSION_FORMAT";s:91:"The format is incorrect, check the following examples: *.* *.png *.pdf, *.doc, *.xls";s:14:"ID_UPLOAD_FILE";s:11:"Upload File";s:19:"ID_UPLOAD_FROM_FILE";s:16:"Upload from file";s:15:"ID_UPLOAD_IMAGE";s:12:"Upload image";s:34:"ID_UPLOAD_INVALID_DOC_MAX_FILESIZE";s:44:"File size exceeds the allowable limit of {0}";s:31:"ID_UPLOAD_INVALID_DOC_TYPE_FILE";s:79:"Invalid file format, please upload a file with one of the following formats {0}";s:18:"ID_UPLOAD_LANGUAGE";s:15:"Upload Language";s:20:"ID_UPLOAD_LEAST_FILE";s:32:"You may upload at least one file";s:14:"ID_UPLOAD_LOGO";s:11:"Upload Logo";s:16:"ID_UPLOAD_PLUGIN";s:13:"Upload Plugin";s:25:"ID_UPLOAD_SYSTEM_SETTINGS";s:22:"Upload System Settings";s:24:"ID_UPLOAD_VALID_CSV_FILE";s:30:"Please upload a valid CSV file";s:13:"ID_UP_TRIGGER";s:10:"Up Trigger";s:7:"ID_USER";s:4:"User";s:11:"ID_USERNAME";s:8:"Username";s:26:"ID_USERNAME_ALREADY_EXISTS";s:35:"Username \'{USER_ID}\' already exists";s:19:"ID_USERNAME_CORRECT";s:18:"Available Username";s:20:"ID_USERNAME_FORMAT_1";s:20:"@firstName @lastName";s:20:"ID_USERNAME_FORMAT_2";s:32:"@firstName @lastName (@userName)";s:20:"ID_USERNAME_FORMAT_3";s:9:"@userName";s:20:"ID_USERNAME_FORMAT_4";s:32:"@userName (@firstName @lastName)";s:20:"ID_USERNAME_FORMAT_5";s:20:"@lastName @firstName";s:20:"ID_USERNAME_FORMAT_6";s:21:"@lastName, @firstName";s:20:"ID_USERNAME_FORMAT_7";s:33:"@lastName, @firstName (@userName)";s:24:"ID_USERNAME_OR_WORKSPACE";s:28:"Username (or Live Workspace)";s:20:"ID_USERNAME_REQUIRED";s:20:"Username is required";s:19:"ID_USERNAME_TESTING";s:31:"Verifying username availability";s:8:"ID_USERS";s:5:"Users";s:15:"ID_USERS_ACTORS";s:12:"Users Actors";s:28:"ID_USERS_DELETE_WITH_HISTORY";s:131:"The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?";s:15:"ID_USERS_GROUPS";s:21:"Users and User Groups";s:27:"ID_USERS_HAS_ASSIGNED_CASES";s:60:"The user has assigned cases. Do you want to continue anyway?";s:13:"ID_USERS_LIST";s:5:"Users";s:16:"ID_USERS_REMOVED";s:34:"User has been removed successfully";s:23:"ID_USERS_SUCCESS_DELETE";s:32:"User has been deleted correctly.";s:20:"ID_USERS_UNAVAILABLE";s:60:"No users are available. All users have been already assigned";s:28:"ID_USER_ALREADY_EXISTS_GROUP";s:32:"User already exists in the group";s:16:"ID_USER_ASSIGNED";s:35:"User has been successfully assigned";s:15:"ID_USER_BROWSER";s:14:"User\'s Browser";s:39:"ID_USER_CANT_BE_DELETED_FOR_THE_PROCESS";s:105:"The user can\'t be deleted because it is referenced in the process {processTitle} in a process permission.";s:26:"ID_USER_CAN_NOT_BE_DELETED";s:74:"The user with usr_uid: {0}, cannot be deleted while it has cases assigned.";s:22:"ID_USER_CAN_NOT_UPDATE";s:40:"This user: {0}, can not update the data.";s:23:"ID_USER_CASES_NOT_START";s:69:"User can\'t start a case because doesn\'t have a starting task assigned";s:28:"ID_USER_CREATED_SUCCESSFULLY";s:60:"User {FIRSTNAME} {LASTNAME} [{USER_ID}] created successfully";s:28:"ID_USER_CREDENTIALS_REQUIRED";s:30:"User credentials are required.";s:30:"ID_USER_DEFINED_TIMING_CONTROL";s:33:"Allow user defined timing control";s:27:"ID_USER_DOES_NOT_CORRESPOND";s:75:"Wrong authentication. This user does not correspond with the email address.";s:32:"ID_USER_DOES_NOT_CORRESPOND_TYPE";s:52:"This id: {0} does not correspond to a registered {1}";s:22:"ID_USER_DOES_NOT_EXIST";s:38:"The User with {0}: {1} does not exist.";s:39:"ID_USER_DOES_NOT_HAVE_ACTIVITY_ASSIGNED";s:57:"The user "{0}" does not have the activity "{1}" assigned.";s:18:"ID_USER_EXPERIENCE";s:15:"User Experience";s:13:"ID_USER_FIELD";s:10:"User Field";s:14:"ID_USER_GROUPS";s:10:"Groups for";s:20:"ID_USER_GROUPS_ADHOC";s:29:"Users and User Groups(Ad Hoc)";s:28:"ID_USER_GROUP_NOT_CORRESPOND";s:36:"This id: {0} not correspond to a {1}";s:26:"ID_USER_HAVENT_RIGHTS_PAGE";s:39:"User does not have rights on this page.";s:28:"ID_USER_HAVENT_RIGHTS_SYSTEM";s:39:"User does not have access to the system";s:10:"ID_USER_ID";s:8:"Username";s:18:"ID_USER_IDENTIFIER";s:15:"User Identifier";s:16:"ID_USER_INACTIVE";s:14:"User inactive!";s:24:"ID_USER_INACTIVE_BY_DATE";s:26:"User\'s account has expired";s:20:"ID_USER_INEFFICIENCE";s:25:"Inefficience Cost By User";s:19:"ID_USER_INFORMATION";s:16:"User Information";s:56:"ID_USER_IS_SUPERVISOR_DOES_NOT_ASSOCIATED_INPUT_DOCUMENT";s:73:"The user is supervisor, but it does not have an associated input document";s:12:"ID_USER_LIST";s:9:"User List";s:42:"ID_USER_MUST_CHANGE_PASSWORD_AT_NEXT_LOGON";s:39:"User must change password at next logon";s:12:"ID_USER_NAME";s:9:"User Name";s:27:"ID_USER_NAME_ALREADY_EXISTS";s:45:"The User Name with {0}: "{1}" already exists.";s:18:"ID_USER_NOT_ACTIVE";s:23:"The user is not active.";s:20:"ID_USER_NOT_ACTIVITY";s:51:"The usr_uid: {0} does not have an activity assigned";s:25:"ID_USER_NOT_ASSIGNED_TASK";s:36:"The user is not assigned to the task";s:17:"ID_USER_NOT_EXIST";s:40:"The user with {0}: \'{1}\' does not exist.";s:28:"ID_USER_NOT_EXIST_DEPARTMENT";s:53:"The user with "{0}", does not exist in the Department";s:17:"ID_USER_NOT_FOUND";s:15:"User not found.";s:25:"ID_USER_NOT_FUNCTIONALITY";s:108:"This functionality is not available for users who have an external authentication source related (i.e. LDAP)";s:27:"ID_USER_NOT_HAVE_PERMISSION";s:64:"The user with "{0}" not have permissions to perform this action.";s:49:"ID_USER_NOT_HAVE_PERMISSION_DELETE_INPUT_DOCUMENT";s:69:"The user with "{0}" not have permission to delete the input document.";s:50:"ID_USER_NOT_HAVE_PERMISSION_DELETE_OUTPUT_DOCUMENT";s:70:"The user with "{0}" not have permission to delete the output document.";s:23:"ID_USER_NOT_ID_ACTIVITY";s:65:"The usr_uid: {0} does not have the activity act_uid: {1} assigned";s:30:"ID_USER_NOT_INITIAL ACTIVITIES";s:80:"This user usr_uid: {0} does not have initial activities assigned in this project";s:45:"ID_USER_NOT_IT_BELONGS_CASE_OR_NOT_SUPERVISOR";s:58:"The user does not belong to case or user not is supervisor";s:20:"ID_USER_NOT_REGISTER";s:24:"the user is not register";s:22:"ID_USER_NOT_REGISTERED";s:20:"User not registered!";s:28:"ID_USER_NOT_REGISTERED_GROUP";s:32:"User not registered in the group";s:29:"ID_USER_NOT_REGISTERED_SYSTEM";s:33:"User not registered in the system";s:29:"ID_USER_NOT_RESPONDED_REQUEST";s:43:"The user has not responded to this request.";s:18:"ID_USER_ONVACATION";s:83:"User on vacation! Contact to your System Administrator if you want to login. please";s:20:"ID_USER_ON_VACATIONS";s:29:"User on vacation was replaced";s:25:"ID_USER_PROCESS_NOT_START";s:36:"You don\'t have processes to start...";s:18:"ID_USER_REGISTERED";s:24:"User name already exists";s:42:"ID_USER_ROLE_CANT_CHANGED_TO_ADMINISTRATOR";s:52:"The administrator role cannot be changed or created.";s:17:"ID_USER_SAVE_FAIL";s:35:"Failed saving User Assigned to Task";s:19:"ID_USER_TO_REASSIGN";s:12:"Reassign to:";s:24:"ID_USER_UID_DOESNT_EXIST";s:48:"The row \'{USR_UID}\' in table USER doesn\'t exist!";s:17:"ID_USER_WITH_ROLE";s:15:"Users with role";s:19:"ID_USE_LANGUAGE_URL";s:23:"Use the language of URL";s:13:"ID_UXS_NORMAL";s:6:"Normal";s:17:"ID_UXS_SIMPLIFIED";s:6:"Mobile";s:13:"ID_UXS_SINGLE";s:18:"Single Application";s:17:"ID_UXS_SWITCHABLE";s:10:"Switchable";s:11:"ID_VACATION";s:8:"Vacation";s:19:"ID_VALIDATED_FIELDS";s:40:"The following fields have invalid values";s:20:"ID_VALIDATION_ERRORS";s:17:"validation Errors";s:19:"ID_VALID_ADMIN_NAME";s:36:"Please enter a valid Admin Username.";s:23:"ID_VALID_ADMIN_PASSWORD";s:32:"Please enter the Admin Password.";s:20:"ID_VALID_CREDENTIALS";s:30:"Please enter valid credentials";s:13:"ID_VALID_FROM";s:4:"From";s:11:"ID_VALID_TO";s:2:"To";s:18:"ID_VALID_WORKSPACE";s:36:"Please enter a valid Workspace Name.";s:14:"ID_VALUE_BASED";s:11:"Value Based";s:33:"ID_VALUE_SPECIFIED_DOES_NOT_EXIST";s:50:"Value specified for "{0}" does not exist in "{1}".";s:10:"ID_VARCHAR";s:7:"VARCHAR";s:12:"ID_VARIABLES";s:9:"Variables";s:26:"ID_VARIABLES_CASE_PRIORITY";s:26:"Variable for Case priority";s:15:"ID_VARIABLES_IN";s:12:"Variables In";s:35:"ID_VARIABLES_INSTANCES_TO _COMPLETE";s:45:"Variable for number of instances to complete.";s:25:"ID_VARIABLES_NO_INSTANCES";s:33:"Variable for number of instances.";s:16:"ID_VARIABLES_OUT";s:13:"Variables Out";s:28:"ID_VARIABLES_PARAM_NOT_ARRAY";s:35:"The variables param is not an array";s:23:"ID_VARIABLES_PARAM_ZERO";s:34:"The variables param length is zero";s:21:"ID_VARIABLES_RECEIVED";s:18:"variables received";s:17:"ID_VARIABLES_SENT";s:14:"variables sent";s:29:"ID_VARIABLES_VALUE_ASSIGNMENT";s:35:"Variable for Value Based Assignment";s:40:"ID_VARIABLE_ASSOCIATED_WITH_REPORT_TABLE";s:62:"The variable with "{0}", it is associated with a report table.";s:18:"ID_VARIABLE_IN_USE";s:125:"This variable can not be deleted because it is being used in DynaForm : {0}. To delete it, first remove it from the DynaForm.";s:22:"ID_VARIABLE_NO_IS_GRID";s:42:"The Variable with {0}: "{1}" is not a grid";s:18:"ID_VARIABLE_PICKER";s:16:"pmVariablePicker";s:10:"ID_VERSION";s:7:"Version";s:13:"ID_VERSIONING";s:10:"Versioning";s:18:"ID_VERSION_HISTORY";s:15:"Version History";s:16:"ID_VERTICAL_LINE";s:13:"Vertical Line";s:7:"ID_VIEW";s:4:"View";s:20:"ID_VIEW_EDIT_PROFILE";s:17:"View/Edit Profile";s:12:"ID_VIEW_INFO";s:16:"View Information";s:16:"ID_VIEW_RESPONSE";s:13:"View Response";s:18:"ID_VIEW_USER_GROUP";s:6:"Groups";s:10:"ID_VISIBLE";s:7:"Visible";s:8:"ID_VISIT";s:5:"Visit";s:25:"ID_WAIT_INSTALLING_PLUGIN";s:50:"Please wait while the plugin is being installed...";s:36:"ID_WAIT_WHILE_UPGRADING_PROCESSMAKER";s:43:"Please wait while upgrading ProcessMaker...";s:10:"ID_WARNING";s:7:"WARNING";s:33:"ID_WARNING_ENTERPRISE_LICENSE_MSG";s:35:"Please select a valid license file.";s:37:"ID_WARNING_ENTERPRISE_LICENSE_MSG_DAT";s:67:"The file doesn\'t have a .dat extension, please select another file.";s:25:"ID_WARNING_ERROR_UPDATING";s:33:"Error uploading the license file.";s:44:"ID_WARNING_GATEWAY_CONVERGENT_WITH_CONDITION";s:65:"Your Gateway Convergent has a condition, save again your process.";s:19:"ID_WARNING_PMTABLES";s:31:"Error uploading the PM Table(s)";s:9:"ID_WEBBOT";s:7:"Webbots";s:16:"ID_WEBENTRY_LINK";s:14:"Web Entry Link";s:12:"ID_WEB_ENTRY";s:9:"Web Entry";s:57:"ID_WEB_ENTRY_ACTIVITY_DOES_NOT_HAVE_VALID_ASSIGNMENT_TYPE";s:164:"Web entry only works with activities which have "Cyclical Assignment". The activity "{0}" does not have a valid assignment type. Please change the Assignment Rules.";s:27:"ID_WEB_ENTRY_DOES_NOT_EXIST";s:43:"The web entry with {0}: {1} does not exist.";s:37:"ID_WEB_ENTRY_EVENT_ALREADY_REGISTERED";s:46:"The event with {0}: {1} already is registered.";s:33:"ID_WEB_ENTRY_EVENT_DOES_NOT_EXIST";s:48:"The WebEntry-Event with {0}: {1} does not exist.";s:41:"ID_WEB_ENTRY_EVENT_DOES_NOT_IS_REGISTERED";s:42:"The event with {0}: {1} is not registered.";s:56:"ID_WEB_ENTRY_EVENT_FLOW_EVENT_TO_ACTIVITY_DOES_NOT_EXIST";s:45:"The flow of event to activity does not exist.";s:39:"ID_WEB_ENTRY_EVENT_TITLE_ALREADY_EXISTS";s:56:"The WebEntry-Event title with {0}: "{1}" already exists.";s:17:"ID_WEB_ENTRY_LINK";s:14:"Web Entry Link";s:27:"ID_WEB_ENTRY_SUCCESS_DELETE";s:27:"Web Entry deleted correctly";s:24:"ID_WEB_ENTRY_SUCCESS_NEW";s:37:"Web Entry has been created correctly.";s:20:"ID_WEB_ENTRY_SUMMARY";s:17:"Web Entry Summary";s:33:"ID_WEB_ENTRY_TITLE_ALREADY_EXISTS";s:51:"The web entry title with {0}: "{1}" already exists.";s:13:"ID_WEB_SERVER";s:10:"Web Server";s:15:"ID_WEB_SERVICES";s:17:"Web Services Test";s:23:"ID_WEB_SERVICE_PASSWORD";s:20:"Web Service Password";s:19:"ID_WEB_SERVICE_USER";s:16:"Web Service User";s:7:"ID_WEEK";s:4:"Week";s:12:"ID_WEEKDAY_0";s:6:"Sunday";s:12:"ID_WEEKDAY_1";s:6:"Monday";s:12:"ID_WEEKDAY_2";s:7:"Tuesday";s:12:"ID_WEEKDAY_3";s:9:"Wednesday";s:12:"ID_WEEKDAY_4";s:8:"Thursday";s:12:"ID_WEEKDAY_5";s:6:"Friday";s:12:"ID_WEEKDAY_6";s:8:"Saturday";s:16:"ID_WEEKDAY_ABB_0";s:3:"Sun";s:16:"ID_WEEKDAY_ABB_1";s:3:"Mon";s:16:"ID_WEEKDAY_ABB_2";s:3:"Tue";s:16:"ID_WEEKDAY_ABB_3";s:3:"Wed";s:16:"ID_WEEKDAY_ABB_4";s:3:"Thu";s:16:"ID_WEEKDAY_ABB_5";s:3:"Fri";s:16:"ID_WEEKDAY_ABB_6";s:3:"Sat";s:8:"ID_WEEKS";s:5:"Weeks";s:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";s:28:"ID_WEVE_MADE_IT_EASY_FOR_YOU";s:57:"We\'ve made it easy for you to make the following requests";s:19:"ID_WF_DATABASE_NAME";s:22:"Workflow Database Name";s:17:"ID_WITHOUT_RESUME";s:15:"Without resume!";s:53:"ID_WIZARD_LIBRARY_AND_FUNCTION_IS_INVALID_FOR_TRIGGER";s:95:"The wizard with the library "{0}" and function "{1}", is invalid for the trigger with {2}: {3}.";s:25:"ID_WORFLOW_DATA_DIRECTORY";s:23:"Workflow Data Directory";s:20:"ID_WORKFLOW_DATABASE";s:17:"Workflow Database";s:25:"ID_WORKFLOW_DATABASE_NAME";s:39:"Please enter the Workflow Database Name";s:35:"ID_WORKFLOW_DATA_DIRECTORY_REQUIRED";s:38:""Workflow Data Directory" is required.";s:16:"ID_WORKING_CASES";s:13:"% In Progress";s:15:"ID_WORKING_DAYS";s:12:"Working days";s:12:"ID_WORKSPACE";s:9:"Workspace";s:13:"ID_WORKSPACES";s:10:"WORKSPACES";s:26:"ID_WORKSPACE_ADMINISTRATOR";s:23:"Workspace Administrator";s:26:"ID_WORKSPACE_CONFIGURATION";s:23:"Workspace Configuration";s:17:"ID_WORKSPACE_NAME";s:14:"Workspace Name";s:18:"ID_WORKSPACE_USING";s:15:"Using workspace";s:12:"ID_WORK_DAYS";s:9:"Work days";s:13:"ID_WORK_HOURS";s:10:"Work hours";s:12:"ID_WRITEABLE";s:8:"Writable";s:13:"ID_WRONG_PASS";s:14:"Wrong password";s:18:"ID_WRONG_USER_PASS";s:27:"Wrong username or password.";s:7:"ID_WSDL";s:37:"The Server Host or Workspace is blank";s:6:"ID_XML";s:3:"XML";s:20:"ID_XMLFROM_DIRECTORY";s:17:"Xmlform Directory";s:16:"ID_XPDL_FILENAME";s:19:"Download XPDL File:";s:14:"ID_XPDL_IMPORT";s:11:"Import XPDL";s:7:"ID_YEAR";s:4:"Year";s:8:"ID_YEARS";s:5:"Years";s:17:"ID_YELLOW_ENDS_IN";s:14:"Yellow Ends In";s:19:"ID_YELLOW_STARTS_IN";s:16:"Yellow Starts In";s:6:"ID_YES";s:3:"Yes";s:12:"ID_YESTERDAY";s:9:"Yesterday";s:12:"ID_YES_VALUE";s:3:"Yes";s:25:"ID_YOUR_FILE_HAS_EXCEEDED";s:58:"Your file has exceeded the file maximum size that is 10MB.";s:35:"ID_YOUR_IMAGE_HAS_BEEN_SUCCESSFULLY";s:41:"Your image has been successfully uploaded";s:15:"ID_YOUR_LICENSE";s:12:"Your license";s:19:"ID_YOUR_PASSWORD_IS";s:16:"Your password is";s:19:"ID_YOUR_USERMANE_IS";s:16:"Your username is";s:21:"ID_YOU_ARE_FIRST_STEP";s:26:"You are in the first step!";s:31:"ID_YOU_ARE_NOT_CAN_SELECT_PHOTO";s:39:"You can not select more than one photo.";s:29:"ID_YOU_DO_NOT_HAVE_PERMISSION";s:34:"Error: You do not have permission.";s:39:"ID_YOU_DO_NOT_SELECT_ANY_USER_TO_IMPORT";s:36:"You do not select any user to import";s:17:"ID_YOU_HAVE_ERROR";s:17:"you have an error";s:45:"ID_YOU_UPLOADED_AN_UNSUPPORTED_FILE_EXTENSION";s:135:"You uploaded an unsupported file extension, please review the permitted files uploaded in the wiki of ProcessMaker for the cases notes.";s:11:"ID_ZIP_CODE";s:8:"Zip Code";s:12:"IMAGE_DETAIL";s:12:"Image detail";s:31:"IMPORT_LANGUAGE_ERR_NO_WRITABLE";s:39:"The XML forms directory is not writable";s:32:"IMPORT_LANGUAGE_ERR_NO_WRITABLE2";s:182:"Some files within XMLFORM directory are not writable, to install or update the translations the system requires that all files are writable. Contact your system administrator please.";s:23:"IMPORT_LANGUAGE_SUCCESS";s:47:"The translation file was successfully imported.";s:22:"IMPORT_PROCESS_DISABLE";s:67:"Disable the current process and create a new version of the process";s:18:"IMPORT_PROCESS_NEW";s:68:"Create a completely new process without changing the current process";s:26:"IMPORT_PROCESS_OVERWRITING";s:59:"Update the current process, overwriting all tasks and steps";s:21:"INCOMING_PORT_DEFAULT";s:27:"Incoming Port (default 143)";s:12:"INVALID_FILE";s:13:"Invalid file!";s:27:"IS_USER_NAME_DISPLAY_FORMAT";s:24:"User Name Display Format";s:5:"LOGIN";s:5:"Login";s:8:"LOGIN_AS";s:8:"Login as";s:16:"LOGIN_VERIFY_MSG";s:12:"Verifying...";s:7:"MAIL_TO";s:7:"Mail to";s:12:"MIME_DES_AVI";s:14:"AVI Video File";s:12:"MIME_DES_BMP";s:11:"BMP Picture";s:14:"MIME_DES_BZIP2";s:13:"BZIP2 Archive";s:12:"MIME_DES_CGI";s:10:"CGI Script";s:13:"MIME_DES_CPPH";s:15:"C++ Header File";s:13:"MIME_DES_CPPS";s:15:"C++ Source File";s:12:"MIME_DES_CSS";s:8:"CSS File";s:12:"MIME_DES_DIR";s:9:"Directory";s:12:"MIME_DES_DOC";s:13:"Word Document";s:13:"MIME_DES_DOCX";s:13:"Word Document";s:14:"MIME_DES_EXCEL";s:14:"Excel Document";s:12:"MIME_DES_EXE";s:15:"Executable File";s:13:"MIME_DES_FILE";s:4:"File";s:14:"MIME_DES_FLASH";s:16:"Flash Movie File";s:12:"MIME_DES_GIF";s:11:"GIF Picture";s:13:"MIME_DES_GZIP";s:12:"GZIP Archive";s:13:"MIME_DES_HTML";s:9:"HTML Page";s:14:"MIME_DES_JAVAC";s:15:"Java Class File";s:14:"MIME_DES_JAVAS";s:16:"Java Source File";s:12:"MIME_DES_JPG";s:11:"JPG Picture";s:11:"MIME_DES_JS";s:15:"Javascript File";s:13:"MIME_DES_MIDI";s:15:"MIDI Audio File";s:12:"MIME_DES_MOV";s:10:"Movie File";s:12:"MIME_DES_MP3";s:14:"MP3 Audio File";s:12:"MIME_DES_MPG";s:14:"MPG Video File";s:12:"MIME_DES_PAS";s:11:"Pascal File";s:12:"MIME_DES_PDF";s:8:"PDF File";s:13:"MIME_DES_PERL";s:11:"PERL Script";s:12:"MIME_DES_PHP";s:10:"PHP Script";s:11:"MIME_DES_PM";s:15:"PM Process File";s:12:"MIME_DES_PNG";s:11:"PNG Picture";s:12:"MIME_DES_PPT";s:15:"PowerPoint File";s:13:"MIME_DES_PPTX";s:15:"PowerPoint File";s:12:"MIME_DES_RAR";s:11:"RAR Archive";s:13:"MIME_DES_REAL";s:14:"RealAudio File";s:12:"MIME_DES_RTF";s:14:"Rich Text File";s:12:"MIME_DES_SQL";s:8:"SQL File";s:16:"MIME_DES_SYMLINK";s:13:"Symbolic Link";s:12:"MIME_DES_TAR";s:11:"TAR Archive";s:13:"MIME_DES_TEXT";s:9:"Text File";s:12:"MIME_DES_TXT";s:9:"Text File";s:12:"MIME_DES_WAV";s:14:"WAV Audio File";s:13:"MIME_DES_WORD";s:13:"Word Document";s:12:"MIME_DES_XLS";s:14:"Excel Document";s:13:"MIME_DES_XLSX";s:14:"Excel Document";s:12:"MIME_DES_ZIP";s:11:"ZIP Archive";s:30:"MISSING_OR_NOT_CONFIGURED_SMTP";s:77:"SMTP mail is missing or it\'s not configured. Please, check the configuration.";s:12:"MSGS_HISTORY";s:16:"Messages History";s:25:"MSG_CONDITION_NOT_DEFINED";s:30:"Condition variable not defined";s:22:"MSG_PO_FILE_BAD_FORMAT";s:30:"The .po file has a bad format!";s:28:"MSG_PO_FILE_INVALID_LANGUAJE";s:37:"The .po file has an invalid language!";s:12:"MSG_REQ_AUTH";s:54:"First you have to check the Require Authentication box";s:3:"NaN";s:1:"a";s:26:"NEW_SITE_CONFIRM_TO_CREATE";s:33:"Are you sure to create this site?";s:22:"NEW_SITE_NOT_AVAILABLE";s:57:"Workspace already exists, please choose a different name.";s:16:"NEW_SITE_SUCCESS";s:49:"Your new site was successfully created with name:";s:24:"NEW_SITE_SUCCESS_CONFIRM";s:30:"Do you want open the new site?";s:28:"NEW_SITE_SUCCESS_CONFIRMNOTE";s:68:"Note.- If you open the new site your current session will be closed.";s:11:"OPEN_NEW_WS";s:13:"Open new site";s:21:"OUTGOING_PORT_DEFAULT";s:26:"Outgoing Port (default 25)";s:13:"OUTPUT_CREATE";s:45:"Output document has been created successfully";s:16:"PASSWORD_HISTORY";s:16:"Password history";s:6:"PAUSED";s:5:"Pause";s:27:"PENTAHO_LABEL_CONFIGURATION";s:13:"Configuration";s:24:"PENTAHO_LABEL_DATASOURCE";s:15:"Datasource Name";s:23:"PENTAHO_LABEL_DB_EXISTS";s:24:"Datasource already exist";s:24:"PENTAHO_LABEL_DB_SUCCESS";s:31:"Datasource created successfully";s:26:"PENTAHO_LABEL_DRIVER_CLASS";s:12:"Driver Class";s:29:"PENTAHO_LABEL_JNDI_CONNECTION";s:15:"JNDI Connection";s:30:"PENTAHO_LABEL_JNDI_INFORMATION";s:16:"JNDI Information";s:22:"PENTAHO_LABEL_PASSWORD";s:8:"Password";s:21:"PENTAHO_LABEL_REBUILD";s:7:"Rebuild";s:27:"PENTAHO_LABEL_ROLES_MANAGER";s:13:"Roles Manager";s:20:"PENTAHO_LABEL_SERVER";s:20:"Pentaho Server (URL)";s:35:"PENTAHO_LABEL_SHOW_JNDI_INFORMATION";s:14:"Show JNDI Info";s:18:"PENTAHO_LABEL_SYNC";s:24:"Sync to Pentaho Solution";s:33:"PENTAHO_LABEL_TABLE_ALREADY_SYNCH";s:52:"Workspace already synchronized with Pentaho Solution";s:27:"PENTAHO_LABEL_TABLE_SUCCESS";s:60:"Table APP_CACHE_VIEW and triggers are installed successfully";s:27:"PENTAHO_LABEL_TABLE_SYNCHED";s:44:"Workspace synchronized with Pentaho Solution";s:28:"PENTAHO_LABEL_TABLE_TRIGGERS";s:28:"Database tables and triggers";s:17:"PENTAHO_LABEL_URL";s:3:"URL";s:26:"PENTAHO_LABEL_USER_CONSOLE";s:20:"Pentaho User Console";s:25:"PENTAHO_LABEL_USER_CREATE";s:22:"Create user in Pentaho";s:26:"PENTAHO_LABEL_USER_CREATED";s:25:"User created successfully";s:24:"PENTAHO_LABEL_USER_EXIST";s:19:"User already exists";s:23:"PENTAHO_LABEL_USER_NAME";s:9:"User Name";s:24:"PENTAHO_LABEL_WS_SYNCHED";s:44:"Workspace synchronized with Pentaho Solution";s:30:"PENTAHO_LABEL_WS_USER_PASSWORD";s:35:"Pentaho Workspace User and Password";s:23:"PENTAHO_TABLES_TRIGGERS";s:28:"Database tables and triggers";s:13:"PHOTO_GALLERY";s:13:"Photo gallery";s:12:"PORT_DEFAULT";s:17:"Port (default 25)";s:22:"REQUIRE_AUTHENTICATION";s:22:"Require authentication";s:14:"RESOLVING_NAME";s:19:"Resolving Host Name";s:18:"SENDING_TEST_EMAIL";s:22:"Sending a test mail to";s:14:"SEND_TEST_MAIL";s:16:"Send a test mail";s:15:"SERVER_RESPONSE";s:15:"Server Response";s:11:"SMTP_SERVER";s:11:"SMTP Server";s:5:"STEP1";s:6:"Step 1";s:5:"STEP2";s:6:"Step 2";s:5:"STEP3";s:6:"Step 3";s:5:"STEP4";s:6:"Step 4";s:9:"STEP_MODE";s:4:"Mode";s:18:"TESTING_EMAIL_CONF";s:27:"Testing email configuration";s:8:"TEST_HAS";s:12:"The test has";s:5:"TO_DO";s:5:"To Do";s:18:"UID_UNDEFINED_USER";s:14:"Undefined user";s:11:"UNCHECK_ALL";s:11:"Uncheck All";s:21:"USE_SECURE_CONNECTION";s:21:"Use Secure Connection";s:15:"VIEW_ROLE_USERS";s:5:"Users";s:19:"WEBEN_ONLY_BALANCED";s:103:"Web Entry only works with tasks which have Cyclical Assignment.
        Please change the Assignment Rules";s:23:"WRONG_LOGIN_CREDENTIALS";s:23:"Wrong login credentials";}'); ?> \ No newline at end of file diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 7cebc9c25..e66a6b2fd 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -52998,8 +52998,8 @@ msgstr "ProcessMaker plugins" # TRANSLATION # LABEL/ID_TASK_SCHEDULER_PM_PLUGINS_DESC #: LABEL/ID_TASK_SCHEDULER_PM_PLUGINS_DESC -msgid "Custom plugins execution" -msgstr "Custom plugins execution" +msgid "ProcessMaker plugins" +msgstr "ProcessMaker plugins" # TRANSLATION # LABEL/ID_TASK_SCHEDULER_CASE_EMAILS diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 8f1e4db3f..cfc9c3137 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61346,7 +61346,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_TASK_SCHEDULER_LDAP_DESC','en','Synchronize advance LDAP attributes from their settings','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_PLUGINS','en','Plugins','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_PM_PLUGINS','en','ProcessMaker plugins','2014-01-15') , -( 'LABEL','ID_TASK_SCHEDULER_PM_PLUGINS_DESC','en','Custom plugins execution','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_PM_PLUGINS_DESC','en','ProcessMaker plugins','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_PM_SYNC','en','ProcessMaker sync','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_PM_EVENTS','en','ProcessMaker events','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_PM_SCHEDULER','en','ProcessMaker scheduler','2014-01-15') , From eac4711df31f7231c6a6884b3d574cf4103f9145 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 25 Jan 2022 14:36:55 -0400 Subject: [PATCH 15/23] PMCORE-1465 --- .../BusinessModel/Cases/InputDocument.php | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InputDocument.php b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InputDocument.php index 648067244..043413d83 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InputDocument.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Cases/InputDocument.php @@ -454,34 +454,34 @@ class InputDocument /** * Get data of Cases InputDocument * - * @param string $applicationUid + * @param string $appUid * @param string $userUid * @param string $inputDocumentUid * * @return array Return an array with data of an InputDocument * @throws Exception */ - public function getCasesInputDocument($applicationUid, $userUid, $inputDocumentUid) + public function getCasesInputDocument($appUid, $userUid, $inputDocumentUid) { try { - $sApplicationUID = $applicationUid; - $sUserUID = $userUid; + $appUid = $applicationUid; - $oCase = new Cases(); - $fields = $oCase->loadCase( $sApplicationUID ); - $sProcessUID = $fields['PRO_UID']; - $sTaskUID = ''; - $oCaseRest = new BusinessModelCases(); - $oCaseRest->getAllUploadedDocumentsCriteria( $sProcessUID, $sApplicationUID, $sTaskUID, $sUserUID ); - $result = array (); + $case = new Cases(); + $fields = $case->loadCase($appUid); + $proUid = $fields['PRO_UID']; + $taskUid = ''; + $caseRest = new BusinessModelCases(); + $caseRest->getAllUploadedDocumentsCriteria($proUid, $appUid, $taskUid, $userUid); + $result = []; global $_DBArray; $flagInputDocument = false; foreach ($_DBArray['inputDocuments'] as $key => $row) { - if (isset( $row['DOC_VERSION'] )) { - $docrow = array (); + if (isset($row['DOC_VERSION'])) { + $docrow = []; $docrow['app_doc_uid'] = $row['APP_DOC_UID']; $docrow['app_doc_filename'] = $row['APP_DOC_FILENAME']; + $docrow['app_doc_comment'] = $row['APP_DOC_COMMENT']; $docrow['doc_uid'] = $row['DOC_UID']; $docrow['app_doc_version'] = $row['DOC_VERSION']; $docrow['app_doc_create_date'] = $row['CREATE_DATE']; @@ -506,11 +506,10 @@ class InputDocument } if (!$flagInputDocument) { - throw new Exception(G::LoadTranslation("ID_CASES_INPUT_DOES_NOT_EXIST", array($inputDocumentUid))); + throw new Exception(G::LoadTranslation("ID_CASES_INPUT_DOES_NOT_EXIST", [$inputDocumentUid])); } - $oResponse = json_decode(json_encode($result), false); - return $oResponse; + return json_decode(json_encode($result), false); } catch (Exception $e) { throw $e; } From 0b3416f80ce6d7f4690de1f398893e9a1b721fdc Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 25 Jan 2022 15:00:17 -0400 Subject: [PATCH 16/23] PMCORE-611 --- workflow/engine/src/ProcessMaker/Exception/ProjectNotFound.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/src/ProcessMaker/Exception/ProjectNotFound.php b/workflow/engine/src/ProcessMaker/Exception/ProjectNotFound.php index 73b4957bd..ca47ca5ac 100644 --- a/workflow/engine/src/ProcessMaker/Exception/ProjectNotFound.php +++ b/workflow/engine/src/ProcessMaker/Exception/ProjectNotFound.php @@ -8,7 +8,7 @@ class ProjectNotFound extends \RuntimeException const EXCEPTION_CODE = 400; public function __construct(Project\Handler $obj, $uid, $message = "", \Exception $previous = null) { - $message = empty($message) ? sprintf("Project \"%s\" with UID: %s, does not exist.", get_class($obj), $uid) : $message; + $message = empty($message) ? 'Project ' . $uid . ', does not exist.' : $message; parent::__construct($message, self::EXCEPTION_CODE, $previous); } From 4f9f070c4b3d22895930ed8beb13fad689bd51c1 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 25 Jan 2022 15:20:16 -0400 Subject: [PATCH 17/23] PMCORE-705 --- .../content/translations/english/processmaker.en.po | 8 ++++---- workflow/engine/data/mysql/insert.sql | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 7cebc9c25..4a60e7cdc 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -25202,8 +25202,8 @@ msgstr "Site" # TRANSLATION # LABEL/ID_SITE_CREATING #: LABEL/ID_SITE_CREATING -msgid "site creating..." -msgstr "site creating..." +msgid "Creating site..." +msgstr "Creating site..." # TRANSLATION # LABEL/ID_SIZE @@ -29558,8 +29558,8 @@ msgstr "Do you want open the new site?" # TRANSLATION # LABEL/NEW_SITE_SUCCESS_CONFIRMNOTE #: LABEL/NEW_SITE_SUCCESS_CONFIRMNOTE -msgid "Note.- If you open the new site your current session will be closed." -msgstr "Note.- If you open the new site your current session will be closed." +msgid "Note.- If you open the new site, your current session will be closed." +msgstr "Note.- If you open the new site, your current session will be closed." # TRANSLATION # LABEL/OPEN_NEW_WS diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 8f1e4db3f..14c3c6501 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61131,7 +61131,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_SITE','en','Site','2014-01-15') ; INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES -( 'LABEL','ID_SITE_CREATING','en','site creating...','2014-01-15') , +( 'LABEL','ID_SITE_CREATING','en','Creating site...','2022-01-25') , ( 'LABEL','ID_SIZE','en','Size','2014-01-15') , ( 'LABEL','ID_SIZE_IN_BYTES','en','Size in bytes','2014-01-15') , ( 'LABEL','ID_SIZE_VERY_LARGE_PERMITTED','en','The file is too large . Please upload a smaller file.','2014-10-08') , @@ -61920,7 +61920,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','NEW_SITE_NOT_AVAILABLE','en','Workspace already exists, please choose a different name.','2014-10-30') , ( 'LABEL','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2014-01-15') , ( 'LABEL','NEW_SITE_SUCCESS_CONFIRM','en','Do you want open the new site?','2014-01-15') , -( 'LABEL','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2014-01-15') , +( 'LABEL','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site, your current session will be closed.','2022-01-25') , ( 'LABEL','OPEN_NEW_WS','en','Open new site','2014-01-15') , ( 'LABEL','OUTGOING_PORT_DEFAULT','en','Outgoing Port (default 25)','2018-11-26') , ( 'LABEL','OUTPUT_CREATE','en','Output document has been created successfully','2014-01-15') , From 513f048aae39bb750c3f336ad81d6b1f1a46bd9a Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 24 Jan 2022 17:45:43 -0400 Subject: [PATCH 18/23] PMCORE-2478 --- .../Services/Api/Project/Variable.php | 75 +++++++++++-------- 1 file changed, 43 insertions(+), 32 deletions(-) diff --git a/workflow/engine/src/ProcessMaker/Services/Api/Project/Variable.php b/workflow/engine/src/ProcessMaker/Services/Api/Project/Variable.php index af3772de1..57fccd305 100644 --- a/workflow/engine/src/ProcessMaker/Services/Api/Project/Variable.php +++ b/workflow/engine/src/ProcessMaker/Services/Api/Project/Variable.php @@ -18,17 +18,22 @@ class Variable extends Api * @url GET /:prj_uid/process-variables * * @param string $prj_uid {@min 32}{@max 32} + * + * @return array + * @throws RestException + * + * @access protected + * @class AccessControl {@permission PM_FACTORY} */ public function doGetVariables($prj_uid) { try { - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $response = $variable->getVariables($prj_uid); return $response; - } catch (\Exception $e) { - throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); + } catch (Exception $e) { + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } @@ -42,6 +47,12 @@ class Variable extends Api * @param int $start {@from path} * @param int $limit {@from path} * @param string $search {@from path} + * + * @return array + * @throws RestException + * + * @access protected + * @class AccessControl {@permission PM_FACTORY} */ public function doGetVariablesByType($prj_uid, $typeVariable, $start = null, $limit = null, $search = null) { @@ -65,7 +76,7 @@ class Variable extends Api return $response; } catch (Exception $e) { - throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } @@ -74,17 +85,22 @@ class Variable extends Api * * @param string $var_uid {@min 32}{@max 32} * @param string $prj_uid {@min 32}{@max 32} + * + * @return array + * @throws RestException + * + * @access protected + * @class AccessControl {@permission PM_FACTORY} */ public function doGetVariable($var_uid, $prj_uid) { try { - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $response = $variable->getVariable($prj_uid, $var_uid); return $response; - } catch (\Exception $e) { - throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); + } catch (Exception $e) { + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } @@ -107,15 +123,13 @@ class Variable extends Api { try { $request_data = (array)($request_data); - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $arrayData = $variable->create($prj_uid, $request_data); - $response = $arrayData; return $response; - } catch (\Exception $e) { - throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); + } catch (Exception $e) { + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } @@ -137,31 +151,32 @@ class Variable extends Api { try { $request_data = (array)($request_data); - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $variable->update($prj_uid, $var_uid, $request_data); - } catch (\Exception $e) { - throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); + } catch (Exception $e) { + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } /** * @url DELETE /:prj_uid/process-variable/:var_uid - * @access protected - * @class AccessControl {@permission PM_FACTORY} * * @param string $prj_uid {@min 32}{@max 32} * @param string $var_uid {@min 32}{@max 32} + * + * @throws RestException + * + * @access protected + * @class AccessControl {@permission PM_FACTORY} */ public function doDeleteVariable($prj_uid, $var_uid) { try { - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $variable->delete($prj_uid, $var_uid); - } catch (\Exception $e) { - throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); + } catch (Exception $e) { + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } @@ -185,14 +200,12 @@ class Variable extends Api public function doPostVariableExecuteSql($prj_uid, $var_name = '', $request_data = array()) { try { - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $arrayData = ($request_data != null)? $variable->executeSql($prj_uid, $var_name, $request_data) : $variable->executeSql($prj_uid, $var_name); - $response = $arrayData; return $response; - } catch (\Exception $e) { + } catch (Exception $e) { throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } @@ -217,14 +230,12 @@ class Variable extends Api public function doPostVariableExecuteSqlSuggest($prj_uid, $var_name, $request_data) { try { - $variable = new \ProcessMaker\BusinessModel\Variable(); - + $variable = new BmVariable(); $arrayData = ($request_data != null)? $variable->executeSqlSuggest($prj_uid, $var_name, $request_data) : $variable->executeSqlSuggest($prj_uid, $var_name); - $response = $arrayData; return $response; - } catch (\Exception $e) { + } catch (Exception $e) { throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } From ba5083ca2f40968ba776453eca88fda31eb2cea9 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 24 Jan 2022 17:36:01 -0400 Subject: [PATCH 19/23] PMCORE-1474 --- workflow/engine/src/ProcessMaker/Services/Api/Cases.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/workflow/engine/src/ProcessMaker/Services/Api/Cases.php b/workflow/engine/src/ProcessMaker/Services/Api/Cases.php index deaf22e6d..c24389379 100644 --- a/workflow/engine/src/ProcessMaker/Services/Api/Cases.php +++ b/workflow/engine/src/ProcessMaker/Services/Api/Cases.php @@ -858,6 +858,7 @@ class Cases extends Api * PUT /cases/{app_uid}/execute-trigger/{tri_uid} to execute it. * * @url POST /impersonate + * @status 201 * * @param string $pro_uid {@from body} {@min 32}{@max 32} * @param string $usr_uid {@from body} {@min 32}{@max 32} @@ -1194,6 +1195,7 @@ class Cases extends Api * access case notes may create a case note. * * @url POST /:appUid/note + * @status 201 * * @param string $appUid {@min 1}{@max 32} * @param string $note_content {@min 1}{@max 500} From 454582c1c8ef50b6564c67a82c601419777fb2d1 Mon Sep 17 00:00:00 2001 From: Roly Gutierrez Date: Wed, 26 Jan 2022 11:54:39 -0400 Subject: [PATCH 20/23] PMCORE-535 When using ampersands in output document the __ERROR__ variable is being set --- workflow/engine/classes/model/OutputDocument.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/workflow/engine/classes/model/OutputDocument.php b/workflow/engine/classes/model/OutputDocument.php index a55b1098e..eec28861a 100644 --- a/workflow/engine/classes/model/OutputDocument.php +++ b/workflow/engine/classes/model/OutputDocument.php @@ -1,6 +1,7 @@ loadHtml($content); + foreach (libxml_get_errors() as $error) { + $detail = (array) $error; + Log::channel(':OutputDocument::generateTcpdf')->warning('DOMDocument::loadHtml', Bootstrap::context($detail)); + } } + libxml_clear_errors(); // Add a page and put the HTML fixed $pdf->AddPage(); From dd71349e85c0f2d2780e7cff35ddd93144597766 Mon Sep 17 00:00:00 2001 From: Andrea Adamczyk Date: Wed, 26 Jan 2022 12:28:10 -0400 Subject: [PATCH 21/23] PMCORE-3644 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index bad0ec1fd..3945a452b 100644 --- a/composer.json +++ b/composer.json @@ -35,9 +35,9 @@ "laravel/framework": "5.7.*", "luracast/restler": "3.0", "bshaffer/oauth2-server-php": "v1.0", - "colosa/pmui": "release/3.7.2-dev", - "colosa/michelangelofe": "release/3.7.2-dev", - "colosa/pmdynaform": "release/3.7.2-dev", + "colosa/pmui": "release/3.7.3-dev", + "colosa/michelangelofe": "release/3.7.3-dev", + "colosa/pmdynaform": "release/3.7.3-dev", "colosa/taskscheduler": "release/1.0.2-dev", "google/apiclient": "1.1.6", "dapphp/securimage": "^3.6", From b8fe7b53644d55f24a986a2e2ae0f7600506fd85 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Wed, 26 Jan 2022 14:18:22 -0400 Subject: [PATCH 22/23] PMCORE-3647 --- workflow/engine/methods/login/sysLogin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/workflow/engine/methods/login/sysLogin.php b/workflow/engine/methods/login/sysLogin.php index 59416d622..ed3ddebd3 100644 --- a/workflow/engine/methods/login/sysLogin.php +++ b/workflow/engine/methods/login/sysLogin.php @@ -1,5 +1,6 @@ Date: Wed, 2 Feb 2022 18:55:44 -0400 Subject: [PATCH 23/23] PMCORE-2104 --- .../engine/content/translations/english/processmaker.en.po | 4 ++-- workflow/engine/data/mysql/insert.sql | 2 +- .../engine/src/ProcessMaker/BusinessModel/EmailServer.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 3cd25acfa..c23f08e16 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -7598,8 +7598,8 @@ msgstr "Insert data..." # TRANSLATION # LABEL/ID_EMAIL_SERVER_IS_DEFAULT #: LABEL/ID_EMAIL_SERVER_IS_DEFAULT -msgid "The email server with {0}: {1} is default." -msgstr "The email server with {0}: {1} is default." +msgid "The email server can't be deleted as it is marked as default." +msgstr "The email server can't be deleted as it is marked as default." # TRANSLATION # LABEL/ID_EMAIL_SERVER_NEW diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index d8a2ba452..6a91c72e0 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -58105,7 +58105,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_EMAIL_SERVER_EDIT','en','Edit Email Server','2014-12-24') , ( 'LABEL','ID_EMAIL_SERVER_FROM_MAIL_EMPTY','en','The email has not been sent because configuration email in the Email Server Settings (admin/settings/email) is empty. Please fill this information.','2016-03-13') , ( 'LABEL','ID_EMAIL_SERVER_INSERT_DATA','en','Insert data...','2014-12-24') , -( 'LABEL','ID_EMAIL_SERVER_IS_DEFAULT','en','The email server with {0}: {1} is default.','2014-12-24') , +( 'LABEL','ID_EMAIL_SERVER_IS_DEFAULT','en','The email server can''t be deleted as it is marked as default.','2022-02-02') , ( 'LABEL','ID_EMAIL_SERVER_NEW','en','New Email Server','2014-12-24') , ( 'LABEL','ID_EMAIL_SERVER_PORT','en','Port','2014-12-24') , ( 'LABEL','ID_EMAIL_SERVER_RESULT_TESTING','en','Result Testing Email Server','2014-12-24') , diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/EmailServer.php b/workflow/engine/src/ProcessMaker/BusinessModel/EmailServer.php index 3f6232730..3c8edeb15 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/EmailServer.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/EmailServer.php @@ -692,7 +692,7 @@ class EmailServer { try { if ($this->checkIfIsDefault($emailServerUid)) { - throw new Exception(G::LoadTranslation("ID_EMAIL_SERVER_IS_DEFAULT", array($fieldNameForException, $emailServerUid))); + throw new Exception(G::LoadTranslation("ID_EMAIL_SERVER_IS_DEFAULT")); } } catch (Exception $e) { throw $e;