From d7120d146e2e1dd59d52012233b15009a9ecf2f0 Mon Sep 17 00:00:00 2001 From: henry jordan Date: Fri, 29 May 2020 18:36:07 +0000 Subject: [PATCH 01/39] Task scheduler --- app/Console/Commands/ScheduleRunCommand.php | 59 ++++ workflow/engine/classes/model/Scheduler.php | 19 ++ .../engine/classes/model/SchedulerPeer.php | 23 ++ .../classes/model/map/SchedulerMapBuilder.php | 94 +++++++ workflow/engine/config/schema.xml | 18 ++ workflow/engine/methods/scheduler/index.php | 31 +++ .../BusinessModel/TaskSchedulerBM.php | 253 ++++++++++++++++++ .../src/ProcessMaker/Model/TaskScheduler.php | 26 ++ .../ProcessMaker/Services/Api/Scheduler.php | 47 ++++ 9 files changed, 570 insertions(+) create mode 100755 app/Console/Commands/ScheduleRunCommand.php create mode 100755 workflow/engine/classes/model/Scheduler.php create mode 100755 workflow/engine/classes/model/SchedulerPeer.php create mode 100755 workflow/engine/classes/model/map/SchedulerMapBuilder.php mode change 100644 => 100755 workflow/engine/config/schema.xml create mode 100755 workflow/engine/methods/scheduler/index.php create mode 100755 workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php create mode 100755 workflow/engine/src/ProcessMaker/Model/TaskScheduler.php create mode 100755 workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php new file mode 100755 index 000000000..329a05e63 --- /dev/null +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -0,0 +1,59 @@ +startedAt = Carbon::now(); + $this->signature = "schedule:run"; + $this->signature .= ' + {--workspace=workflow : ProcessMaker Indicates the workspace to be processed.} + {--processmakerPath=./ : ProcessMaker path.} + '; + $this->description .= ' (ProcessMaker has extended this command)'; + parent::__construct($schedule); + } + + + /** + * Execute the console command. + * + * @return void + */ + public function handle() + { + $that = $this; + $workspace = $this->option('workspace'); + if (!empty($workspace)) { + $webApplication = new WebApplication(); + $webApplication->setRootDir($this->option('processmakerPath')); + $webApplication->loadEnvironment($workspace, false); + } + TaskScheduler::all()->each(function($p) use ($that){ + if($p->isDue()){ + Log::info("Si se ejecuta" . $p->expression); + } + if($p->enable == '1'){ + $that->schedule->exec($p->body)->cron($p->expression)->between($p->startingTime, $p->endingTime); + } + }); + parent::handle(); + } +} + + + diff --git a/workflow/engine/classes/model/Scheduler.php b/workflow/engine/classes/model/Scheduler.php new file mode 100755 index 000000000..43db632c6 --- /dev/null +++ b/workflow/engine/classes/model/Scheduler.php @@ -0,0 +1,19 @@ +dbMap !== null); + } + + /** + * Gets the databasemap this map builder built. + * + * @return the databasemap + */ + public function getDatabaseMap() + { + return $this->dbMap; + } + + /** + * The doBuild() method builds the DatabaseMap + * + * @return void + * @throws PropelException + */ + public function doBuild() + { + $this->dbMap = Propel::getDatabaseMap('workflow'); + + $tMap = $this->dbMap->addTable('SCHEDULER'); + $tMap->setPhpName('Scheduler'); + + $tMap->setUseIdGenerator(true); + + $tMap->addPrimaryKey('ID', 'Id', 'string', CreoleTypes::BIGINT, true, 20); + + $tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('STARTINGTIME', 'Startingtime', 'string', CreoleTypes::VARCHAR, false, 100); + + $tMap->addColumn('ENDINGTIME', 'Endingtime', 'string', CreoleTypes::VARCHAR, false, 100); + + $tMap->addColumn('DESCRIPTION', 'Description', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('EXPRESSION', 'Expression', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('BODY', 'Body', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('TYPE', 'Type', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('CATEGORY', 'Category', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('SYSTEM', 'System', 'int', CreoleTypes::TINYINT, false, 3); + + $tMap->addColumn('TIMEZONE', 'Timezone', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('ENABLE', 'Enable', 'int', CreoleTypes::TINYINT, false, 3); + + } // doBuild() + +} // SchedulerMapBuilder diff --git a/workflow/engine/config/schema.xml b/workflow/engine/config/schema.xml old mode 100644 new mode 100755 index 725884961..0110d7fc4 --- a/workflow/engine/config/schema.xml +++ b/workflow/engine/config/schema.xml @@ -6008,4 +6008,22 @@ + + + + + + + + + } + + + + + + + + +
diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php new file mode 100755 index 000000000..d3717c64c --- /dev/null +++ b/workflow/engine/methods/scheduler/index.php @@ -0,0 +1,31 @@ +\n" . + "var timezoneArray = " . G::json_encode($arrayTimeZoneId) . ";\n" . + "\n"; + echo($js); + } + $js = "" . + "\n"; + echo($js); + + $file = file_get_contents(PATH_HOME . 'public_html/lib/taskscheduler/index.html'); + echo $file; +} catch (Exception $e) { + +} +?> \ No newline at end of file diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php new file mode 100755 index 000000000..66b9f1fa0 --- /dev/null +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -0,0 +1,253 @@ +each(function($p){ + if($p->isDue()){ + Log::info("EXECUTE::" . $p->title . " -->" . $p->expression); + } + }); + } + + public static function getSchedule($category){ + $tasks = TaskScheduler::all(); + $count = $tasks->count(); + if($count == 0){ + TaskSchedulerBM::generateInitialData(); + $tasks = TaskScheduler::all(); + } + if(is_null($category)){ + return $tasks; + }else{ + return TaskScheduler::where('category', $category)->get(); + } + } + + public static function saveSchedule(array $request_data){ + $task = TaskScheduler::find($request_data['id']); + if(isset($request_data['expression'])){ + $task->expression = $request_data['expression']; + } + if(isset($request_data['enable'])){ + $task->enable = $request_data['enable']; + } + if(isset($request_data['startingTime'])){ + $task->startingTime = $request_data['startingTime']; + } + if(isset($request_data['endingTime'])){ + $task->endingTime = $request_data['endingTime']; + } + if(isset($request_data['timezone'])){ + $task->timezone = $request_data['timezone']; + } + $task->save(); + return array(); + } + + public static function generateInitialData(){ + $arraySystemConfiguration = System::getSystemConfiguration('', '', config("system.workspace")); + $toSave = array(); + $services = array( + array( + "title" => "ProcessMaker Events", + "service" => "events", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * * * *", + "description" => "Unpauses any case whose pause time has expired" + ), + array( + "title" => "ProcessMaker Scheduler", + "enable" => "1", + "service" => "scheduler", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => "Unpauses any case whose pause time has expired" + ), + array( + "title" => "Unpause Cases", + "enable" => "0", + "service" => "unpause", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* */1 * * *", + "description" => "Unpauses any case whose pause time has expired" + ), + array( + "title" => "Case Emails", + "enable" => "1", + "service" => "emails", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "*/5 * * * *", + "description" => "Task, triggers, and actions by email notifications" + ), + array( + "title" => "ProcessMaker Plugins", + "enable" => "0", + "service" => "plugins", + "category" => "plugins", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => "Custom plugins execution" + ), + array( + "title" => "Calculate the elapsed time", + "service" => "calculate", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => 'Calculates the elapsed time "according to the configured calendar" of all open tasks in active cases)' + ), + array( + "title" => "Calculate App data", + "service" => "calculateapp", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => 'Calculates the elapsed time "according to the configured calendar" of all open tasks in active cases)' + ), + array( + "title" => "Unassigned Case", + "service" => "unassigned-case", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* */1 * * *", + "description" => 'Run the trigger for self-service cases that have a configured timeout setting)' + ), + array( + "title" => "Clean self service tables", + "service" => "clean-self-service-tables", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => 'Clean unused records for Self-Service Value-Based feature. It is a maintenance command' + ), + array( + "title" => "Report by Users", + "enable" => "0", + "service" => "report_by_user", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* */1 * * *", + "description" => "Report by Users" + + ), + array( + "title" => "Report by process", + "enable" => "0", + "service" => "report_by_process", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* */1 * * *", + "description" => "Report by process" + ), + array( + "title" => "Message Events", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/messageeventcron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "*/5 * * * *", + "description" => "Intermediate and End Email Event" + ), + array( + "title" => "ProcessMaker timer event cron", + "enable" => "0", + "service" => "", + "category" => "case_actions", + "file" => "workflow/engine/bin/timereventcron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => "ProcessMaker timer event cron" + ), + array( + "title" => "ProcessMaker LDAP cron", + "enable" => "0", + "service" => "", + "category" => "processmaker_sync", + "file" => "workflow/engine/bin/ldapcron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * */1 * *", + "description" => "Synchronize Advance LDAP Attributes from their settings" + ), + array( + "title" => "Send notifications", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/sendnotificationscron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "*/5 * * * *", + "description" => "ProcessMaker Mobile Notifications" + ), + array( + "title" => "Action by emails response", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/actionsByEmailEmailResponse.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "*/5 * * * *", + "description" => "Actions by email response account email revision" + ) + ); + + for($i = 0; $i < count($services); ++$i) { + $task = new TaskScheduler; + $task->title = $services[$i]["title"]; + $task->category = $services[$i]["category"]; + $task->description = $services[$i]["description"]; + $task->startingTime = $services[$i]["startingTime"]; + $task->endingTime = $services[$i]["endingTime"]; + $task->body = 'su -s /bin/sh -c "php '. PATH_TRUNK . $services[$i]["file"] . " " . $services[$i]["service"] . ' +w' . config("system.workspace") . ' +force"'; + $task->expression = $services[$i]["expression"]; + $task->type = "shell"; + $task->system = 1; + $task->timezone = $arraySystemConfiguration['time_zone']; + $task->enable = $services[$i]["enable"]; + $task->startingTime = "0:00"; + $task->endingTime = "23:59"; + $task->save(); + } + } +} \ No newline at end of file diff --git a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php new file mode 100755 index 000000000..59203a654 --- /dev/null +++ b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php @@ -0,0 +1,26 @@ +expression)->isDue($date->toDateTimeString()); + } +} diff --git a/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php b/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php new file mode 100755 index 000000000..0f13f24f5 --- /dev/null +++ b/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php @@ -0,0 +1,47 @@ +getMessage()); + } + } + + /** + * @url POST + * @status 200 + * + * @param array $request_data + * + * @return array + * @throws RestException + * + */ + public function doPost(array $request_data) { + try { + return TaskSchedulerBM::saveSchedule($request_data); + } catch (\Exception $e) { + throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); + } + } +} From ac859bf1caab3df4a1d0bfef2bc454d5ec032706 Mon Sep 17 00:00:00 2001 From: henry jordan Date: Mon, 1 Jun 2020 16:18:28 +0000 Subject: [PATCH 02/39] add options in menu update 5 translations add transtations in Task scheduler --- Rakefile | 4 + .../engine/content/languages/translation.en | 4 +- .../translations/english/processmaker.en.po | 186 ++++++++++++++++++ workflow/engine/data/mysql/insert.sql | 30 +++ workflow/engine/menus/setup.php | 23 +++ .../BusinessModel/TaskSchedulerBM.php | 42 ++-- 6 files changed, 266 insertions(+), 23 deletions(-) mode change 100644 => 100755 Rakefile mode change 100644 => 100755 workflow/engine/content/languages/translation.en mode change 100644 => 100755 workflow/engine/content/translations/english/processmaker.en.po mode change 100644 => 100755 workflow/engine/data/mysql/insert.sql mode change 100644 => 100755 workflow/engine/menus/setup.php diff --git a/Rakefile b/Rakefile old mode 100644 new mode 100755 index c0d680a19..89b2d1882 --- a/Rakefile +++ b/Rakefile @@ -67,6 +67,10 @@ task :build => [:required] do mafeHash = getHash(Dir.pwd + "/vendor/colosa/MichelangeloFE") pmdynaformHash = getHash(Dir.pwd + "/vendor/colosa/pmDynaform") + system "npm run build --prefix #{Dir.pwd}/vendor/colosa/taskscheduler" + system "cp -Rf #{Dir.pwd}/vendor/colosa/taskscheduler/taskscheduler #{targetDir}/taskscheduler" + system "cp #{Dir.pwd}/vendor/colosa/taskscheduler/taskscheduler/index.html #{targetDir}/taskscheduler" + hashVendors = pmuiHash+"-"+mafeHash ## Building minified JS Files puts "Building file: " + "/js/mafe-#{hashVendors}.js".cyan diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en old mode 100644 new mode 100755 index 60d5f191a..00617d1ca --- 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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. +$translation =unserialize('a:4528:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can\'t create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can\'t create folder
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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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: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: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: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: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: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:8:"ID_HOURS";s:5:"Hours";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:6:"ID_TUE";s:3:"Tue";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: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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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: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: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: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: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: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:8:"ID_HOURS";s:5:"Hours";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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:18:"Calculate app data";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: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: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:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";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:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";s:30:"ID_TASK_SCHEDULER_REPORT_USERS";s:15:"Report by users";s:32:"ID_TASK_SCHEDULER_REPORT_PROCESS";s:17:"Report by process";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:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:6:"ID_TUE";s:3:"Tue";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: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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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 old mode 100644 new mode 100755 index bcdea0a8f..6d2539880 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -51531,3 +51531,189 @@ msgstr "Cancel" msgid "[dynaforms/fields/yesno.xml?PME_ACCEPT] Save" msgstr "Save" +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER +#: LABEL/ID_TASK_SCHEDULER +msgid "Task Scheduler" +msgstr "Task Scheduler" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CASE_ACTIONS +#: LABEL/ID_TASK_SCHEDULER_CASE_ACTIONS +msgid "Case actions" +msgstr "Case actions" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_PLUGINS +#: LABEL/ID_TASK_SCHEDULER_PLUGINS +msgid "Plugins" +msgstr "Plugins" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_PM_SYNC +#: LABEL/ID_TASK_SCHEDULER_PM_SYNC +msgid "ProcessMaker sync" +msgstr "ProcessMaker sync" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS +#: LABEL/ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS +msgid "Emails and notifications" +msgstr "Emails and notifications" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_ACTION_EMAIL +#: LABEL/ID_TASK_SCHEDULER_ACTION_EMAIL +msgid "Action by Email Response" +msgstr "Action by Email Response" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_ACTION_EMAIL_DESC +#: LABEL/ID_TASK_SCHEDULER_ACTION_EMAIL_DESC +msgid "Action by email response account email revision" +msgstr "Action by email response account email revision" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_SEND_NOT +#: LABEL/ID_TASK_SCHEDULER_SEND_NOT +msgid "Send notifications" +msgstr "Send notifications" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_SEND_NOT_DESC +#: LABEL/ID_TASK_SCHEDULER_SEND_NOT_DESC +msgid "ProcessMaker mobile notifications" +msgstr "ProcessMaker mobile notifications" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_LDAP +#: LABEL/ID_TASK_SCHEDULER_LDAP +msgid "ProcessMaker LDAP cron" +msgstr "ProcessMaker LDAP cron" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_LDAP_DESC +#: LABEL/ID_TASK_SCHEDULER_LDAP_DESC +msgid "Synchronize advance LDAP attributes from their settings" +msgstr "Synchronize advance LDAP attributes from their settings" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CLEAN_SELF +#: LABEL/ID_TASK_SCHEDULER_CLEAN_SELF +msgid "Clean self service tables" +msgstr "Clean self service tables" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CLEAN_SELF_DESC +#: LABEL/ID_TASK_SCHEDULER_CLEAN_SELF_DESC +msgid "Clean unused records for Self-Service Value-Based feature. It is a maintenance command" +msgstr "Clean unused records for Self-Service Value-Based feature. It is a maintenance command" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORT_USERS +#: LABEL/ID_TASK_SCHEDULER_REPORT_USERS +msgid "Report by users" +msgstr "Report by users" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS +#: LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS +msgid "Report by process" +msgstr "Report by process" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_MESSAGE_EVENTS +#: LABEL/ID_TASK_SCHEDULER_MESSAGE_EVENTS +msgid "Message events" +msgstr "Message events" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC +#: LABEL/ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC +msgid "Intermediate and end email event" +msgstr "Intermediate and end email event" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_UNASSIGNED +#: LABEL/ID_TASK_SCHEDULER_UNASSIGNED +msgid "Unassigned case" +msgstr "Unassigned case" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_UNASSIGNED_DESC +#: LABEL/ID_TASK_SCHEDULER_UNASSIGNED_DESC +msgid "Run the trigger for self-service cases that have a configured timeout setting" +msgstr "Run the trigger for self-service cases that have a configured timeout setting" + + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CALCULATE_APP +#: LABEL/ID_TASK_SCHEDULER_CALCULATE_APP +msgid "Calculate app data" +msgstr "Calculate app data" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CALCULATE_ELAPSED +#: LABEL/ID_TASK_SCHEDULER_CALCULATE_ELAPSED +msgid "Calculated the elapsed time" +msgstr "Calculated the elapsed time" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC +#: LABEL/ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC +msgid "Calculates the elapsed time according to the configured calendar of all open tasks in active cases" +msgstr "Calculates the elapsed time according to the configured calendar of all open tasks in active cases" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_PM_PLUGINS +#: LABEL/ID_TASK_SCHEDULER_PM_PLUGINS +msgid "ProcessMaker plugins" +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" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CASE_EMAILS +#: LABEL/ID_TASK_SCHEDULER_CASE_EMAILS +msgid "Case Emails" +msgstr "Case Emails" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CASE_EMAILS_DESC +#: LABEL/ID_TASK_SCHEDULER_CASE_EMAILS_DESC +msgid "Task, triggers, and actions by email notifications" +msgstr "Task, triggers, and actions by email notifications" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_UNPAUSE +#: LABEL/ID_TASK_SCHEDULER_UNPAUSE +msgid "Unpause cases" +msgstr "Unpause cases" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_UNPAUSE_DESC +#: LABEL/ID_TASK_SCHEDULER_UNPAUSE_DESC +msgid "Unpauses any case whose pause time has expired" +msgstr "Unpauses any case whose pause time has expired" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_PM_SCHEDULER +#: LABEL/ID_TASK_SCHEDULER_PM_SCHEDULER +msgid "Unpauses any case whose pause time has expired" +msgstr "Unpauses any case whose pause time has expired" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_PM_EVENTS +#: LABEL/ID_TASK_SCHEDULER_PM_EVENTS +msgid "ProcessMaker events" +msgstr "ProcessMaker events" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_PM_SCHEDULER +#: LABEL/ID_TASK_SCHEDULER_PM_SCHEDULER +msgid "ProcessMaker scheduler" +msgstr "ProcessMaker scheduler" \ No newline at end of file diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql old mode 100644 new mode 100755 index df1b025bb..ac49447ad --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61082,6 +61082,36 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_TASK_TRANSFER','en','Task Transfer Date','2014-01-15') , ( 'LABEL','ID_TASK_WAS_ASSIGNED_TO_USER','en','Manual assignment shouldn''t be used with sub-processes.
        The task "{0}" from case {1} was assigned to user {2} ( {3} {4} )','2015-02-24') , ( 'LABEL','ID_TAS_DURATION_REQUIRE','en','Duration task required','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER','en','Task Scheduler','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_ACTION_EMAIL','en','Action by Email Response','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_ACTION_EMAIL_DESC','en','Action by email response account email revision','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_APP','en','Calculate app data','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_ELAPSED','en','Calculated the elapsed time','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC','en','Calculates the elapsed time according to the configured calendar of all open tasks in active cases','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CASE_ACTIONS','en','Case actions','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CASE_EMAILS','en','Case emails','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CASE_EMAILS_DESC','en','Task, triggers, and actions by email notifications','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CLEAN_SELF','en','Clean self service tables','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CLEAN_SELF_DESC','en','Clean unused records for Self-Service Value-Based feature. It is a maintenance command','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_MESSAGE_EVENTS','en','Message events','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC','en','Intermediate and end email event','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_LDAP','en','ProcessMaker LDAP cron','2014-01-15') , +( '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_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') , +( 'LABEL','ID_TASK_SCHEDULER_REPORT_USERS','en','Report by users','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_REPORT_PROCESS','en','Report by process','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_SEND_NOT','en','Send notifications','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_SEND_NOT_DESC','en','ProcessMaker mobile notifications','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_UNASSIGNED','en','Unassigned case','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_UNASSIGNED_DESC','en','Run the trigger for self-service cases that have a configured timeout setting','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_UNPAUSE','en','Unpause cases','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_UNPAUSE_DESC','en','Unpauses any case whose pause time has expired','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS','en','Emails and notifications','2014-01-15') , ( 'LABEL','ID_TAS_EDIT','en','Tasks (Edit mode)','2014-01-15') , ( 'LABEL','ID_TAS_UID_PARAMETER_IS_EMPTY','en','The TAS_UID parameter is empty.','2016-04-08') , ( 'LABEL','ID_TAS_VIEW','en','Tasks (View mode)','2014-01-15') , diff --git a/workflow/engine/menus/setup.php b/workflow/engine/menus/setup.php old mode 100644 new mode 100755 index 03acd845c..e8c563246 --- a/workflow/engine/menus/setup.php +++ b/workflow/engine/menus/setup.php @@ -295,3 +295,26 @@ if ((string)($status) !== 'enabled' && ); } /*----------------------------------********---------------------------------*/ + +if ($RBAC->userCanAccess('PM_TASK_SCHEDULER_ADMIN') === 1) { + $G_TMP_MENU->AddIdRawOption( + 'ID_MENU_CASE_ACTIONS', '../scheduler/index?category=case_actions', + G::LoadTranslation("ID_TASK_SCHEDULER_CASE_ACTIONS"), + '', '', G::LoadTranslation("ID_TASK_SCHEDULER") + ); + $G_TMP_MENU->AddIdRawOption( + 'ID_MENU_EMAILS_NOTIFICATIONS', '../scheduler/index?category=emails_notifications', + G::LoadTranslation("ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS"), + '', '', G::LoadTranslation("ID_TASK_SCHEDULER") + ); + $G_TMP_MENU->AddIdRawOption( + 'ID_MENU_PLUGINS', '../scheduler/index?category=plugins', + G::LoadTranslation("ID_TASK_SCHEDULER_PLUGINS"), + '', '', G::LoadTranslation("ID_TASK_SCHEDULER") + ); + $G_TMP_MENU->AddIdRawOption( + 'ID_MENU_PM_SYNC', '../scheduler/index?category=processmaker_sync', + G::LoadTranslation("ID_TASK_SCHEDULER_PM_SYNC"), + '', '', G::LoadTranslation("ID_TASK_SCHEDULER") + ); +} \ No newline at end of file diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 66b9f1fa0..e5563c3cc 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -80,7 +80,7 @@ class TaskSchedulerBM "description" => "Unpauses any case whose pause time has expired" ), array( - "title" => "Unpause Cases", + "title" => "ID_TASK_SCHEDULER_UNPAUSE", "enable" => "0", "service" => "unpause", "category" => "case_actions", @@ -88,10 +88,10 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* */1 * * *", - "description" => "Unpauses any case whose pause time has expired" + "description" => "ID_TASK_SCHEDULER_UNPAUSE_DESC" ), array( - "title" => "Case Emails", + "title" => "ID_TASK_SCHEDULER_CASE_EMAILS", "enable" => "1", "service" => "emails", "category" => "emails_notifications", @@ -99,10 +99,10 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "*/5 * * * *", - "description" => "Task, triggers, and actions by email notifications" + "description" => "ID_TASK_SCHEDULER_CASE_EMAILS_DESC" ), array( - "title" => "ProcessMaker Plugins", + "title" => "ID_TASK_SCHEDULER_PM_PLUGINS", "enable" => "0", "service" => "plugins", "category" => "plugins", @@ -110,17 +110,17 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* * */1 * *", - "description" => "Custom plugins execution" + "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" ), array( - "title" => "Calculate the elapsed time", + "title" => "ID_TASK_SCHEDULER_CALCULATE_ELAPSED", "service" => "calculate", "category" => "case_actions", "file" => "workflow/engine/bin/cron.php", "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* * */1 * *", - "description" => 'Calculates the elapsed time "according to the configured calendar" of all open tasks in active cases)' + "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' ), array( "title" => "Calculate App data", @@ -130,27 +130,27 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* * */1 * *", - "description" => 'Calculates the elapsed time "according to the configured calendar" of all open tasks in active cases)' + "description" => 'Calculates the elapsed time "according to the configured calendar" of all open tasks in active cases' ), array( - "title" => "Unassigned Case", + "title" => "ID_TASK_SCHEDULER_UNASSIGNED", "service" => "unassigned-case", "category" => "case_actions", "file" => "workflow/engine/bin/cron.php", "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* */1 * * *", - "description" => 'Run the trigger for self-service cases that have a configured timeout setting)' + "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' ), array( - "title" => "Clean self service tables", + "title" => "ID_TASK_SCHEDULER_CLEAN_SELF", "service" => "clean-self-service-tables", "category" => "case_actions", "file" => "workflow/engine/bin/cron.php", "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* * */1 * *", - "description" => 'Clean unused records for Self-Service Value-Based feature. It is a maintenance command' + "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' ), array( "title" => "Report by Users", @@ -176,7 +176,7 @@ class TaskSchedulerBM "description" => "Report by process" ), array( - "title" => "Message Events", + "title" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS", "enable" => "1", "service" => "", "category" => "emails_notifications", @@ -184,7 +184,7 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "*/5 * * * *", - "description" => "Intermediate and End Email Event" + "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" ), array( "title" => "ProcessMaker timer event cron", @@ -198,7 +198,7 @@ class TaskSchedulerBM "description" => "ProcessMaker timer event cron" ), array( - "title" => "ProcessMaker LDAP cron", + "title" => "ID_TASK_SCHEDULER_LDAP", "enable" => "0", "service" => "", "category" => "processmaker_sync", @@ -206,10 +206,10 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* * */1 * *", - "description" => "Synchronize Advance LDAP Attributes from their settings" + "description" => "ID_TASK_SCHEDULER_LDAP_DESC" ), array( - "title" => "Send notifications", + "title" => "ID_TASK_SCHEDULER_SEND_NOT", "enable" => "1", "service" => "", "category" => "emails_notifications", @@ -217,10 +217,10 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "*/5 * * * *", - "description" => "ProcessMaker Mobile Notifications" + "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" ), array( - "title" => "Action by emails response", + "title" => "ID_TASK_SCHEDULER_ACTION_EMAIL", "enable" => "1", "service" => "", "category" => "emails_notifications", @@ -228,7 +228,7 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "*/5 * * * *", - "description" => "Actions by email response account email revision" + "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" ) ); From 4e442779ae59e31760663b0cd34e469fa07458a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Cesar=20Laura=20Avenda=C3=B1o?= Date: Tue, 21 Apr 2020 19:42:26 +0000 Subject: [PATCH 03/39] PMCORE-577 --- workflow/engine/config/schema.xml | 2 +- workflow/engine/data/mysql/schema.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/config/schema.xml b/workflow/engine/config/schema.xml index 0110d7fc4..c097c14e8 100755 --- a/workflow/engine/config/schema.xml +++ b/workflow/engine/config/schema.xml @@ -360,7 +360,7 @@ - + diff --git a/workflow/engine/data/mysql/schema.sql b/workflow/engine/data/mysql/schema.sql index 97732ea0f..2dccb3897 100644 --- a/workflow/engine/data/mysql/schema.sql +++ b/workflow/engine/data/mysql/schema.sql @@ -154,7 +154,7 @@ CREATE TABLE `APP_MESSAGE` `DEL_INDEX` INTEGER default 0 NOT NULL, `APP_MSG_TYPE` VARCHAR(100) default '' NOT NULL, `APP_MSG_TYPE_ID` TINYINT default 0, - `APP_MSG_SUBJECT` VARCHAR(150) default '' NOT NULL, + `APP_MSG_SUBJECT` VARCHAR(998) default '' NOT NULL, `APP_MSG_FROM` VARCHAR(100) default '' NOT NULL, `APP_MSG_TO` MEDIUMTEXT NOT NULL, `APP_MSG_BODY` MEDIUMTEXT NOT NULL, From 96cad6005e0595d957f8618e313fead944720a22 Mon Sep 17 00:00:00 2001 From: Andrea Adamczyk Date: Fri, 17 Apr 2020 09:53:10 -0400 Subject: [PATCH 04/39] PMCORE-1129-a --- workflow/engine/classes/PmDynaform.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/workflow/engine/classes/PmDynaform.php b/workflow/engine/classes/PmDynaform.php index 48e4354f9..ab1c263fb 100644 --- a/workflow/engine/classes/PmDynaform.php +++ b/workflow/engine/classes/PmDynaform.php @@ -1741,8 +1741,7 @@ class PmDynaform return false; } foreach ($result as $row) { - $dynaform = new PmDynaform(["CURRENT_DYNAFORM" => $row->DYN_UID]); - $json = G::json_decode($dynaform->record["DYN_CONTENT"]); + $json = G::json_decode($row->DYN_CONTENT); if ($this->jsoni($json, $variable)) { return $row->DYN_UID; } From 7593c75ba3896838318de13abce681797e0ba2ee Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 27 Apr 2020 10:40:15 -0400 Subject: [PATCH 05/39] PMCORE-1345 --- .../factories/ProcessVariablesFactory.php | 2 +- .../BusinessModel/VariableTest.php | 191 ++++++++++++ .../Model/ProcessVariablesTest.php | 22 ++ workflow/engine/classes/WorkspaceTools.php | 51 +++ .../classes/model/map/DbSourceMapBuilder.php | 6 +- .../model/map/ProcessVariablesMapBuilder.php | 8 +- .../engine/classes/model/om/BaseDbSource.php | 224 ++++++++++---- .../classes/model/om/BaseDbSourcePeer.php | 28 +- .../classes/model/om/BaseProcessVariables.php | 292 ++++++++++++++---- .../model/om/BaseProcessVariablesPeer.php | 33 +- workflow/engine/config/schema.xml | 21 +- workflow/engine/data/mysql/schema.sql | 13 +- .../ProcessMaker/BusinessModel/Validator.php | 24 +- .../ProcessMaker/BusinessModel/Variable.php | 242 ++++++--------- .../ProcessMaker/Model/ProcessVariables.php | 79 ++++- 15 files changed, 943 insertions(+), 293 deletions(-) create mode 100644 tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php diff --git a/database/factories/ProcessVariablesFactory.php b/database/factories/ProcessVariablesFactory.php index 6892de0b9..d7ee63666 100644 --- a/database/factories/ProcessVariablesFactory.php +++ b/database/factories/ProcessVariablesFactory.php @@ -15,7 +15,7 @@ $factory->define(ProcessVariables::class, function (Faker $faker) { 'VAR_SQL' => '', 'VAR_NULL' => 0, 'VAR_DEFAULT' => '', - 'VAR_ACCEPTED_VALUES' => '', + 'VAR_ACCEPTED_VALUES' => '[]', 'INP_DOC_UID' => '' ]; }); \ No newline at end of file diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php new file mode 100644 index 000000000..ebc29c3ee --- /dev/null +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php @@ -0,0 +1,191 @@ +create(); + + factory(ProcessVariables::class)->create([ + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ] + ); + $properties = [ + 'VAR_UID' => G::generateUniqueID(), + 'VAR_NAME' => 'var_test', + 'VAR_FIELD_TYPE' => 'string', + 'VAR_FIELD_SIZE' => 10, + 'VAR_LABEL' => 'string', + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '' + ]; + + $variable = new Variable(); + $res = $variable->create($process->PRO_UID, $properties); + $this->assertNotEmpty($res); + $this->assertArrayHasKey('var_uid', $res, "The result does not contains 'var_uid' as key"); + $this->assertArrayHasKey('prj_uid', $res, "The result does not contains 'prj_uid' as key"); + $this->assertArrayHasKey('var_name', $res, "The result does not contains 'var_name' as key"); + $this->assertArrayHasKey('var_field_type', $res, "The result does not contains 'var_field_type' as key"); + $this->assertArrayHasKey('var_field_size', $res, "The result does not contains 'var_field_size' as key"); + $this->assertArrayHasKey('var_label', $res, "The result does not contains 'var_label' as key"); + $this->assertArrayHasKey('var_dbconnection', $res, "The result does not contains 'var_dbconnection' as key"); + $this->assertArrayHasKey('var_dbconnection_label', $res, "The result does not contains 'var_dbconnection_label' as key"); + $this->assertArrayHasKey('var_sql', $res, "The result does not contains 'var_sql' as key"); + $this->assertArrayHasKey('var_null', $res, "The result does not contains 'var_null' as key"); + $this->assertArrayHasKey('var_default', $res, "The result does not contains 'var_default' as key"); + $this->assertArrayHasKey('var_accepted_values', $res, "The result does not contains 'var_accepted_values' as key"); + $this->assertArrayHasKey('inp_doc_uid', $res, "The result does not contains 'inp_doc_uid' as key"); + } + + /** + * Tests the exception + * + * @covers \ProcessMaker\BusinessModel\Variables::create() + * @test + */ + public function it_return_an_exception_when_var_name_is_empty() + { + $process = factory(Process::class)->create(); + factory(ProcessVariables::class)->create([ + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ] + ); + $properties = [ + 'VAR_UID' => G::generateUniqueID(), + 'VAR_NAME' => '', + 'VAR_FIELD_TYPE' => 'string', + 'VAR_FIELD_SIZE' => 10, + 'VAR_LABEL' => 'string', + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '' + ]; + $variable = new Variable(); + $this->expectExceptionMessage("**ID_CAN_NOT_BE_NULL**"); + $res = $variable->create($process->PRO_UID, $properties); + } + + /** + * Tests the exception + * + * @covers \ProcessMaker\BusinessModel\Variables::create() + * @test + */ + public function it_return_an_exception_when_var_field_type_is_empty() + { + $process = factory(Process::class)->create(); + factory(ProcessVariables::class)->create([ + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ] + ); + $properties = [ + 'VAR_UID' => G::generateUniqueID(), + 'VAR_NAME' => 'var_test', + 'VAR_FIELD_TYPE' => '', + 'VAR_FIELD_SIZE' => 10, + 'VAR_LABEL' => 'string', + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '' + ]; + $variable = new Variable(); + $this->expectExceptionMessage("**ID_CAN_NOT_BE_NULL**"); + $res = $variable->create($process->PRO_UID, $properties); + } + + /** + * Tests the exception + * + * @covers \ProcessMaker\BusinessModel\Variables::create() + * @test + */ + public function it_return_an_exception_when_var_label_is_empty() + { + $process = factory(Process::class)->create(); + factory(ProcessVariables::class)->create([ + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ] + ); + $properties = [ + 'VAR_UID' => G::generateUniqueID(), + 'VAR_NAME' => 'var_test', + 'VAR_FIELD_TYPE' => 'string', + 'VAR_FIELD_SIZE' => 10, + 'VAR_LABEL' => '', + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '' + ]; + $variable = new Variable(); + $this->expectExceptionMessage("**ID_CAN_NOT_BE_NULL**"); + $res = $variable->create($process->PRO_UID, $properties); + } + + /** + * Test it return the variables related to the PRO_UID + * + * @covers \ProcessMaker\BusinessModel\Variables::getVariables() + * @test + */ + public function it_list_variables_by_process() + { + $process = factory(Process::class)->create(); + + factory(ProcessVariables::class)->create([ + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ] + ); + $variable = new Variable(); + $res = $variable->getVariables($process->PRO_UID); + $this->assertNotEmpty($res); + $res = head($res); + $this->assertArrayHasKey('var_uid', $res, "The result does not contains 'var_uid' as key"); + $this->assertArrayHasKey('prj_uid', $res, "The result does not contains 'prj_uid' as key"); + $this->assertArrayHasKey('var_name', $res, "The result does not contains 'var_name' as key"); + $this->assertArrayHasKey('var_field_type', $res, "The result does not contains 'var_field_type' as key"); + $this->assertArrayHasKey('var_field_size', $res, "The result does not contains 'var_field_size' as key"); + $this->assertArrayHasKey('var_label', $res, "The result does not contains 'var_label' as key"); + $this->assertArrayHasKey('var_dbconnection', $res, "The result does not contains 'var_dbconnection' as key"); + $this->assertArrayHasKey('var_dbconnection_label', $res, "The result does not contains 'var_dbconnection_label' as key"); + $this->assertArrayHasKey('var_sql', $res, "The result does not contains 'var_sql' as key"); + $this->assertArrayHasKey('var_null', $res, "The result does not contains 'var_null' as key"); + $this->assertArrayHasKey('var_default', $res, "The result does not contains 'var_default' as key"); + $this->assertArrayHasKey('var_accepted_values', $res, "The result does not contains 'var_accepted_values' as key"); + $this->assertArrayHasKey('inp_doc_uid', $res, "The result does not contains 'inp_doc_uid' as key"); + } +} diff --git a/tests/unit/workflow/engine/src/ProcessMaker/Model/ProcessVariablesTest.php b/tests/unit/workflow/engine/src/ProcessMaker/Model/ProcessVariablesTest.php index b5da806a9..ee2b26edc 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/Model/ProcessVariablesTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/Model/ProcessVariablesTest.php @@ -6,6 +6,9 @@ use ProcessMaker\Model\Process; use ProcessMaker\Model\ProcessVariables; use Tests\TestCase; +/** + * @coversDefaultClass ProcessMaker\Model\ProcessVariables + */ class ProcessVariablesTest extends TestCase { /** @@ -48,4 +51,23 @@ class ProcessVariablesTest extends TestCase $this->assertEquals($process[0]['PRO_UID'], $result[0]['PRJ_UID']); $this->assertEquals($process[0]['PRO_UID'], $result[1]['PRJ_UID']); } + + /** + * Test it return the variables related to the PRO_ID + * + * @covers \ProcessMaker\Model\ProcessVariables::getVariables() + * @test + */ + public function it_list_variables_by_process() + { + $process = factory(Process::class)->create(); + + factory(ProcessVariables::class)->create([ + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ] + ); + $result = ProcessVariables::getVariables($process->PRO_ID); + $this->assertNotEmpty($result); + } } \ No newline at end of file diff --git a/workflow/engine/classes/WorkspaceTools.php b/workflow/engine/classes/WorkspaceTools.php index 24112d1dd..4b0c9049f 100644 --- a/workflow/engine/classes/WorkspaceTools.php +++ b/workflow/engine/classes/WorkspaceTools.php @@ -4260,6 +4260,57 @@ class WorkspaceTools $con->commit(); CLI::logging("-> Populating APP_ASSIGN_SELF_SERVICE_VALUE.TAS_ID Done \n"); + // Populating PROCESS_VARIABLES.PRO_ID + CLI::logging("-> Populating PROCESS_VARIABLES.PRO_ID \n"); + $con->begin(); + $stmt = $con->createStatement(); + $rs = $stmt->executeQuery("UPDATE PROCESS_VARIABLES AS PV + INNER JOIN ( + SELECT PROCESS.PRO_UID, PROCESS.PRO_ID + FROM PROCESS + ) AS PRO + ON (PV.PRJ_UID = PRO.PRO_UID) + SET PV.PRO_ID = PRO.PRO_ID + WHERE PV.PRO_ID = 0"); + $con->commit(); + CLI::logging("-> Populating PROCESS_VARIABLES.PRO_ID Done \n"); + + // Populating PROCESS_VARIABLES.VAR_FIELD_TYPE_ID + CLI::logging("-> Populating PROCESS_VARIABLES.VAR_FIELD_TYPE_ID \n"); + $con->begin(); + $stmt = $con->createStatement(); + $rs = $stmt->executeQuery("UPDATE PROCESS_VARIABLES + SET VAR_FIELD_TYPE_ID = (case + when VAR_FIELD_TYPE = 'string' then 1 + when VAR_FIELD_TYPE = 'integer' then 2 + when VAR_FIELD_TYPE = 'float' then 3 + when VAR_FIELD_TYPE = 'boolean' then 4 + when VAR_FIELD_TYPE = 'datetime' then 5 + when VAR_FIELD_TYPE = 'grid' then 6 + when VAR_FIELD_TYPE = 'array' then 7 + when VAR_FIELD_TYPE = 'file' then 8 + when VAR_FIELD_TYPE = 'multiplefile' then 9 + when VAR_FIELD_TYPE = 'object' then 10 + end) + WHERE VAR_FIELD_TYPE_ID = 0"); + $con->commit(); + CLI::logging("-> Populating PROCESS_VARIABLES.VAR_FIELD_TYPE_ID Done \n"); + + // Populating DB_SOURCE.PRO_ID + CLI::logging("-> Populating DB_SOURCE.PRO_ID \n"); + $con->begin(); + $stmt = $con->createStatement(); + $rs = $stmt->executeQuery("UPDATE DB_SOURCE AS DS + INNER JOIN ( + SELECT PROCESS.PRO_UID, PROCESS.PRO_ID + FROM PROCESS + ) AS PRO + ON (DS.PRO_UID = PRO.PRO_UID) + SET DS.PRO_ID = PRO.PRO_ID + WHERE DS.PRO_ID = 0"); + $con->commit(); + CLI::logging("-> Populating DB_SOURCE.PRO_ID Done \n"); + //Complete all migrations CLI::logging("-> Migrating And Populating Indexing for avoiding the use of table APP_CACHE_VIEW Done \n"); } diff --git a/workflow/engine/classes/model/map/DbSourceMapBuilder.php b/workflow/engine/classes/model/map/DbSourceMapBuilder.php index 9c739136f..900bef8c4 100644 --- a/workflow/engine/classes/model/map/DbSourceMapBuilder.php +++ b/workflow/engine/classes/model/map/DbSourceMapBuilder.php @@ -63,12 +63,16 @@ class DbSourceMapBuilder $tMap = $this->dbMap->addTable('DB_SOURCE'); $tMap->setPhpName('DbSource'); - $tMap->setUseIdGenerator(false); + $tMap->setUseIdGenerator(true); + + $tMap->addColumn('DBS_ID', 'DbsId', 'int', CreoleTypes::INTEGER, true, null); $tMap->addPrimaryKey('DBS_UID', 'DbsUid', 'string', CreoleTypes::VARCHAR, true, 32); $tMap->addPrimaryKey('PRO_UID', 'ProUid', 'string', CreoleTypes::VARCHAR, true, 32); + $tMap->addColumn('PRO_ID', 'ProId', 'int', CreoleTypes::INTEGER, false, null); + $tMap->addColumn('DBS_TYPE', 'DbsType', 'string', CreoleTypes::VARCHAR, true, 8); $tMap->addColumn('DBS_SERVER', 'DbsServer', 'string', CreoleTypes::VARCHAR, true, 100); diff --git a/workflow/engine/classes/model/map/ProcessVariablesMapBuilder.php b/workflow/engine/classes/model/map/ProcessVariablesMapBuilder.php index 403c0c2dd..a911b5a99 100644 --- a/workflow/engine/classes/model/map/ProcessVariablesMapBuilder.php +++ b/workflow/engine/classes/model/map/ProcessVariablesMapBuilder.php @@ -63,16 +63,22 @@ class ProcessVariablesMapBuilder $tMap = $this->dbMap->addTable('PROCESS_VARIABLES'); $tMap->setPhpName('ProcessVariables'); - $tMap->setUseIdGenerator(false); + $tMap->setUseIdGenerator(true); + + $tMap->addColumn('VAR_ID', 'VarId', 'int', CreoleTypes::INTEGER, true, null); $tMap->addPrimaryKey('VAR_UID', 'VarUid', 'string', CreoleTypes::VARCHAR, true, 32); $tMap->addColumn('PRJ_UID', 'PrjUid', 'string', CreoleTypes::VARCHAR, true, 32); + $tMap->addColumn('PRO_ID', 'ProId', 'int', CreoleTypes::INTEGER, false, null); + $tMap->addColumn('VAR_NAME', 'VarName', 'string', CreoleTypes::VARCHAR, false, 255); $tMap->addColumn('VAR_FIELD_TYPE', 'VarFieldType', 'string', CreoleTypes::VARCHAR, false, 32); + $tMap->addColumn('VAR_FIELD_TYPE_ID', 'VarFieldTypeId', 'int', CreoleTypes::INTEGER, false, null); + $tMap->addColumn('VAR_FIELD_SIZE', 'VarFieldSize', 'int', CreoleTypes::INTEGER, false, null); $tMap->addColumn('VAR_LABEL', 'VarLabel', 'string', CreoleTypes::VARCHAR, false, 255); diff --git a/workflow/engine/classes/model/om/BaseDbSource.php b/workflow/engine/classes/model/om/BaseDbSource.php index b21a8a1f6..199c9b45e 100644 --- a/workflow/engine/classes/model/om/BaseDbSource.php +++ b/workflow/engine/classes/model/om/BaseDbSource.php @@ -27,6 +27,12 @@ abstract class BaseDbSource extends BaseObject implements Persistent */ protected static $peer; + /** + * The value for the dbs_id field. + * @var int + */ + protected $dbs_id; + /** * The value for the dbs_uid field. * @var string @@ -39,6 +45,12 @@ abstract class BaseDbSource extends BaseObject implements Persistent */ protected $pro_uid = '0'; + /** + * The value for the pro_id field. + * @var int + */ + protected $pro_id = 0; + /** * The value for the dbs_type field. * @var string @@ -107,6 +119,17 @@ abstract class BaseDbSource extends BaseObject implements Persistent */ protected $alreadyInValidation = false; + /** + * Get the [dbs_id] column value. + * + * @return int + */ + public function getDbsId() + { + + return $this->dbs_id; + } + /** * Get the [dbs_uid] column value. * @@ -129,6 +152,17 @@ abstract class BaseDbSource extends BaseObject implements Persistent return $this->pro_uid; } + /** + * Get the [pro_id] column value. + * + * @return int + */ + public function getProId() + { + + return $this->pro_id; + } + /** * Get the [dbs_type] column value. * @@ -228,6 +262,28 @@ abstract class BaseDbSource extends BaseObject implements Persistent return $this->dbs_tns; } + /** + * Set the value of [dbs_id] column. + * + * @param int $v new value + * @return void + */ + public function setDbsId($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->dbs_id !== $v) { + $this->dbs_id = $v; + $this->modifiedColumns[] = DbSourcePeer::DBS_ID; + } + + } // setDbsId() + /** * Set the value of [dbs_uid] column. * @@ -272,6 +328,28 @@ abstract class BaseDbSource extends BaseObject implements Persistent } // setProUid() + /** + * Set the value of [pro_id] column. + * + * @param int $v new value + * @return void + */ + public function setProId($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->pro_id !== $v || $v === 0) { + $this->pro_id = $v; + $this->modifiedColumns[] = DbSourcePeer::PRO_ID; + } + + } // setProId() + /** * Set the value of [dbs_type] column. * @@ -487,34 +565,38 @@ abstract class BaseDbSource extends BaseObject implements Persistent { try { - $this->dbs_uid = $rs->getString($startcol + 0); + $this->dbs_id = $rs->getInt($startcol + 0); - $this->pro_uid = $rs->getString($startcol + 1); + $this->dbs_uid = $rs->getString($startcol + 1); - $this->dbs_type = $rs->getString($startcol + 2); + $this->pro_uid = $rs->getString($startcol + 2); - $this->dbs_server = $rs->getString($startcol + 3); + $this->pro_id = $rs->getInt($startcol + 3); - $this->dbs_database_name = $rs->getString($startcol + 4); + $this->dbs_type = $rs->getString($startcol + 4); - $this->dbs_username = $rs->getString($startcol + 5); + $this->dbs_server = $rs->getString($startcol + 5); - $this->dbs_password = $rs->getString($startcol + 6); + $this->dbs_database_name = $rs->getString($startcol + 6); - $this->dbs_port = $rs->getInt($startcol + 7); + $this->dbs_username = $rs->getString($startcol + 7); - $this->dbs_encode = $rs->getString($startcol + 8); + $this->dbs_password = $rs->getString($startcol + 8); - $this->dbs_connection_type = $rs->getString($startcol + 9); + $this->dbs_port = $rs->getInt($startcol + 9); - $this->dbs_tns = $rs->getString($startcol + 10); + $this->dbs_encode = $rs->getString($startcol + 10); + + $this->dbs_connection_type = $rs->getString($startcol + 11); + + $this->dbs_tns = $rs->getString($startcol + 12); $this->resetModified(); $this->setNew(false); // FIXME - using NUM_COLUMNS may be clearer. - return $startcol + 11; // 11 = DbSourcePeer::NUM_COLUMNS - DbSourcePeer::NUM_LAZY_LOAD_COLUMNS). + return $startcol + 13; // 13 = DbSourcePeer::NUM_COLUMNS - DbSourcePeer::NUM_LAZY_LOAD_COLUMNS). } catch (Exception $e) { throw new PropelException("Error populating DbSource object", $e); @@ -719,36 +801,42 @@ abstract class BaseDbSource extends BaseObject implements Persistent { switch($pos) { case 0: - return $this->getDbsUid(); + return $this->getDbsId(); break; case 1: - return $this->getProUid(); + return $this->getDbsUid(); break; case 2: - return $this->getDbsType(); + return $this->getProUid(); break; case 3: - return $this->getDbsServer(); + return $this->getProId(); break; case 4: - return $this->getDbsDatabaseName(); + return $this->getDbsType(); break; case 5: - return $this->getDbsUsername(); + return $this->getDbsServer(); break; case 6: - return $this->getDbsPassword(); + return $this->getDbsDatabaseName(); break; case 7: - return $this->getDbsPort(); + return $this->getDbsUsername(); break; case 8: - return $this->getDbsEncode(); + return $this->getDbsPassword(); break; case 9: - return $this->getDbsConnectionType(); + return $this->getDbsPort(); break; case 10: + return $this->getDbsEncode(); + break; + case 11: + return $this->getDbsConnectionType(); + break; + case 12: return $this->getDbsTns(); break; default: @@ -771,17 +859,19 @@ abstract class BaseDbSource extends BaseObject implements Persistent { $keys = DbSourcePeer::getFieldNames($keyType); $result = array( - $keys[0] => $this->getDbsUid(), - $keys[1] => $this->getProUid(), - $keys[2] => $this->getDbsType(), - $keys[3] => $this->getDbsServer(), - $keys[4] => $this->getDbsDatabaseName(), - $keys[5] => $this->getDbsUsername(), - $keys[6] => $this->getDbsPassword(), - $keys[7] => $this->getDbsPort(), - $keys[8] => $this->getDbsEncode(), - $keys[9] => $this->getDbsConnectionType(), - $keys[10] => $this->getDbsTns(), + $keys[0] => $this->getDbsId(), + $keys[1] => $this->getDbsUid(), + $keys[2] => $this->getProUid(), + $keys[3] => $this->getProId(), + $keys[4] => $this->getDbsType(), + $keys[5] => $this->getDbsServer(), + $keys[6] => $this->getDbsDatabaseName(), + $keys[7] => $this->getDbsUsername(), + $keys[8] => $this->getDbsPassword(), + $keys[9] => $this->getDbsPort(), + $keys[10] => $this->getDbsEncode(), + $keys[11] => $this->getDbsConnectionType(), + $keys[12] => $this->getDbsTns(), ); return $result; } @@ -814,36 +904,42 @@ abstract class BaseDbSource extends BaseObject implements Persistent { switch($pos) { case 0: - $this->setDbsUid($value); + $this->setDbsId($value); break; case 1: - $this->setProUid($value); + $this->setDbsUid($value); break; case 2: - $this->setDbsType($value); + $this->setProUid($value); break; case 3: - $this->setDbsServer($value); + $this->setProId($value); break; case 4: - $this->setDbsDatabaseName($value); + $this->setDbsType($value); break; case 5: - $this->setDbsUsername($value); + $this->setDbsServer($value); break; case 6: - $this->setDbsPassword($value); + $this->setDbsDatabaseName($value); break; case 7: - $this->setDbsPort($value); + $this->setDbsUsername($value); break; case 8: - $this->setDbsEncode($value); + $this->setDbsPassword($value); break; case 9: - $this->setDbsConnectionType($value); + $this->setDbsPort($value); break; case 10: + $this->setDbsEncode($value); + break; + case 11: + $this->setDbsConnectionType($value); + break; + case 12: $this->setDbsTns($value); break; } // switch() @@ -870,47 +966,55 @@ abstract class BaseDbSource extends BaseObject implements Persistent $keys = DbSourcePeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { - $this->setDbsUid($arr[$keys[0]]); + $this->setDbsId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { - $this->setProUid($arr[$keys[1]]); + $this->setDbsUid($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { - $this->setDbsType($arr[$keys[2]]); + $this->setProUid($arr[$keys[2]]); } if (array_key_exists($keys[3], $arr)) { - $this->setDbsServer($arr[$keys[3]]); + $this->setProId($arr[$keys[3]]); } if (array_key_exists($keys[4], $arr)) { - $this->setDbsDatabaseName($arr[$keys[4]]); + $this->setDbsType($arr[$keys[4]]); } if (array_key_exists($keys[5], $arr)) { - $this->setDbsUsername($arr[$keys[5]]); + $this->setDbsServer($arr[$keys[5]]); } if (array_key_exists($keys[6], $arr)) { - $this->setDbsPassword($arr[$keys[6]]); + $this->setDbsDatabaseName($arr[$keys[6]]); } if (array_key_exists($keys[7], $arr)) { - $this->setDbsPort($arr[$keys[7]]); + $this->setDbsUsername($arr[$keys[7]]); } if (array_key_exists($keys[8], $arr)) { - $this->setDbsEncode($arr[$keys[8]]); + $this->setDbsPassword($arr[$keys[8]]); } if (array_key_exists($keys[9], $arr)) { - $this->setDbsConnectionType($arr[$keys[9]]); + $this->setDbsPort($arr[$keys[9]]); } if (array_key_exists($keys[10], $arr)) { - $this->setDbsTns($arr[$keys[10]]); + $this->setDbsEncode($arr[$keys[10]]); + } + + if (array_key_exists($keys[11], $arr)) { + $this->setDbsConnectionType($arr[$keys[11]]); + } + + if (array_key_exists($keys[12], $arr)) { + $this->setDbsTns($arr[$keys[12]]); } } @@ -924,6 +1028,10 @@ abstract class BaseDbSource extends BaseObject implements Persistent { $criteria = new Criteria(DbSourcePeer::DATABASE_NAME); + if ($this->isColumnModified(DbSourcePeer::DBS_ID)) { + $criteria->add(DbSourcePeer::DBS_ID, $this->dbs_id); + } + if ($this->isColumnModified(DbSourcePeer::DBS_UID)) { $criteria->add(DbSourcePeer::DBS_UID, $this->dbs_uid); } @@ -932,6 +1040,10 @@ abstract class BaseDbSource extends BaseObject implements Persistent $criteria->add(DbSourcePeer::PRO_UID, $this->pro_uid); } + if ($this->isColumnModified(DbSourcePeer::PRO_ID)) { + $criteria->add(DbSourcePeer::PRO_ID, $this->pro_id); + } + if ($this->isColumnModified(DbSourcePeer::DBS_TYPE)) { $criteria->add(DbSourcePeer::DBS_TYPE, $this->dbs_type); } @@ -1034,6 +1146,10 @@ abstract class BaseDbSource extends BaseObject implements Persistent public function copyInto($copyObj, $deepCopy = false) { + $copyObj->setDbsId($this->dbs_id); + + $copyObj->setProId($this->pro_id); + $copyObj->setDbsType($this->dbs_type); $copyObj->setDbsServer($this->dbs_server); diff --git a/workflow/engine/classes/model/om/BaseDbSourcePeer.php b/workflow/engine/classes/model/om/BaseDbSourcePeer.php index fd02370c9..accb8c270 100644 --- a/workflow/engine/classes/model/om/BaseDbSourcePeer.php +++ b/workflow/engine/classes/model/om/BaseDbSourcePeer.php @@ -25,18 +25,24 @@ abstract class BaseDbSourcePeer const CLASS_DEFAULT = 'classes.model.DbSource'; /** The total number of columns. */ - const NUM_COLUMNS = 11; + const NUM_COLUMNS = 13; /** The number of lazy-loaded columns. */ const NUM_LAZY_LOAD_COLUMNS = 0; + /** the column name for the DBS_ID field */ + const DBS_ID = 'DB_SOURCE.DBS_ID'; + /** the column name for the DBS_UID field */ const DBS_UID = 'DB_SOURCE.DBS_UID'; /** the column name for the PRO_UID field */ const PRO_UID = 'DB_SOURCE.PRO_UID'; + /** the column name for the PRO_ID field */ + const PRO_ID = 'DB_SOURCE.PRO_ID'; + /** the column name for the DBS_TYPE field */ const DBS_TYPE = 'DB_SOURCE.DBS_TYPE'; @@ -75,10 +81,10 @@ abstract class BaseDbSourcePeer * e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id' */ private static $fieldNames = array ( - BasePeer::TYPE_PHPNAME => array ('DbsUid', 'ProUid', 'DbsType', 'DbsServer', 'DbsDatabaseName', 'DbsUsername', 'DbsPassword', 'DbsPort', 'DbsEncode', 'DbsConnectionType', 'DbsTns', ), - BasePeer::TYPE_COLNAME => array (DbSourcePeer::DBS_UID, DbSourcePeer::PRO_UID, DbSourcePeer::DBS_TYPE, DbSourcePeer::DBS_SERVER, DbSourcePeer::DBS_DATABASE_NAME, DbSourcePeer::DBS_USERNAME, DbSourcePeer::DBS_PASSWORD, DbSourcePeer::DBS_PORT, DbSourcePeer::DBS_ENCODE, DbSourcePeer::DBS_CONNECTION_TYPE, DbSourcePeer::DBS_TNS, ), - BasePeer::TYPE_FIELDNAME => array ('DBS_UID', 'PRO_UID', 'DBS_TYPE', 'DBS_SERVER', 'DBS_DATABASE_NAME', 'DBS_USERNAME', 'DBS_PASSWORD', 'DBS_PORT', 'DBS_ENCODE', 'DBS_CONNECTION_TYPE', 'DBS_TNS', ), - BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ) + BasePeer::TYPE_PHPNAME => array ('DbsId', 'DbsUid', 'ProUid', 'ProId', 'DbsType', 'DbsServer', 'DbsDatabaseName', 'DbsUsername', 'DbsPassword', 'DbsPort', 'DbsEncode', 'DbsConnectionType', 'DbsTns', ), + BasePeer::TYPE_COLNAME => array (DbSourcePeer::DBS_ID, DbSourcePeer::DBS_UID, DbSourcePeer::PRO_UID, DbSourcePeer::PRO_ID, DbSourcePeer::DBS_TYPE, DbSourcePeer::DBS_SERVER, DbSourcePeer::DBS_DATABASE_NAME, DbSourcePeer::DBS_USERNAME, DbSourcePeer::DBS_PASSWORD, DbSourcePeer::DBS_PORT, DbSourcePeer::DBS_ENCODE, DbSourcePeer::DBS_CONNECTION_TYPE, DbSourcePeer::DBS_TNS, ), + BasePeer::TYPE_FIELDNAME => array ('DBS_ID', 'DBS_UID', 'PRO_UID', 'PRO_ID', 'DBS_TYPE', 'DBS_SERVER', 'DBS_DATABASE_NAME', 'DBS_USERNAME', 'DBS_PASSWORD', 'DBS_PORT', 'DBS_ENCODE', 'DBS_CONNECTION_TYPE', 'DBS_TNS', ), + BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, ) ); /** @@ -88,10 +94,10 @@ abstract class BaseDbSourcePeer * e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0 */ private static $fieldKeys = array ( - BasePeer::TYPE_PHPNAME => array ('DbsUid' => 0, 'ProUid' => 1, 'DbsType' => 2, 'DbsServer' => 3, 'DbsDatabaseName' => 4, 'DbsUsername' => 5, 'DbsPassword' => 6, 'DbsPort' => 7, 'DbsEncode' => 8, 'DbsConnectionType' => 9, 'DbsTns' => 10, ), - BasePeer::TYPE_COLNAME => array (DbSourcePeer::DBS_UID => 0, DbSourcePeer::PRO_UID => 1, DbSourcePeer::DBS_TYPE => 2, DbSourcePeer::DBS_SERVER => 3, DbSourcePeer::DBS_DATABASE_NAME => 4, DbSourcePeer::DBS_USERNAME => 5, DbSourcePeer::DBS_PASSWORD => 6, DbSourcePeer::DBS_PORT => 7, DbSourcePeer::DBS_ENCODE => 8, DbSourcePeer::DBS_CONNECTION_TYPE => 9, DbSourcePeer::DBS_TNS => 10, ), - BasePeer::TYPE_FIELDNAME => array ('DBS_UID' => 0, 'PRO_UID' => 1, 'DBS_TYPE' => 2, 'DBS_SERVER' => 3, 'DBS_DATABASE_NAME' => 4, 'DBS_USERNAME' => 5, 'DBS_PASSWORD' => 6, 'DBS_PORT' => 7, 'DBS_ENCODE' => 8, 'DBS_CONNECTION_TYPE' => 9, 'DBS_TNS' => 10, ), - BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ) + BasePeer::TYPE_PHPNAME => array ('DbsId' => 0, 'DbsUid' => 1, 'ProUid' => 2, 'ProId' => 3, 'DbsType' => 4, 'DbsServer' => 5, 'DbsDatabaseName' => 6, 'DbsUsername' => 7, 'DbsPassword' => 8, 'DbsPort' => 9, 'DbsEncode' => 10, 'DbsConnectionType' => 11, 'DbsTns' => 12, ), + BasePeer::TYPE_COLNAME => array (DbSourcePeer::DBS_ID => 0, DbSourcePeer::DBS_UID => 1, DbSourcePeer::PRO_UID => 2, DbSourcePeer::PRO_ID => 3, DbSourcePeer::DBS_TYPE => 4, DbSourcePeer::DBS_SERVER => 5, DbSourcePeer::DBS_DATABASE_NAME => 6, DbSourcePeer::DBS_USERNAME => 7, DbSourcePeer::DBS_PASSWORD => 8, DbSourcePeer::DBS_PORT => 9, DbSourcePeer::DBS_ENCODE => 10, DbSourcePeer::DBS_CONNECTION_TYPE => 11, DbSourcePeer::DBS_TNS => 12, ), + BasePeer::TYPE_FIELDNAME => array ('DBS_ID' => 0, 'DBS_UID' => 1, 'PRO_UID' => 2, 'PRO_ID' => 3, 'DBS_TYPE' => 4, 'DBS_SERVER' => 5, 'DBS_DATABASE_NAME' => 6, 'DBS_USERNAME' => 7, 'DBS_PASSWORD' => 8, 'DBS_PORT' => 9, 'DBS_ENCODE' => 10, 'DBS_CONNECTION_TYPE' => 11, 'DBS_TNS' => 12, ), + BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, ) ); /** @@ -192,10 +198,14 @@ abstract class BaseDbSourcePeer public static function addSelectColumns(Criteria $criteria) { + $criteria->addSelectColumn(DbSourcePeer::DBS_ID); + $criteria->addSelectColumn(DbSourcePeer::DBS_UID); $criteria->addSelectColumn(DbSourcePeer::PRO_UID); + $criteria->addSelectColumn(DbSourcePeer::PRO_ID); + $criteria->addSelectColumn(DbSourcePeer::DBS_TYPE); $criteria->addSelectColumn(DbSourcePeer::DBS_SERVER); diff --git a/workflow/engine/classes/model/om/BaseProcessVariables.php b/workflow/engine/classes/model/om/BaseProcessVariables.php index bc9526da9..f8e44973b 100644 --- a/workflow/engine/classes/model/om/BaseProcessVariables.php +++ b/workflow/engine/classes/model/om/BaseProcessVariables.php @@ -27,6 +27,12 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent */ protected static $peer; + /** + * The value for the var_id field. + * @var int + */ + protected $var_id; + /** * The value for the var_uid field. * @var string @@ -39,6 +45,12 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent */ protected $prj_uid; + /** + * The value for the pro_id field. + * @var int + */ + protected $pro_id = 0; + /** * The value for the var_name field. * @var string @@ -51,6 +63,12 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent */ protected $var_field_type = ''; + /** + * The value for the var_field_type_id field. + * @var int + */ + protected $var_field_type_id = 0; + /** * The value for the var_field_size field. * @var int @@ -113,6 +131,17 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent */ protected $alreadyInValidation = false; + /** + * Get the [var_id] column value. + * + * @return int + */ + public function getVarId() + { + + return $this->var_id; + } + /** * Get the [var_uid] column value. * @@ -135,6 +164,17 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent return $this->prj_uid; } + /** + * Get the [pro_id] column value. + * + * @return int + */ + public function getProId() + { + + return $this->pro_id; + } + /** * Get the [var_name] column value. * @@ -157,6 +197,17 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent return $this->var_field_type; } + /** + * Get the [var_field_type_id] column value. + * + * @return int + */ + public function getVarFieldTypeId() + { + + return $this->var_field_type_id; + } + /** * Get the [var_field_size] column value. * @@ -245,6 +296,28 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent return $this->inp_doc_uid; } + /** + * Set the value of [var_id] column. + * + * @param int $v new value + * @return void + */ + public function setVarId($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->var_id !== $v) { + $this->var_id = $v; + $this->modifiedColumns[] = ProcessVariablesPeer::VAR_ID; + } + + } // setVarId() + /** * Set the value of [var_uid] column. * @@ -289,6 +362,28 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent } // setPrjUid() + /** + * Set the value of [pro_id] column. + * + * @param int $v new value + * @return void + */ + public function setProId($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->pro_id !== $v || $v === 0) { + $this->pro_id = $v; + $this->modifiedColumns[] = ProcessVariablesPeer::PRO_ID; + } + + } // setProId() + /** * Set the value of [var_name] column. * @@ -333,6 +428,28 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent } // setVarFieldType() + /** + * Set the value of [var_field_type_id] column. + * + * @param int $v new value + * @return void + */ + public function setVarFieldTypeId($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->var_field_type_id !== $v || $v === 0) { + $this->var_field_type_id = $v; + $this->modifiedColumns[] = ProcessVariablesPeer::VAR_FIELD_TYPE_ID; + } + + } // setVarFieldTypeId() + /** * Set the value of [var_field_size] column. * @@ -526,36 +643,42 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent { try { - $this->var_uid = $rs->getString($startcol + 0); + $this->var_id = $rs->getInt($startcol + 0); - $this->prj_uid = $rs->getString($startcol + 1); + $this->var_uid = $rs->getString($startcol + 1); - $this->var_name = $rs->getString($startcol + 2); + $this->prj_uid = $rs->getString($startcol + 2); - $this->var_field_type = $rs->getString($startcol + 3); + $this->pro_id = $rs->getInt($startcol + 3); - $this->var_field_size = $rs->getInt($startcol + 4); + $this->var_name = $rs->getString($startcol + 4); - $this->var_label = $rs->getString($startcol + 5); + $this->var_field_type = $rs->getString($startcol + 5); - $this->var_dbconnection = $rs->getString($startcol + 6); + $this->var_field_type_id = $rs->getInt($startcol + 6); - $this->var_sql = $rs->getString($startcol + 7); + $this->var_field_size = $rs->getInt($startcol + 7); - $this->var_null = $rs->getInt($startcol + 8); + $this->var_label = $rs->getString($startcol + 8); - $this->var_default = $rs->getString($startcol + 9); + $this->var_dbconnection = $rs->getString($startcol + 9); - $this->var_accepted_values = $rs->getString($startcol + 10); + $this->var_sql = $rs->getString($startcol + 10); - $this->inp_doc_uid = $rs->getString($startcol + 11); + $this->var_null = $rs->getInt($startcol + 11); + + $this->var_default = $rs->getString($startcol + 12); + + $this->var_accepted_values = $rs->getString($startcol + 13); + + $this->inp_doc_uid = $rs->getString($startcol + 14); $this->resetModified(); $this->setNew(false); // FIXME - using NUM_COLUMNS may be clearer. - return $startcol + 12; // 12 = ProcessVariablesPeer::NUM_COLUMNS - ProcessVariablesPeer::NUM_LAZY_LOAD_COLUMNS). + return $startcol + 15; // 15 = ProcessVariablesPeer::NUM_COLUMNS - ProcessVariablesPeer::NUM_LAZY_LOAD_COLUMNS). } catch (Exception $e) { throw new PropelException("Error populating ProcessVariables object", $e); @@ -760,39 +883,48 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent { switch($pos) { case 0: - return $this->getVarUid(); + return $this->getVarId(); break; case 1: - return $this->getPrjUid(); + return $this->getVarUid(); break; case 2: - return $this->getVarName(); + return $this->getPrjUid(); break; case 3: - return $this->getVarFieldType(); + return $this->getProId(); break; case 4: - return $this->getVarFieldSize(); + return $this->getVarName(); break; case 5: - return $this->getVarLabel(); + return $this->getVarFieldType(); break; case 6: - return $this->getVarDbconnection(); + return $this->getVarFieldTypeId(); break; case 7: - return $this->getVarSql(); + return $this->getVarFieldSize(); break; case 8: - return $this->getVarNull(); + return $this->getVarLabel(); break; case 9: - return $this->getVarDefault(); + return $this->getVarDbconnection(); break; case 10: - return $this->getVarAcceptedValues(); + return $this->getVarSql(); break; case 11: + return $this->getVarNull(); + break; + case 12: + return $this->getVarDefault(); + break; + case 13: + return $this->getVarAcceptedValues(); + break; + case 14: return $this->getInpDocUid(); break; default: @@ -815,18 +947,21 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent { $keys = ProcessVariablesPeer::getFieldNames($keyType); $result = array( - $keys[0] => $this->getVarUid(), - $keys[1] => $this->getPrjUid(), - $keys[2] => $this->getVarName(), - $keys[3] => $this->getVarFieldType(), - $keys[4] => $this->getVarFieldSize(), - $keys[5] => $this->getVarLabel(), - $keys[6] => $this->getVarDbconnection(), - $keys[7] => $this->getVarSql(), - $keys[8] => $this->getVarNull(), - $keys[9] => $this->getVarDefault(), - $keys[10] => $this->getVarAcceptedValues(), - $keys[11] => $this->getInpDocUid(), + $keys[0] => $this->getVarId(), + $keys[1] => $this->getVarUid(), + $keys[2] => $this->getPrjUid(), + $keys[3] => $this->getProId(), + $keys[4] => $this->getVarName(), + $keys[5] => $this->getVarFieldType(), + $keys[6] => $this->getVarFieldTypeId(), + $keys[7] => $this->getVarFieldSize(), + $keys[8] => $this->getVarLabel(), + $keys[9] => $this->getVarDbconnection(), + $keys[10] => $this->getVarSql(), + $keys[11] => $this->getVarNull(), + $keys[12] => $this->getVarDefault(), + $keys[13] => $this->getVarAcceptedValues(), + $keys[14] => $this->getInpDocUid(), ); return $result; } @@ -859,39 +994,48 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent { switch($pos) { case 0: - $this->setVarUid($value); + $this->setVarId($value); break; case 1: - $this->setPrjUid($value); + $this->setVarUid($value); break; case 2: - $this->setVarName($value); + $this->setPrjUid($value); break; case 3: - $this->setVarFieldType($value); + $this->setProId($value); break; case 4: - $this->setVarFieldSize($value); + $this->setVarName($value); break; case 5: - $this->setVarLabel($value); + $this->setVarFieldType($value); break; case 6: - $this->setVarDbconnection($value); + $this->setVarFieldTypeId($value); break; case 7: - $this->setVarSql($value); + $this->setVarFieldSize($value); break; case 8: - $this->setVarNull($value); + $this->setVarLabel($value); break; case 9: - $this->setVarDefault($value); + $this->setVarDbconnection($value); break; case 10: - $this->setVarAcceptedValues($value); + $this->setVarSql($value); break; case 11: + $this->setVarNull($value); + break; + case 12: + $this->setVarDefault($value); + break; + case 13: + $this->setVarAcceptedValues($value); + break; + case 14: $this->setInpDocUid($value); break; } // switch() @@ -918,51 +1062,63 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent $keys = ProcessVariablesPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { - $this->setVarUid($arr[$keys[0]]); + $this->setVarId($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { - $this->setPrjUid($arr[$keys[1]]); + $this->setVarUid($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { - $this->setVarName($arr[$keys[2]]); + $this->setPrjUid($arr[$keys[2]]); } if (array_key_exists($keys[3], $arr)) { - $this->setVarFieldType($arr[$keys[3]]); + $this->setProId($arr[$keys[3]]); } if (array_key_exists($keys[4], $arr)) { - $this->setVarFieldSize($arr[$keys[4]]); + $this->setVarName($arr[$keys[4]]); } if (array_key_exists($keys[5], $arr)) { - $this->setVarLabel($arr[$keys[5]]); + $this->setVarFieldType($arr[$keys[5]]); } if (array_key_exists($keys[6], $arr)) { - $this->setVarDbconnection($arr[$keys[6]]); + $this->setVarFieldTypeId($arr[$keys[6]]); } if (array_key_exists($keys[7], $arr)) { - $this->setVarSql($arr[$keys[7]]); + $this->setVarFieldSize($arr[$keys[7]]); } if (array_key_exists($keys[8], $arr)) { - $this->setVarNull($arr[$keys[8]]); + $this->setVarLabel($arr[$keys[8]]); } if (array_key_exists($keys[9], $arr)) { - $this->setVarDefault($arr[$keys[9]]); + $this->setVarDbconnection($arr[$keys[9]]); } if (array_key_exists($keys[10], $arr)) { - $this->setVarAcceptedValues($arr[$keys[10]]); + $this->setVarSql($arr[$keys[10]]); } if (array_key_exists($keys[11], $arr)) { - $this->setInpDocUid($arr[$keys[11]]); + $this->setVarNull($arr[$keys[11]]); + } + + if (array_key_exists($keys[12], $arr)) { + $this->setVarDefault($arr[$keys[12]]); + } + + if (array_key_exists($keys[13], $arr)) { + $this->setVarAcceptedValues($arr[$keys[13]]); + } + + if (array_key_exists($keys[14], $arr)) { + $this->setInpDocUid($arr[$keys[14]]); } } @@ -976,6 +1132,10 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent { $criteria = new Criteria(ProcessVariablesPeer::DATABASE_NAME); + if ($this->isColumnModified(ProcessVariablesPeer::VAR_ID)) { + $criteria->add(ProcessVariablesPeer::VAR_ID, $this->var_id); + } + if ($this->isColumnModified(ProcessVariablesPeer::VAR_UID)) { $criteria->add(ProcessVariablesPeer::VAR_UID, $this->var_uid); } @@ -984,6 +1144,10 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent $criteria->add(ProcessVariablesPeer::PRJ_UID, $this->prj_uid); } + if ($this->isColumnModified(ProcessVariablesPeer::PRO_ID)) { + $criteria->add(ProcessVariablesPeer::PRO_ID, $this->pro_id); + } + if ($this->isColumnModified(ProcessVariablesPeer::VAR_NAME)) { $criteria->add(ProcessVariablesPeer::VAR_NAME, $this->var_name); } @@ -992,6 +1156,10 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent $criteria->add(ProcessVariablesPeer::VAR_FIELD_TYPE, $this->var_field_type); } + if ($this->isColumnModified(ProcessVariablesPeer::VAR_FIELD_TYPE_ID)) { + $criteria->add(ProcessVariablesPeer::VAR_FIELD_TYPE_ID, $this->var_field_type_id); + } + if ($this->isColumnModified(ProcessVariablesPeer::VAR_FIELD_SIZE)) { $criteria->add(ProcessVariablesPeer::VAR_FIELD_SIZE, $this->var_field_size); } @@ -1078,12 +1246,18 @@ abstract class BaseProcessVariables extends BaseObject implements Persistent public function copyInto($copyObj, $deepCopy = false) { + $copyObj->setVarId($this->var_id); + $copyObj->setPrjUid($this->prj_uid); + $copyObj->setProId($this->pro_id); + $copyObj->setVarName($this->var_name); $copyObj->setVarFieldType($this->var_field_type); + $copyObj->setVarFieldTypeId($this->var_field_type_id); + $copyObj->setVarFieldSize($this->var_field_size); $copyObj->setVarLabel($this->var_label); diff --git a/workflow/engine/classes/model/om/BaseProcessVariablesPeer.php b/workflow/engine/classes/model/om/BaseProcessVariablesPeer.php index 2ba345ffe..a6d472c47 100644 --- a/workflow/engine/classes/model/om/BaseProcessVariablesPeer.php +++ b/workflow/engine/classes/model/om/BaseProcessVariablesPeer.php @@ -25,24 +25,33 @@ abstract class BaseProcessVariablesPeer const CLASS_DEFAULT = 'classes.model.ProcessVariables'; /** The total number of columns. */ - const NUM_COLUMNS = 12; + const NUM_COLUMNS = 15; /** The number of lazy-loaded columns. */ const NUM_LAZY_LOAD_COLUMNS = 0; + /** the column name for the VAR_ID field */ + const VAR_ID = 'PROCESS_VARIABLES.VAR_ID'; + /** the column name for the VAR_UID field */ const VAR_UID = 'PROCESS_VARIABLES.VAR_UID'; /** the column name for the PRJ_UID field */ const PRJ_UID = 'PROCESS_VARIABLES.PRJ_UID'; + /** the column name for the PRO_ID field */ + const PRO_ID = 'PROCESS_VARIABLES.PRO_ID'; + /** the column name for the VAR_NAME field */ const VAR_NAME = 'PROCESS_VARIABLES.VAR_NAME'; /** the column name for the VAR_FIELD_TYPE field */ const VAR_FIELD_TYPE = 'PROCESS_VARIABLES.VAR_FIELD_TYPE'; + /** the column name for the VAR_FIELD_TYPE_ID field */ + const VAR_FIELD_TYPE_ID = 'PROCESS_VARIABLES.VAR_FIELD_TYPE_ID'; + /** the column name for the VAR_FIELD_SIZE field */ const VAR_FIELD_SIZE = 'PROCESS_VARIABLES.VAR_FIELD_SIZE'; @@ -78,10 +87,10 @@ abstract class BaseProcessVariablesPeer * e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id' */ private static $fieldNames = array ( - BasePeer::TYPE_PHPNAME => array ('VarUid', 'PrjUid', 'VarName', 'VarFieldType', 'VarFieldSize', 'VarLabel', 'VarDbconnection', 'VarSql', 'VarNull', 'VarDefault', 'VarAcceptedValues', 'InpDocUid', ), - BasePeer::TYPE_COLNAME => array (ProcessVariablesPeer::VAR_UID, ProcessVariablesPeer::PRJ_UID, ProcessVariablesPeer::VAR_NAME, ProcessVariablesPeer::VAR_FIELD_TYPE, ProcessVariablesPeer::VAR_FIELD_SIZE, ProcessVariablesPeer::VAR_LABEL, ProcessVariablesPeer::VAR_DBCONNECTION, ProcessVariablesPeer::VAR_SQL, ProcessVariablesPeer::VAR_NULL, ProcessVariablesPeer::VAR_DEFAULT, ProcessVariablesPeer::VAR_ACCEPTED_VALUES, ProcessVariablesPeer::INP_DOC_UID, ), - BasePeer::TYPE_FIELDNAME => array ('VAR_UID', 'PRJ_UID', 'VAR_NAME', 'VAR_FIELD_TYPE', 'VAR_FIELD_SIZE', 'VAR_LABEL', 'VAR_DBCONNECTION', 'VAR_SQL', 'VAR_NULL', 'VAR_DEFAULT', 'VAR_ACCEPTED_VALUES', 'INP_DOC_UID', ), - BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ) + BasePeer::TYPE_PHPNAME => array ('VarId', 'VarUid', 'PrjUid', 'ProId', 'VarName', 'VarFieldType', 'VarFieldTypeId', 'VarFieldSize', 'VarLabel', 'VarDbconnection', 'VarSql', 'VarNull', 'VarDefault', 'VarAcceptedValues', 'InpDocUid', ), + BasePeer::TYPE_COLNAME => array (ProcessVariablesPeer::VAR_ID, ProcessVariablesPeer::VAR_UID, ProcessVariablesPeer::PRJ_UID, ProcessVariablesPeer::PRO_ID, ProcessVariablesPeer::VAR_NAME, ProcessVariablesPeer::VAR_FIELD_TYPE, ProcessVariablesPeer::VAR_FIELD_TYPE_ID, ProcessVariablesPeer::VAR_FIELD_SIZE, ProcessVariablesPeer::VAR_LABEL, ProcessVariablesPeer::VAR_DBCONNECTION, ProcessVariablesPeer::VAR_SQL, ProcessVariablesPeer::VAR_NULL, ProcessVariablesPeer::VAR_DEFAULT, ProcessVariablesPeer::VAR_ACCEPTED_VALUES, ProcessVariablesPeer::INP_DOC_UID, ), + BasePeer::TYPE_FIELDNAME => array ('VAR_ID', 'VAR_UID', 'PRJ_UID', 'PRO_ID', 'VAR_NAME', 'VAR_FIELD_TYPE', 'VAR_FIELD_TYPE_ID', 'VAR_FIELD_SIZE', 'VAR_LABEL', 'VAR_DBCONNECTION', 'VAR_SQL', 'VAR_NULL', 'VAR_DEFAULT', 'VAR_ACCEPTED_VALUES', 'INP_DOC_UID', ), + BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, ) ); /** @@ -91,10 +100,10 @@ abstract class BaseProcessVariablesPeer * e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0 */ private static $fieldKeys = array ( - BasePeer::TYPE_PHPNAME => array ('VarUid' => 0, 'PrjUid' => 1, 'VarName' => 2, 'VarFieldType' => 3, 'VarFieldSize' => 4, 'VarLabel' => 5, 'VarDbconnection' => 6, 'VarSql' => 7, 'VarNull' => 8, 'VarDefault' => 9, 'VarAcceptedValues' => 10, 'InpDocUid' => 11, ), - BasePeer::TYPE_COLNAME => array (ProcessVariablesPeer::VAR_UID => 0, ProcessVariablesPeer::PRJ_UID => 1, ProcessVariablesPeer::VAR_NAME => 2, ProcessVariablesPeer::VAR_FIELD_TYPE => 3, ProcessVariablesPeer::VAR_FIELD_SIZE => 4, ProcessVariablesPeer::VAR_LABEL => 5, ProcessVariablesPeer::VAR_DBCONNECTION => 6, ProcessVariablesPeer::VAR_SQL => 7, ProcessVariablesPeer::VAR_NULL => 8, ProcessVariablesPeer::VAR_DEFAULT => 9, ProcessVariablesPeer::VAR_ACCEPTED_VALUES => 10, ProcessVariablesPeer::INP_DOC_UID => 11, ), - BasePeer::TYPE_FIELDNAME => array ('VAR_UID' => 0, 'PRJ_UID' => 1, 'VAR_NAME' => 2, 'VAR_FIELD_TYPE' => 3, 'VAR_FIELD_SIZE' => 4, 'VAR_LABEL' => 5, 'VAR_DBCONNECTION' => 6, 'VAR_SQL' => 7, 'VAR_NULL' => 8, 'VAR_DEFAULT' => 9, 'VAR_ACCEPTED_VALUES' => 10, 'INP_DOC_UID' => 11, ), - BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ) + BasePeer::TYPE_PHPNAME => array ('VarId' => 0, 'VarUid' => 1, 'PrjUid' => 2, 'ProId' => 3, 'VarName' => 4, 'VarFieldType' => 5, 'VarFieldTypeId' => 6, 'VarFieldSize' => 7, 'VarLabel' => 8, 'VarDbconnection' => 9, 'VarSql' => 10, 'VarNull' => 11, 'VarDefault' => 12, 'VarAcceptedValues' => 13, 'InpDocUid' => 14, ), + BasePeer::TYPE_COLNAME => array (ProcessVariablesPeer::VAR_ID => 0, ProcessVariablesPeer::VAR_UID => 1, ProcessVariablesPeer::PRJ_UID => 2, ProcessVariablesPeer::PRO_ID => 3, ProcessVariablesPeer::VAR_NAME => 4, ProcessVariablesPeer::VAR_FIELD_TYPE => 5, ProcessVariablesPeer::VAR_FIELD_TYPE_ID => 6, ProcessVariablesPeer::VAR_FIELD_SIZE => 7, ProcessVariablesPeer::VAR_LABEL => 8, ProcessVariablesPeer::VAR_DBCONNECTION => 9, ProcessVariablesPeer::VAR_SQL => 10, ProcessVariablesPeer::VAR_NULL => 11, ProcessVariablesPeer::VAR_DEFAULT => 12, ProcessVariablesPeer::VAR_ACCEPTED_VALUES => 13, ProcessVariablesPeer::INP_DOC_UID => 14, ), + BasePeer::TYPE_FIELDNAME => array ('VAR_ID' => 0, 'VAR_UID' => 1, 'PRJ_UID' => 2, 'PRO_ID' => 3, 'VAR_NAME' => 4, 'VAR_FIELD_TYPE' => 5, 'VAR_FIELD_TYPE_ID' => 6, 'VAR_FIELD_SIZE' => 7, 'VAR_LABEL' => 8, 'VAR_DBCONNECTION' => 9, 'VAR_SQL' => 10, 'VAR_NULL' => 11, 'VAR_DEFAULT' => 12, 'VAR_ACCEPTED_VALUES' => 13, 'INP_DOC_UID' => 14, ), + BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, ) ); /** @@ -195,14 +204,20 @@ abstract class BaseProcessVariablesPeer public static function addSelectColumns(Criteria $criteria) { + $criteria->addSelectColumn(ProcessVariablesPeer::VAR_ID); + $criteria->addSelectColumn(ProcessVariablesPeer::VAR_UID); $criteria->addSelectColumn(ProcessVariablesPeer::PRJ_UID); + $criteria->addSelectColumn(ProcessVariablesPeer::PRO_ID); + $criteria->addSelectColumn(ProcessVariablesPeer::VAR_NAME); $criteria->addSelectColumn(ProcessVariablesPeer::VAR_FIELD_TYPE); + $criteria->addSelectColumn(ProcessVariablesPeer::VAR_FIELD_TYPE_ID); + $criteria->addSelectColumn(ProcessVariablesPeer::VAR_FIELD_SIZE); $criteria->addSelectColumn(ProcessVariablesPeer::VAR_LABEL); diff --git a/workflow/engine/config/schema.xml b/workflow/engine/config/schema.xml index c097c14e8..9e13e3a09 100755 --- a/workflow/engine/config/schema.xml +++ b/workflow/engine/config/schema.xml @@ -1974,7 +1974,7 @@ - +
        @@ -1995,8 +1995,10 @@ + + @@ -2006,6 +2008,9 @@ + + + @@ -2023,6 +2028,9 @@ + + +
        @@ -4250,11 +4258,14 @@
        - +
        + + + @@ -4263,6 +4274,9 @@ + + + @@ -4273,6 +4287,9 @@ + + +
        diff --git a/workflow/engine/data/mysql/schema.sql b/workflow/engine/data/mysql/schema.sql index 2dccb3897..4946fb777 100644 --- a/workflow/engine/data/mysql/schema.sql +++ b/workflow/engine/data/mysql/schema.sql @@ -935,8 +935,10 @@ DROP TABLE IF EXISTS `DB_SOURCE`; CREATE TABLE `DB_SOURCE` ( + `DBS_ID` INTEGER NOT NULL AUTO_INCREMENT, `DBS_UID` VARCHAR(32) default '' NOT NULL, `PRO_UID` VARCHAR(32) default '0' NOT NULL, + `PRO_ID` INTEGER default 0, `DBS_TYPE` VARCHAR(8) default '0' NOT NULL, `DBS_SERVER` VARCHAR(100) default '0' NOT NULL, `DBS_DATABASE_NAME` VARCHAR(100) default '0' NOT NULL, @@ -947,7 +949,9 @@ CREATE TABLE `DB_SOURCE` `DBS_CONNECTION_TYPE` VARCHAR(32) default 'NORMAL', `DBS_TNS` VARCHAR(256) default '', PRIMARY KEY (`DBS_UID`,`PRO_UID`), - KEY `indexDBSource`(`PRO_UID`) + UNIQUE KEY `DBS_ID` (`DBS_ID`), + KEY `indexDBSource`(`PRO_UID`), + KEY `INDEX_PRO_ID`(`PRO_ID`) )ENGINE=InnoDB DEFAULT CHARSET='utf8' COMMENT='DB_SOURCE'; #----------------------------------------------------------------------------- #-- STEP_SUPERVISOR @@ -2274,10 +2278,13 @@ DROP TABLE IF EXISTS `PROCESS_VARIABLES`; CREATE TABLE `PROCESS_VARIABLES` ( + `VAR_ID` INTEGER NOT NULL AUTO_INCREMENT, `VAR_UID` VARCHAR(32) NOT NULL, `PRJ_UID` VARCHAR(32) NOT NULL, + `PRO_ID` INTEGER default 0, `VAR_NAME` VARCHAR(255) default '', `VAR_FIELD_TYPE` VARCHAR(32) default '', + `VAR_FIELD_TYPE_ID` INTEGER default 0, `VAR_FIELD_SIZE` INTEGER, `VAR_LABEL` VARCHAR(255) default '', `VAR_DBCONNECTION` VARCHAR(32), @@ -2287,7 +2294,9 @@ CREATE TABLE `PROCESS_VARIABLES` `VAR_ACCEPTED_VALUES` MEDIUMTEXT, `INP_DOC_UID` VARCHAR(32) default '', PRIMARY KEY (`VAR_UID`), - KEY `indexPrjUidVarName`(`PRJ_UID`, `VAR_NAME`) + UNIQUE KEY `VAR_ID` (`VAR_ID`), + KEY `indexPrjUidVarName`(`PRJ_UID`, `VAR_NAME`), + KEY `INDEX_PRO_ID`(`PRO_ID`) )ENGINE=InnoDB ; #----------------------------------------------------------------------------- #-- APP_TIMEOUT_ACTION_EXECUTED diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Validator.php b/workflow/engine/src/ProcessMaker/BusinessModel/Validator.php index 54fde9163..db86a326e 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Validator.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Validator.php @@ -138,26 +138,28 @@ class Validator /** * Validate pro_uid * - * @param string $pro_uid , Uid for process + * @param string $proUid , Uid for process * @param string $nameField . Name of field for message * * @access public - * @author Brayan Pereyra (Cochalo) - * @copyright Colosa - Bolivia * - * @return string + * @return int */ - static public function proUid($pro_uid, $nameField = 'pro_uid') + static public function proUid($proUid, $nameField = 'pro_uid') { - $pro_uid = trim($pro_uid); - if ($pro_uid == '') { + $proUid = trim($proUid); + if (empty($proUid)) { throw (new Exception(G::LoadTranslation("ID_PROCESS_NOT_EXIST", array($nameField, '')))); } - $oProcess = new \Process(); - if (!($oProcess->exists($pro_uid))) { - throw (new Exception(G::LoadTranslation("ID_PROCESS_NOT_EXIST", array($nameField, $pro_uid)))); + $process = new \Process(); + $proId = 0; + if (!($process->exists($proUid))) { + throw (new Exception(G::LoadTranslation("ID_PROCESS_NOT_EXIST", array($nameField, $proUid)))); + } else { + $proId = $process->load($proUid)['PRO_ID']; } - return $pro_uid; + + return $proId; } /** diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php b/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php index 086451bf3..bcd1768b5 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php @@ -7,106 +7,92 @@ use Cases as ClassesCases; use Exception; use G; use PmDynaform; - +use ProcessMaker\Model\ProcessVariables; +use ProcessMaker\Util\Common; class Variable { private $variableTypes = ['string', 'integer', 'float', 'boolean', 'datetime', 'grid', 'array', 'file', 'multiplefile', 'object']; + public static $varTypesValues = [ + 'string' => 1, + 'integer' => 2, + 'float' => 3, + 'boolean' => 4, + 'datetime' => 5, + 'grid' => 6, + 'array' => 7, + 'file' => 8, + 'multiplefile' => 9, + 'object' => 10 + ]; /** * Create Variable for a Process * - * @param string $processUid Unique id of Process + * @param string $proUid Unique id of Process * @param array $arrayData Data * * @return array, return data of the new Variable created * @throws Exception */ - public function create($processUid, array $arrayData) + public function create($proUid, array $arrayData) { try { - //Verify data - Validator::proUid($processUid, '$prj_uid'); + $attributes = []; + // Verify the process + $proId = Validator::proUid($proUid, '$prj_uid'); + $attributes["PRJ_UID"] = $proUid; + $attributes["PRO_ID"] = $proId; + // Get the unique varUid + $varUid = Common::generateUID(); + $attributes["VAR_UID"] = $varUid; + // Get the attributes $arrayData = array_change_key_case($arrayData, CASE_UPPER); - $this->existsName($processUid, $arrayData["VAR_NAME"], ""); - $this->throwExceptionFieldDefinition($arrayData); - - //Create - $cnn = \Propel::getConnection("workflow"); - try { - $variable = new \ProcessVariables(); - $sPkProcessVariables = \ProcessMaker\Util\Common::generateUID(); - - $variable->setVarUid($sPkProcessVariables); - $variable->setPrjUid($processUid); - - if ($variable->validate()) { - $cnn->begin(); - - if (isset($arrayData["VAR_NAME"])) { - $variable->setVarName($arrayData["VAR_NAME"]); - } else { - throw new Exception(G::LoadTranslation("ID_CAN_NOT_BE_NULL", array('$var_name'))); - } - if (isset($arrayData["VAR_FIELD_TYPE"])) { - $arrayData["VAR_FIELD_TYPE"] = $this->validateVarFieldType($arrayData["VAR_FIELD_TYPE"]); - $variable->setVarFieldType($arrayData["VAR_FIELD_TYPE"]); - } else { - throw new Exception(G::LoadTranslation("ID_CAN_NOT_BE_NULL", array('$var_field_type'))); - } - if (isset($arrayData["VAR_FIELD_SIZE"])) { - $variable->setVarFieldSize($arrayData["VAR_FIELD_SIZE"]); - } - if (isset($arrayData["VAR_LABEL"])) { - $variable->setVarLabel($arrayData["VAR_LABEL"]); - } else { - throw new Exception(G::LoadTranslation("ID_CAN_NOT_BE_NULL", array('$var_label'))); - } - if (isset($arrayData["VAR_DBCONNECTION"])) { - $variable->setVarDbconnection($arrayData["VAR_DBCONNECTION"]); - } else { - $variable->setVarDbconnection(""); - } - if (isset($arrayData["VAR_SQL"])) { - $variable->setVarSql($arrayData["VAR_SQL"]); - } else { - $variable->setVarSql(""); - } - if (isset($arrayData["VAR_NULL"])) { - $variable->setVarNull($arrayData["VAR_NULL"]); - } else { - $variable->setVarNull(0); - } - if (isset($arrayData["VAR_DEFAULT"])) { - $variable->setVarDefault($arrayData["VAR_DEFAULT"]); - } - if (isset($arrayData["VAR_ACCEPTED_VALUES"])) { - $encodeAcceptedValues = G::json_encode($arrayData["VAR_ACCEPTED_VALUES"]); - $variable->setVarAcceptedValues($encodeAcceptedValues); - } - if (isset($arrayData["INP_DOC_UID"])) { - $variable->setInpDocUid($arrayData["INP_DOC_UID"]); - } - $variable->save(); - $cnn->commit(); - } else { - $msg = ""; - - foreach ($variable->getValidationFailures() as $validationFailure) { - $msg = $msg . (($msg != "") ? "\n" : "") . $validationFailure->getMessage(); - } - - throw new Exception(G::LoadTranslation("ID_RECORD_CANNOT_BE_CREATED") . "\n" . $msg); - } - } catch (Exception $e) { - $cnn->rollback(); - - throw $e; + // Validate properties that cannot be empty + if (!empty($arrayData["VAR_NAME"])) { + $attributes["VAR_NAME"] = $arrayData["VAR_NAME"]; + } else { + throw new Exception(G::LoadTranslation("ID_CAN_NOT_BE_NULL", ['$var_name'])); } - - //Return - $variable = $this->getVariable($processUid, $sPkProcessVariables); - + if (!empty($arrayData["VAR_FIELD_TYPE"])) { + $attributes["VAR_FIELD_TYPE"] = $this->validateVarFieldType($arrayData["VAR_FIELD_TYPE"]); + $attributes["VAR_FIELD_TYPE_ID"] = self::$varTypesValues[$arrayData["VAR_FIELD_TYPE"]]; + } else { + throw new Exception(G::LoadTranslation("ID_CAN_NOT_BE_NULL", ['$var_field_type'])); + } + if (!empty($arrayData["VAR_LABEL"])) { + $attributes["VAR_LABEL"] = $arrayData["VAR_LABEL"]; + } else { + throw new Exception(G::LoadTranslation("ID_CAN_NOT_BE_NULL", ['$var_label'])); + } + if (!empty($arrayData["VAR_FIELD_SIZE"])) { + $attributes["VAR_FIELD_SIZE"] = $arrayData["VAR_FIELD_SIZE"]; + } + if (!empty($arrayData["VAR_DBCONNECTION"])) { + $attributes["VAR_DBCONNECTION"] = $arrayData["VAR_DBCONNECTION"]; + } + if (!empty($arrayData["VAR_SQL"])) { + $attributes["VAR_SQL"] = $arrayData["VAR_SQL"]; + } + if (!empty($arrayData["VAR_NULL"])) { + $attributes["VAR_NULL"] = $arrayData["VAR_NULL"]; + } + if (!empty($arrayData["VAR_DEFAULT"])) { + $attributes["VAR_DEFAULT"] = $arrayData["VAR_DEFAULT"]; + } + if (!empty($arrayData["VAR_ACCEPTED_VALUES"])) { + $attributes["VAR_ACCEPTED_VALUES"] = G::json_encode($arrayData["VAR_ACCEPTED_VALUES"]); + } + if (!empty($arrayData["INP_DOC_UID"])) { + $attributes["INP_DOC_UID"] = $arrayData["INP_DOC_UID"]; + } + // Additional validations over the data + $this->existsName($proUid, $arrayData["VAR_NAME"], ""); + $this->throwExceptionFieldDefinition($arrayData); + // Register the new variable + $processVariables = ProcessVariables::create($attributes); + // Return theriable created + $variable = $this->getVariable($proUid, $varUid); return $variable; } catch (Exception $e) { throw $e; @@ -292,7 +278,7 @@ class Variable $arrayVariables = array(); while ($aRow = $rsCriteria->getRow()) { $VAR_ACCEPTED_VALUES = G::json_decode($aRow['VAR_ACCEPTED_VALUES'], true); - if (count($VAR_ACCEPTED_VALUES)) { + if (!empty($VAR_ACCEPTED_VALUES)) { $encodeAcceptedValues = preg_replace_callback("/\\\\u([a-f0-9]{4})/", function ($m) { return iconv('UCS-4LE', 'UTF-8', pack('V', hexdec('U' . $m[1]))); }, G::json_encode($VAR_ACCEPTED_VALUES)); @@ -333,64 +319,40 @@ class Variable */ public function getVariables($processUid) { - try { - //Verify data - Validator::proUid($processUid, '$prj_uid'); - - //Get data - $criteria = new \Criteria("workflow"); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_UID); - $criteria->addSelectColumn(\ProcessVariablesPeer::PRJ_UID); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_NAME); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_FIELD_TYPE); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_FIELD_SIZE); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_LABEL); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_DBCONNECTION); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_SQL); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_NULL); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_DEFAULT); - $criteria->addSelectColumn(\ProcessVariablesPeer::VAR_ACCEPTED_VALUES); - $criteria->addSelectColumn(\ProcessVariablesPeer::INP_DOC_UID); - $criteria->addSelectColumn(\DbSourcePeer::DBS_SERVER); - $criteria->addSelectColumn(\DbSourcePeer::DBS_PORT); - $criteria->addSelectColumn(\DbSourcePeer::DBS_DATABASE_NAME); - $criteria->addSelectColumn(\DbSourcePeer::DBS_TYPE); - $criteria->add(\ProcessVariablesPeer::PRJ_UID, $processUid, \Criteria::EQUAL); - $criteria->addJoin(\ProcessVariablesPeer::VAR_DBCONNECTION, \DbSourcePeer::DBS_UID . " AND " . \DbSourcePeer::PRO_UID . " = '" . $processUid . "'", \Criteria::LEFT_JOIN); - $rsCriteria = \ProcessVariablesPeer::doSelectRS($criteria); - $rsCriteria->setFetchmode(\ResultSet::FETCHMODE_ASSOC); - $rsCriteria->next(); - $arrayVariables = array(); - while ($aRow = $rsCriteria->getRow()) { - $VAR_ACCEPTED_VALUES = G::json_decode($aRow['VAR_ACCEPTED_VALUES'], true); - if (count($VAR_ACCEPTED_VALUES)) { - $encodeAcceptedValues = preg_replace_callback("/\\\\u([a-f0-9]{4})/", function ($m) { - return iconv('UCS-4LE', 'UTF-8', pack('V', hexdec($m[1]))); - }, G::json_encode($VAR_ACCEPTED_VALUES)); - } else { - $encodeAcceptedValues = $aRow['VAR_ACCEPTED_VALUES']; - } - - $arrayVariables[] = array('var_uid' => $aRow['VAR_UID'], - 'prj_uid' => $aRow['PRJ_UID'], - 'var_name' => $aRow['VAR_NAME'], - 'var_field_type' => $aRow['VAR_FIELD_TYPE'], - 'var_field_size' => (int)$aRow['VAR_FIELD_SIZE'], - 'var_label' => $aRow['VAR_LABEL'], - 'var_dbconnection' => $aRow['VAR_DBCONNECTION'] === 'none' ? 'workflow' : $aRow['VAR_DBCONNECTION'], - 'var_dbconnection_label' => $aRow['DBS_SERVER'] !== null ? '[' . $aRow['DBS_SERVER'] . ':' . $aRow['DBS_PORT'] . '] ' . $aRow['DBS_TYPE'] . ': ' . $aRow['DBS_DATABASE_NAME'] : 'PM Database', - 'var_sql' => $aRow['VAR_SQL'], - 'var_null' => (int)$aRow['VAR_NULL'], - 'var_default' => $aRow['VAR_DEFAULT'], - 'var_accepted_values' => $encodeAcceptedValues, - 'inp_doc_uid' => $aRow['INP_DOC_UID']); - $rsCriteria->next(); + //Verify data + $proId = Validator::proUid($processUid, '$prj_uid'); + $variables = ProcessVariables::getVariables($proId); + $arrayVariables = []; + foreach ($variables as $var) { + $varAcceptedValues = G::json_decode($var['VAR_ACCEPTED_VALUES'], true); + if (count($varAcceptedValues)) { + $encodeAcceptedValues = preg_replace_callback("/\\\\u([a-f0-9]{4})/", function ($m) { + return iconv('UCS-4LE', 'UTF-8', pack('V', hexdec($m[1]))); + }, G::json_encode($varAcceptedValues)); + } else { + $encodeAcceptedValues = $var['VAR_ACCEPTED_VALUES']; } - //Return - return $arrayVariables; - } catch (Exception $e) { - throw $e; + $dbconnectionLabel = !is_null($var['DBS_SERVER']) ? + '[' . $var['DBS_SERVER'] . ':' . $var['DBS_PORT'] . '] ' . $var['DBS_TYPE'] . ': ' . $var['DBS_DATABASE_NAME'] : 'PM Database'; + $arrayVariables[] = [ + 'var_uid' => $var['VAR_UID'], + 'prj_uid' => $var['PRJ_UID'], + 'var_name' => $var['VAR_NAME'], + 'var_field_type' => $var['VAR_FIELD_TYPE'], + 'var_field_size' => (int)$var['VAR_FIELD_SIZE'], + 'var_label' => $var['VAR_LABEL'], + 'var_dbconnection' => $var['VAR_DBCONNECTION'] === 'none' ? 'workflow' : $var['VAR_DBCONNECTION'], + 'var_dbconnection_label' => !is_null($var['DBS_SERVER']) ? + '[' . $var['DBS_SERVER'] . ':' . $var['DBS_PORT'] . '] ' . $var['DBS_TYPE'] . ': ' . $var['DBS_DATABASE_NAME'] : 'PM Database', + 'var_sql' => $var['VAR_SQL'], + 'var_null' => (int)$var['VAR_NULL'], + 'var_default' => $var['VAR_DEFAULT'], + 'var_accepted_values' => $encodeAcceptedValues, + 'inp_doc_uid' => $var['INP_DOC_UID'] + ]; } + + return $arrayVariables; } /** diff --git a/workflow/engine/src/ProcessMaker/Model/ProcessVariables.php b/workflow/engine/src/ProcessMaker/Model/ProcessVariables.php index 37fdc9347..19693cab9 100644 --- a/workflow/engine/src/ProcessMaker/Model/ProcessVariables.php +++ b/workflow/engine/src/ProcessMaker/Model/ProcessVariables.php @@ -3,6 +3,7 @@ namespace ProcessMaker\Model; use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\Facades\DB; class ProcessVariables extends Model { @@ -10,19 +11,89 @@ class ProcessVariables extends Model protected $table = 'PROCESS_VARIABLES'; // No timestamps public $timestamps = false; - //primary key + // Primary key protected $primaryKey = 'VAR_UID'; + // The IDs are auto-incrementing public $incrementing = false; + /** + * The model's default values for attributes. + * + * @var array + */ + protected $attributes = [ + 'VAR_FIELD_SIZE' => 0, + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '', + ]; + /** + * The attributes that are mass assignable. + * + * @var array + */ + protected $fillable = [ + 'VAR_UID', + 'PRJ_UID', + 'PRO_ID', + 'VAR_NAME', + 'VAR_FIELD_TYPE', + 'VAR_FIELD_TYPE_ID', + 'VAR_FIELD_SIZE', + 'VAR_LABEL', + 'VAR_DBCONNECTION', + 'VAR_SQL', + 'VAR_NULL', + 'VAR_DEFAULT', + 'VAR_ACCEPTED_VALUES', + 'INP_DOC_UID' + ]; /** * Scope a query to filter an specific process * * @param \Illuminate\Database\Eloquent\Builder $query - * @param string $columns + * @param string $proUid * @return \Illuminate\Database\Eloquent\Builder */ - public function scopeProcess($query, string $proUID) + public function scopeProcess($query, string $proUid) { - return $query->where('PRJ_UID', $proUID); + return $query->where('PRJ_UID', $proUid); + } + + /** + * Scope a query to filter an specific process + * + * @param \Illuminate\Database\Eloquent\Builder $query + * @param int $proId + * @return \Illuminate\Database\Eloquent\Builder + */ + public function scopeProcessId($query, int $proId) + { + return $query->where('PRO_ID', $proId); + } + /** + * Return the variables list + * + * @param int $proId + * + * @return array + */ + public static function getVariables(int $proId) + { + $query = ProcessVariables::query()->select(); + $query->leftJoin('DB_SOURCE', function ($join) { + $join->on('DB_SOURCE.PRO_ID', '=', 'PROCESS_VARIABLES.PRO_ID'); + }); + $query->where('PROCESS_VARIABLES.PRO_ID', $proId); + $results = $query->get(); + $variablesList = []; + $results->each(function ($item, $key) use (&$variablesList) { + $variablesList[] = $item->toArray(); + }); + + return $variablesList; } } \ No newline at end of file From c02bd331a375c4085b13bef1b93e20eb0e6f1ca4 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Thu, 14 May 2020 17:55:52 -0400 Subject: [PATCH 06/39] PMCORE-1476 --- .../workflow/engine/classes/ProcessesTest.php | 67 +++++++++++++++++++ workflow/engine/classes/Processes.php | 16 +++++ .../src/ProcessMaker/Importer/Importer.php | 28 ++++++-- 3 files changed, 105 insertions(+), 6 deletions(-) diff --git a/tests/unit/workflow/engine/classes/ProcessesTest.php b/tests/unit/workflow/engine/classes/ProcessesTest.php index 207ebe127..e8fa446cc 100644 --- a/tests/unit/workflow/engine/classes/ProcessesTest.php +++ b/tests/unit/workflow/engine/classes/ProcessesTest.php @@ -9,6 +9,7 @@ use ProcessMaker\Model\Dynaform; use ProcessMaker\Model\InputDocument; use ProcessMaker\Model\OutputDocument; use ProcessMaker\Model\Process; +use ProcessMaker\Model\ProcessVariables; use Tests\TestCase; class ProcessesTest extends TestCase @@ -479,4 +480,70 @@ class ProcessesTest extends TestCase $this->assertObjectHasAttribute($key, $result); } } + + /** + * Test it create a variable from old xml fields + * + * @covers \Processes::createProcessVariables() + * @test + */ + public function it_create_variables_from_import_old() + { + $process = factory(\ProcessMaker\Model\Process::class)->create(); + $attributes[] = [ + 'VAR_UID' => G::generateUniqueID(), + 'PRJ_UID' => $process->PRO_UID, + 'VAR_NAME' => 'varTest', + 'VAR_FIELD_TYPE' => 'integer', + 'VAR_FIELD_SIZE' => 10, + 'VAR_LABEL' => 'string', + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '' + ]; + $processes = new Processes(); + $processes->createProcessVariables($attributes); + $result = ProcessVariables::getVariables($process->PRO_ID); + $this->assertNotEmpty($result); + $result = head($result); + $this->assertArrayHasKey('PRO_ID', $result, "The result does not contains 'PRO_ID' as a key"); + $this->assertArrayHasKey('VAR_FIELD_TYPE_ID', $result, "The result does not contains 'VAR_FIELD_TYPE_ID' as a key"); + $this->assertEquals($result['VAR_FIELD_TYPE_ID'], 2); + } + + /** + * Test it create a variable from new xml fields + * + * @covers \Processes::createProcessVariables() + * @test + */ + public function it_create_variables_from_import_new() + { + $process = factory(\ProcessMaker\Model\Process::class)->create(); + $attributes[] = [ + 'VAR_UID' => G::generateUniqueID(), + 'PRJ_UID' => $process->PRO_UID, + 'VAR_NAME' => 'varTest', + 'VAR_FIELD_TYPE' => 'string', + 'VAR_FIELD_TYPE_ID' => 1, + 'VAR_FIELD_SIZE' => 10, + 'VAR_LABEL' => 'string', + 'VAR_DBCONNECTION' => '', + 'VAR_SQL' => '', + 'VAR_NULL' => 0, + 'VAR_DEFAULT' => '', + 'VAR_ACCEPTED_VALUES' => '[]', + 'INP_DOC_UID' => '' + ]; + $processes = new Processes(); + $processes->createProcessVariables($attributes); + $result = ProcessVariables::getVariables($process->PRO_ID); + $this->assertNotEmpty($result); + $result = head($result); + $this->assertArrayHasKey('PRO_ID', $result, "The result does not contains 'PRO_ID' as a key"); + $this->assertArrayHasKey('VAR_FIELD_TYPE_ID', $result, "The result does not contains 'VAR_FIELD_TYPE_ID' as a key"); + } } diff --git a/workflow/engine/classes/Processes.php b/workflow/engine/classes/Processes.php index 1c928ed61..9807cc72e 100644 --- a/workflow/engine/classes/Processes.php +++ b/workflow/engine/classes/Processes.php @@ -1,6 +1,7 @@ add(ProcessVariablesPeer::VAR_UID, $row['VAR_UID']); $criteria->add(ProcessVariablesPeer::PRJ_UID, $row['PRJ_UID']); + // Load the PRO_ID + $process = new Process(); + if ($process->processExists($row['PRJ_UID'])) { + $processRow = $process->load($row['PRJ_UID']); + $row['PRO_ID'] = $processRow['PRO_ID']; + if (!empty($row['PRO_ID'])) { + $criteria->add(ProcessVariablesPeer::PRO_ID, $row['PRO_ID']); + } + } $criteria->add(ProcessVariablesPeer::VAR_NAME, $row['VAR_NAME']); $criteria->add(ProcessVariablesPeer::VAR_FIELD_TYPE, $row['VAR_FIELD_TYPE']); + if (empty($row['VAR_FIELD_TYPE_ID'])) { + $row['VAR_FIELD_TYPE_ID'] = BmVariable::$varTypesValues[$row["VAR_FIELD_TYPE"]]; + } + $criteria->add(ProcessVariablesPeer::VAR_FIELD_TYPE_ID, $row['VAR_FIELD_TYPE_ID']); $criteria->add(ProcessVariablesPeer::VAR_FIELD_SIZE, $row['VAR_FIELD_SIZE']); $criteria->add(ProcessVariablesPeer::VAR_LABEL, $row['VAR_LABEL']); $criteria->add(ProcessVariablesPeer::VAR_DBCONNECTION, $row['VAR_DBCONNECTION']); @@ -3609,6 +3623,8 @@ class Processes $oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC); $oDataset->next(); while ($aRow = $oDataset->getRow()) { + unset($aRow['VAR_ID']); + unset($aRow['PRO_ID']); $aVars[] = $aRow; $oDataset->next(); } diff --git a/workflow/engine/src/ProcessMaker/Importer/Importer.php b/workflow/engine/src/ProcessMaker/Importer/Importer.php index 8e34a01fb..263c08fc6 100644 --- a/workflow/engine/src/ProcessMaker/Importer/Importer.php +++ b/workflow/engine/src/ProcessMaker/Importer/Importer.php @@ -1,10 +1,12 @@ verifyIfTheProcessHasStartedCases(); @@ -333,7 +335,7 @@ abstract class Importer $diagram = $project->getStruct($projectUid); $res = $project->updateFromStruct($projectUid, $diagram); } - $this->updateTheProcessOwner($projectUid); + $this->updateProcessInformation($projectUid); return $projectUid; } } catch (\Exception $e) { @@ -342,17 +344,20 @@ abstract class Importer /*----------------------------------********---------------------------------*/ $result = $this->doImport($generateUid); - $this->updateTheProcessOwner($result); + $this->updateProcessInformation($result); return $result; } /** - * This updates the process owner. + * This updates information related to the process + * * @param string $proUid + * * @return void */ - private function updateTheProcessOwner(string $proUid): void + private function updateProcessInformation(string $proUid): void { + // Update the process owner $processOwner = $this->data["usr_uid"]; $currentProcess = $this->getCurrentProcess(); @@ -363,6 +368,17 @@ abstract class Importer $process->update([ 'PRO_CREATE_USER' => $processOwner ]); + + // Update the process Variables with the PRO_ID related + $process = new ModelProcess(); + if ($process->processExists($proUid)) { + $processRow = $process->load($proUid); + $proId = $processRow['PRO_ID']; + $processVar = ProcessVariables::where('PRJ_UID', '=', $proUid); + $processVar->update([ + 'PRO_ID' => $proId + ]); + } } /** @@ -887,7 +903,7 @@ abstract class Importer $this->importData["tables"]["workflow"]["process"] = $this->importData["tables"]["workflow"]["process"][0]; $result = $this->doImport(true, false); - $this->updateTheProcessOwner($result); + $this->updateProcessInformation($result); return ['prj_uid' => $result]; } catch (\Exception $e) { return $e->getMessage(); From f1b62b24e2c3c79e0605132c830d45f22751c812 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 25 May 2020 12:57:58 -0400 Subject: [PATCH 07/39] PMCORE-1487 --- database/factories/AppNotesFactory.php | 40 +++++++ .../engine/classes/model/AppNotesTest.php | 104 ++++++++++++++++++ .../engine/methods/cases/ajaxListener.php | 8 ++ .../src/ProcessMaker/Model/AppNotes.php | 11 ++ workflow/engine/templates/cases/open.js | 2 +- 5 files changed, 164 insertions(+), 1 deletion(-) create mode 100644 database/factories/AppNotesFactory.php create mode 100644 tests/unit/workflow/engine/classes/model/AppNotesTest.php create mode 100644 workflow/engine/src/ProcessMaker/Model/AppNotes.php diff --git a/database/factories/AppNotesFactory.php b/database/factories/AppNotesFactory.php new file mode 100644 index 000000000..0f6cdd446 --- /dev/null +++ b/database/factories/AppNotesFactory.php @@ -0,0 +1,40 @@ +define(\ProcessMaker\Model\AppNotes::class, function (Faker $faker) { + return [ + 'APP_UID' => G::generateUniqueID(), + 'USR_UID' => G::generateUniqueID(), + 'NOTE_DATE' => $faker->dateTime(), + 'NOTE_CONTENT' => $faker->sentence(3), + 'NOTE_TYPE' => 'USER', + 'NOTE_AVAILABILITY' => 'PUBLIC', + 'NOTE_ORIGIN_OBJ' => '', + 'NOTE_AFFECTED_OBJ1' => '', + 'NOTE_AFFECTED_OBJ2' => '', + 'NOTE_RECIPIENTS' => '', + ]; +}); + +// Create a case notes with the foreign keys +$factory->state(\ProcessMaker\Model\AppNotes::class, 'foreign_keys', function (Faker $faker) { + // Create values in the foreign key relations + $application = factory(\ProcessMaker\Model\Application::class)->create(); + $user = factory(\ProcessMaker\Model\User::class)->create(); + + // Return with default values + return [ + 'APP_UID' => $application->APP_UID, + 'USR_UID' => $user->USR_UID, + 'NOTE_DATE' => $faker->dateTime(), + 'NOTE_CONTENT' => $faker->sentence(3), + 'NOTE_TYPE' => 'USER', + 'NOTE_AVAILABILITY' => 'PUBLIC', + 'NOTE_ORIGIN_OBJ' => '', + 'NOTE_AFFECTED_OBJ1' => '', + 'NOTE_AFFECTED_OBJ2' => '', + 'NOTE_RECIPIENTS' => '', + ]; +}); + diff --git a/tests/unit/workflow/engine/classes/model/AppNotesTest.php b/tests/unit/workflow/engine/classes/model/AppNotesTest.php new file mode 100644 index 000000000..e6529b4f4 --- /dev/null +++ b/tests/unit/workflow/engine/classes/model/AppNotesTest.php @@ -0,0 +1,104 @@ +create(); + $user = factory(User::class)->create(); + $reason = "The case was canceled due to:"; + $appNotes = new ModelAppNotes(); + $noteContent = addslashes($reason); + $appNotes->postNewNote( + $application->APP_UID, $user->USR_UID, $noteContent, false + ); + + // Query to get the cases notes + $query = AppNotes::query(); + $query->select()->where('APP_UID', $application->APP_UID)->where('USR_UID', $user->USR_UID); + $result = $query->get()->values()->toArray(); + $this->assertNotEmpty($result); + } + + /** + * It test the cases notes creation and send a email to specific user + * + * @test + */ + public function it_test_case_notes_creation_and_send_email_to_user() + { + $application = factory(Application::class)->create(); + $user = factory(User::class)->create(); + $reason = "The case was canceled due to:"; + $appNotes = new ModelAppNotes(); + $noteContent = addslashes($reason); + $appNotes->postNewNote( + $application->APP_UID, $user->USR_UID, $noteContent, true, 'PUBLIC', $user->USR_UID + ); + + // Query to get the cases notes + $query = AppNotes::query(); + $query->select()->where('APP_UID', $application->APP_UID)->where('USR_UID', $user->USR_UID); + $result = $query->get()->values()->toArray(); + $this->assertNotEmpty($result); + + // Query to get the emails + $query = AppMessage::query(); + $query->select()->where('APP_UID', $application->APP_UID)->where('APP_MSG_TYPE', 'CASE_NOTE'); + $result = $query->get()->values()->toArray(); + $this->assertNotEmpty($result); + } + + /** + * It test the cases notes creation and send a email to user with participaion in the case + * + * @test + */ + public function it_test_case_notes_creation_and_send_email() + { + $application = factory(Application::class)->create(); + $user = factory(User::class)->create(); + factory(Delegation::class)->create([ + 'APP_UID' => $application->APP_UID, + 'USR_UID' => $user->USR_UID + ]); + $reason = "The case was canceled due to:"; + $appNotes = new ModelAppNotes(); + $noteContent = addslashes($reason); + $appNotes->postNewNote( + $application->APP_UID, $user->USR_UID, $noteContent, true, 'PUBLIC' + ); + + // Query to get the cases notes + $query = AppNotes::query(); + $query->select()->where('APP_UID', $application->APP_UID)->where('USR_UID', $user->USR_UID); + $result = $query->get()->values()->toArray(); + $this->assertNotEmpty($result); + + // Query to get the emails + $query = AppMessage::query(); + $query->select()->where('APP_UID', $application->APP_UID)->where('APP_MSG_TYPE', 'CASE_NOTE'); + $result = $query->get()->values()->toArray(); + $this->assertNotEmpty($result); + } +} \ No newline at end of file diff --git a/workflow/engine/methods/cases/ajaxListener.php b/workflow/engine/methods/cases/ajaxListener.php index 4dd2cee01..a966c5c1e 100644 --- a/workflow/engine/methods/cases/ajaxListener.php +++ b/workflow/engine/methods/cases/ajaxListener.php @@ -571,6 +571,14 @@ class Ajax // Review if the case was cancelled, true if the case was cancelled $result->status = ($response->status_code == 0) ? true : false; $result->msg = $response->message; + // Register in cases notes + if (!empty($_POST['NOTE_REASON'])) { + $appNotes = new AppNotes(); + $noteContent = addslashes($_POST['NOTE_REASON']); + $appNotes->postNewNote( + $appUid, $usrUid, $noteContent, $_POST['NOTIFY_CANCEL'] + ); + } } else { $result->status = false; $result->msg = G::LoadTranslation("ID_CASE_USER_INVALID_CANCEL_CASE", [$usrUid]); diff --git a/workflow/engine/src/ProcessMaker/Model/AppNotes.php b/workflow/engine/src/ProcessMaker/Model/AppNotes.php new file mode 100644 index 000000000..2db007ad5 --- /dev/null +++ b/workflow/engine/src/ProcessMaker/Model/AppNotes.php @@ -0,0 +1,11 @@ + Date: Tue, 2 Jun 2020 19:04:44 +0000 Subject: [PATCH 08/39] update rakefile Update rakefile to translations update Rakefile for translations update intervals in Task Schedule update insert.sql error in instalation add Translations in index.php task scheduler fix timezone in execution on task scheduler fix timezone add translation to TASKSCHEDULER control for intervals in task scheduler is last_update property PMCORE-1549 PMCORE-1542 Revert "PMCORE-1542 (pull request #7355)" This reverts pull request #7355. > PMCORE-1542 fix schedule Run command --- Rakefile | 32 +- app/Console/Commands/ScheduleRunCommand.php | 48 +- composer.json | 5 + composer.lock | 15 + gulliver/system/class.rbac.php | 5 + rbac/engine/data/mysql/insert.sql | 4 + .../BusinessModel/VariableTest.php | 10 +- .../ProcessMaker/Importer/XmlImporterTest.php | 2 +- .../classes/model/map/SchedulerMapBuilder.php | 8 + .../engine/classes/model/om/BaseScheduler.php | 1438 +++++++++++++++++ .../classes/model/om/BaseSchedulerPeer.php | 644 ++++++++ workflow/engine/config/schema.xml | 6 +- workflow/engine/data/mysql/schema.sql | 27 + workflow/engine/methods/scheduler/index.php | 3 + .../src/ProcessMaker/Model/TaskScheduler.php | 4 +- 15 files changed, 2231 insertions(+), 20 deletions(-) mode change 100644 => 100755 rbac/engine/data/mysql/insert.sql create mode 100644 workflow/engine/classes/model/om/BaseScheduler.php create mode 100644 workflow/engine/classes/model/om/BaseSchedulerPeer.php diff --git a/Rakefile b/Rakefile index 89b2d1882..a3f4ce34d 100755 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,17 @@ require 'rubygems' require 'json' +require "po_to_json" + +class PoToJson + def _generate_for_json(language, overwrite = {}) + @options = parse_options(overwrite.merge(language: language)) + #parse_document + #@parsed ||= inject_meta(parse_document) + generated = build_json_for(parse_document) + end +end + + desc "Default Task - Build Library" task :default => [:required] do Rake::Task['build'].execute @@ -67,9 +79,20 @@ task :build => [:required] do mafeHash = getHash(Dir.pwd + "/vendor/colosa/MichelangeloFE") pmdynaformHash = getHash(Dir.pwd + "/vendor/colosa/pmDynaform") + puts "Building PO to JSON".cyan + + Dir["#{Dir.pwd}/workflow/engine/content/translations/*.po"].each do |file| + lang = file.split('.') + json_string = PoToJson.new(file)._generate_for_json(lang[1], :pretty => true) + File.open("#{Dir.pwd}/workflow/public_html/translations/#{lang[1]}.json",'w').write(json_string) + puts file + end + + + puts "Building file: Task Scheduler".cyan system "npm run build --prefix #{Dir.pwd}/vendor/colosa/taskscheduler" system "cp -Rf #{Dir.pwd}/vendor/colosa/taskscheduler/taskscheduler #{targetDir}/taskscheduler" - system "cp #{Dir.pwd}/vendor/colosa/taskscheduler/taskscheduler/index.html #{targetDir}/taskscheduler" + system "cp #{Dir.pwd}/vendor/colosa/taskscheduler/public/index.html #{targetDir}/taskscheduler" hashVendors = pmuiHash+"-"+mafeHash ## Building minified JS Files @@ -469,3 +492,10 @@ def getLog return output end +def generate_for_json() + @overwrite = {pretty: false} + @options = parse_options(overwrite.merge(language: 'en')) + @parsed ||= inject_meta(parse_document) + + generated = build_json_for(build_json_for(@parsed)) +end \ No newline at end of file diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php index 329a05e63..aed40ed22 100755 --- a/app/Console/Commands/ScheduleRunCommand.php +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -1,4 +1,5 @@ description .= ' (ProcessMaker has extended this command)'; + $this->description .= ' (ProcessMaker has extended this command)'; parent::__construct($schedule); } - /** * Execute the console command. * @@ -43,13 +45,37 @@ class ScheduleRunCommand extends BaseCommand $webApplication->setRootDir($this->option('processmakerPath')); $webApplication->loadEnvironment($workspace, false); } - TaskScheduler::all()->each(function($p) use ($that){ - if($p->isDue()){ - Log::info("Si se ejecuta" . $p->expression); - } - if($p->enable == '1'){ - $that->schedule->exec($p->body)->cron($p->expression)->between($p->startingTime, $p->endingTime); - } + TaskScheduler::all()->each(function ($p) use ($that) { + $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; + $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; + $timezone = isset($p->timezone) && $p->timezone != ""? $p->timezone: date_default_timezone_get(); + $that->schedule->exec($p->body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { + $now = Carbon::now(); + $result = false; + $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); + if (isset($p->everyOn)) { + switch ($p->interval) { + case "day": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); + break; + case "week": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && $interval % (intval($p->everyOn) * 7) == 0); + break; + case "month": + $interval = $now->diffInMonths($datework); + $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); + break; + case "year": + $interval = $now->diffInYears($datework); + $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); + break; + } + return $result; + } + return true; + }); }); parent::handle(); } diff --git a/composer.json b/composer.json index 14f7f5d9e..5a433bb71 100644 --- a/composer.json +++ b/composer.json @@ -22,6 +22,10 @@ { "type": "git", "url": "git@bitbucket.org:colosa/pmui.git" + }, + { + "type": "git", + "url": "git@bitbucket.org:colosa/taskscheduler.git" } ], "minimum-stability": "dev", @@ -34,6 +38,7 @@ "colosa/pmui": "release/3.4.8-dev", "colosa/michelangelofe": "release/3.4.8-dev", "colosa/pmdynaform": "release/3.4.8-dev", + "colosa/taskscheduler": "0.1.0", "google/apiclient": "1.1.6", "dapphp/securimage": "^3.6", "psr/log": "1.0.0", diff --git a/composer.lock b/composer.lock index dde7a6aed..f95471e72 100644 --- a/composer.lock +++ b/composer.lock @@ -146,6 +146,21 @@ ], "time": "2020-03-10T12:38:14+00:00" }, + { + "name": "colosa/taskscheduler", + "version": "0.1.0", + "source": { + "type": "git", + "url": "git@bitbucket.org:colosa/taskscheduler.git", + "reference": "master" + }, + "type": "library", + "description": "JS Library to render ProcessMaker Task Scheduler", + "homepage": "http://processmaker.com", + "keywords": [ + "Vue js lib ProcessMaker Task Scheduler" + ] + }, { "name": "colosa/pmUI", "version": "dev-release/3.4.8", diff --git a/gulliver/system/class.rbac.php b/gulliver/system/class.rbac.php index 37ce496aa..cdbf10532 100644 --- a/gulliver/system/class.rbac.php +++ b/gulliver/system/class.rbac.php @@ -615,6 +615,11 @@ class RBAC 'PER_UID' => '00000000000000000000000000000068', 'PER_CODE' => 'PM_FOLDERS_OWNER', 'PER_NAME' => 'View Your Folders' + ], + [ + 'PER_UID' => '00000000000000000000000000000069', + 'PER_CODE' => 'PM_TASK_SCHEDULER_ADMIN', + 'PER_NAME' => 'View Task Scheduler' ] ]; diff --git a/rbac/engine/data/mysql/insert.sql b/rbac/engine/data/mysql/insert.sql old mode 100644 new mode 100755 index e01cb604b..e0a874e31 --- a/rbac/engine/data/mysql/insert.sql +++ b/rbac/engine/data/mysql/insert.sql @@ -68,6 +68,9 @@ INSERT INTO `RBAC_PERMISSIONS` VALUES ('00000000000000000000000000000067','PM_SETUP_LOG_FILES','2018-02-06 00:00:00','2018-02-06 00:00:00',1,'00000000000000000000000000000002'), ('00000000000000000000000000000068','PM_FOLDERS_OWNER','2020-01-29 00:00:00','2020-01-29 00:00:00',1,'00000000000000000000000000000002'); +INSERT INTO `RBAC_PERMISSIONS` VALUES +('00000000000000000000000000000069','PM_TASK_SCHEDULER_ADMIN','2020-01-29 00:00:00','2020-01-29 00:00:00',1,'00000000000000000000000000000002'); + INSERT INTO `RBAC_ROLES` VALUES ('00000000000000000000000000000001','','00000000000000000000000000000001','RBAC_ADMIN','2007-07-31 19:10:22','2007-08-03 12:24:36',1), ('00000000000000000000000000000002','','00000000000000000000000000000002','PROCESSMAKER_ADMIN','2007-07-31 19:10:22','2007-08-03 12:24:36',1), @@ -144,6 +147,7 @@ INSERT INTO `RBAC_ROLES_PERMISSIONS` VALUES ('00000000000000000000000000000002','00000000000000000000000000000065'), ('00000000000000000000000000000002','00000000000000000000000000000067'), ('00000000000000000000000000000002','00000000000000000000000000000068'), +('00000000000000000000000000000002','00000000000000000000000000000069'), ('00000000000000000000000000000003','00000000000000000000000000000001'), ('00000000000000000000000000000003','00000000000000000000000000000005'), ('00000000000000000000000000000003','00000000000000000000000000000040'), diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php index ebc29c3ee..794dd14f2 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php @@ -15,7 +15,7 @@ class VariableTest extends TestCase /** * Test it create variables related to the process * - * @covers \ProcessMaker\BusinessModel\Variables::create() + * @covers \ProcessMaker\BusinessModel\Variable::create() * @test */ public function it_create_variable_by_process() @@ -62,7 +62,7 @@ class VariableTest extends TestCase /** * Tests the exception * - * @covers \ProcessMaker\BusinessModel\Variables::create() + * @covers \ProcessMaker\BusinessModel\Variable::create() * @test */ public function it_return_an_exception_when_var_name_is_empty() @@ -94,7 +94,7 @@ class VariableTest extends TestCase /** * Tests the exception * - * @covers \ProcessMaker\BusinessModel\Variables::create() + * @covers \ProcessMaker\BusinessModel\Variable::create() * @test */ public function it_return_an_exception_when_var_field_type_is_empty() @@ -126,7 +126,7 @@ class VariableTest extends TestCase /** * Tests the exception * - * @covers \ProcessMaker\BusinessModel\Variables::create() + * @covers \ProcessMaker\BusinessModel\Variable::create() * @test */ public function it_return_an_exception_when_var_label_is_empty() @@ -158,7 +158,7 @@ class VariableTest extends TestCase /** * Test it return the variables related to the PRO_UID * - * @covers \ProcessMaker\BusinessModel\Variables::getVariables() + * @covers \ProcessMaker\BusinessModel\Variable::getVariables() * @test */ public function it_list_variables_by_process() diff --git a/tests/unit/workflow/engine/src/ProcessMaker/Importer/XmlImporterTest.php b/tests/unit/workflow/engine/src/ProcessMaker/Importer/XmlImporterTest.php index 1cf6ae13a..dda3d3677 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/Importer/XmlImporterTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/Importer/XmlImporterTest.php @@ -233,7 +233,7 @@ class XmlImporterTest extends TestCase * Test the import new option and the import new group option with repeated title. * @test * @covers \ProcessMaker\Importer\XmlImporter::import() - * @covers \ProcessMaker\Importer\XmlImporter::updateTheProcessOwner() + * @covers \ProcessMaker\Importer\XmlImporter::updateProcessInformation() */ public function it_should_matter_with_import_option_create_new_and_group_import_option_create_new_try_rename_title() { diff --git a/workflow/engine/classes/model/map/SchedulerMapBuilder.php b/workflow/engine/classes/model/map/SchedulerMapBuilder.php index fd1a1006c..b7d26b434 100755 --- a/workflow/engine/classes/model/map/SchedulerMapBuilder.php +++ b/workflow/engine/classes/model/map/SchedulerMapBuilder.php @@ -73,6 +73,10 @@ class SchedulerMapBuilder $tMap->addColumn('ENDINGTIME', 'Endingtime', 'string', CreoleTypes::VARCHAR, false, 100); + $tMap->addColumn('EVERYON', 'Everyon', 'string', CreoleTypes::VARCHAR, false, 255); + + $tMap->addColumn('INTERVAL', 'Interval', 'string', CreoleTypes::VARCHAR, false, 10); + $tMap->addColumn('DESCRIPTION', 'Description', 'string', CreoleTypes::VARCHAR, false, 255); $tMap->addColumn('EXPRESSION', 'Expression', 'string', CreoleTypes::VARCHAR, false, 255); @@ -89,6 +93,10 @@ class SchedulerMapBuilder $tMap->addColumn('ENABLE', 'Enable', 'int', CreoleTypes::TINYINT, false, 3); + $tMap->addColumn('CREATION_DATE', 'CreationDate', 'int', CreoleTypes::TIMESTAMP, false, null); + + $tMap->addColumn('LAST_UPDATE', 'LastUpdate', 'int', CreoleTypes::TIMESTAMP, false, null); + } // doBuild() } // SchedulerMapBuilder diff --git a/workflow/engine/classes/model/om/BaseScheduler.php b/workflow/engine/classes/model/om/BaseScheduler.php new file mode 100644 index 000000000..13e9b2dec --- /dev/null +++ b/workflow/engine/classes/model/om/BaseScheduler.php @@ -0,0 +1,1438 @@ +id; + } + + /** + * Get the [title] column value. + * + * @return string + */ + public function getTitle() + { + + return $this->title; + } + + /** + * Get the [startingtime] column value. + * + * @return string + */ + public function getStartingtime() + { + + return $this->startingtime; + } + + /** + * Get the [endingtime] column value. + * + * @return string + */ + public function getEndingtime() + { + + return $this->endingtime; + } + + /** + * Get the [everyon] column value. + * + * @return string + */ + public function getEveryon() + { + + return $this->everyon; + } + + /** + * Get the [interval] column value. + * + * @return string + */ + public function getInterval() + { + + return $this->interval; + } + + /** + * Get the [description] column value. + * + * @return string + */ + public function getDescription() + { + + return $this->description; + } + + /** + * Get the [expression] column value. + * + * @return string + */ + public function getExpression() + { + + return $this->expression; + } + + /** + * Get the [body] column value. + * + * @return string + */ + public function getBody() + { + + return $this->body; + } + + /** + * Get the [type] column value. + * + * @return string + */ + public function getType() + { + + return $this->type; + } + + /** + * Get the [category] column value. + * + * @return string + */ + public function getCategory() + { + + return $this->category; + } + + /** + * Get the [system] column value. + * + * @return int + */ + public function getSystem() + { + + return $this->system; + } + + /** + * Get the [timezone] column value. + * + * @return string + */ + public function getTimezone() + { + + return $this->timezone; + } + + /** + * Get the [enable] column value. + * + * @return int + */ + public function getEnable() + { + + return $this->enable; + } + + /** + * Get the [optionally formatted] [creation_date] column value. + * + * @param string $format The date/time format string (either date()-style or strftime()-style). + * If format is NULL, then the integer unix timestamp will be returned. + * @return mixed Formatted date/time value as string or integer unix timestamp (if format is NULL). + * @throws PropelException - if unable to convert the date/time to timestamp. + */ + public function getCreationDate($format = 'Y-m-d H:i:s') + { + + if ($this->creation_date === null || $this->creation_date === '') { + return null; + } elseif (!is_int($this->creation_date)) { + // a non-timestamp value was set externally, so we convert it + $ts = strtotime($this->creation_date); + if ($ts === -1 || $ts === false) { + throw new PropelException("Unable to parse value of [creation_date] as date/time value: " . + var_export($this->creation_date, true)); + } + } else { + $ts = $this->creation_date; + } + if ($format === null) { + return $ts; + } elseif (strpos($format, '%') !== false) { + return strftime($format, $ts); + } else { + return date($format, $ts); + } + } + + /** + * Get the [optionally formatted] [last_update] column value. + * + * @param string $format The date/time format string (either date()-style or strftime()-style). + * If format is NULL, then the integer unix timestamp will be returned. + * @return mixed Formatted date/time value as string or integer unix timestamp (if format is NULL). + * @throws PropelException - if unable to convert the date/time to timestamp. + */ + public function getLastUpdate($format = 'Y-m-d H:i:s') + { + + if ($this->last_update === null || $this->last_update === '') { + return null; + } elseif (!is_int($this->last_update)) { + // a non-timestamp value was set externally, so we convert it + $ts = strtotime($this->last_update); + if ($ts === -1 || $ts === false) { + throw new PropelException("Unable to parse value of [last_update] as date/time value: " . + var_export($this->last_update, true)); + } + } else { + $ts = $this->last_update; + } + if ($format === null) { + return $ts; + } elseif (strpos($format, '%') !== false) { + return strftime($format, $ts); + } else { + return date($format, $ts); + } + } + + /** + * Set the value of [id] column. + * + * @param string $v new value + * @return void + */ + public function setId($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->id !== $v) { + $this->id = $v; + $this->modifiedColumns[] = SchedulerPeer::ID; + } + + } // setId() + + /** + * Set the value of [title] column. + * + * @param string $v new value + * @return void + */ + public function setTitle($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->title !== $v) { + $this->title = $v; + $this->modifiedColumns[] = SchedulerPeer::TITLE; + } + + } // setTitle() + + /** + * Set the value of [startingtime] column. + * + * @param string $v new value + * @return void + */ + public function setStartingtime($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->startingtime !== $v) { + $this->startingtime = $v; + $this->modifiedColumns[] = SchedulerPeer::STARTINGTIME; + } + + } // setStartingtime() + + /** + * Set the value of [endingtime] column. + * + * @param string $v new value + * @return void + */ + public function setEndingtime($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->endingtime !== $v) { + $this->endingtime = $v; + $this->modifiedColumns[] = SchedulerPeer::ENDINGTIME; + } + + } // setEndingtime() + + /** + * Set the value of [everyon] column. + * + * @param string $v new value + * @return void + */ + public function setEveryon($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->everyon !== $v) { + $this->everyon = $v; + $this->modifiedColumns[] = SchedulerPeer::EVERYON; + } + + } // setEveryon() + + /** + * Set the value of [interval] column. + * + * @param string $v new value + * @return void + */ + public function setInterval($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->interval !== $v) { + $this->interval = $v; + $this->modifiedColumns[] = SchedulerPeer::INTERVAL; + } + + } // setInterval() + + /** + * Set the value of [description] column. + * + * @param string $v new value + * @return void + */ + public function setDescription($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->description !== $v) { + $this->description = $v; + $this->modifiedColumns[] = SchedulerPeer::DESCRIPTION; + } + + } // setDescription() + + /** + * Set the value of [expression] column. + * + * @param string $v new value + * @return void + */ + public function setExpression($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->expression !== $v) { + $this->expression = $v; + $this->modifiedColumns[] = SchedulerPeer::EXPRESSION; + } + + } // setExpression() + + /** + * Set the value of [body] column. + * + * @param string $v new value + * @return void + */ + public function setBody($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->body !== $v) { + $this->body = $v; + $this->modifiedColumns[] = SchedulerPeer::BODY; + } + + } // setBody() + + /** + * Set the value of [type] column. + * + * @param string $v new value + * @return void + */ + public function setType($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->type !== $v) { + $this->type = $v; + $this->modifiedColumns[] = SchedulerPeer::TYPE; + } + + } // setType() + + /** + * Set the value of [category] column. + * + * @param string $v new value + * @return void + */ + public function setCategory($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->category !== $v) { + $this->category = $v; + $this->modifiedColumns[] = SchedulerPeer::CATEGORY; + } + + } // setCategory() + + /** + * Set the value of [system] column. + * + * @param int $v new value + * @return void + */ + public function setSystem($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->system !== $v) { + $this->system = $v; + $this->modifiedColumns[] = SchedulerPeer::SYSTEM; + } + + } // setSystem() + + /** + * Set the value of [timezone] column. + * + * @param string $v new value + * @return void + */ + public function setTimezone($v) + { + + // Since the native PHP type for this column is string, + // we will cast the input to a string (if it is not). + if ($v !== null && !is_string($v)) { + $v = (string) $v; + } + + if ($this->timezone !== $v) { + $this->timezone = $v; + $this->modifiedColumns[] = SchedulerPeer::TIMEZONE; + } + + } // setTimezone() + + /** + * Set the value of [enable] column. + * + * @param int $v new value + * @return void + */ + public function setEnable($v) + { + + // Since the native PHP type for this column is integer, + // we will cast the input value to an int (if it is not). + if ($v !== null && !is_int($v) && is_numeric($v)) { + $v = (int) $v; + } + + if ($this->enable !== $v) { + $this->enable = $v; + $this->modifiedColumns[] = SchedulerPeer::ENABLE; + } + + } // setEnable() + + /** + * Set the value of [creation_date] column. + * + * @param int $v new value + * @return void + */ + public function setCreationDate($v) + { + + if ($v !== null && !is_int($v)) { + $ts = strtotime($v); + //Date/time accepts null values + if ($v == '') { + $ts = null; + } + if ($ts === -1 || $ts === false) { + throw new PropelException("Unable to parse date/time value for [creation_date] from input: " . + var_export($v, true)); + } + } else { + $ts = $v; + } + if ($this->creation_date !== $ts) { + $this->creation_date = $ts; + $this->modifiedColumns[] = SchedulerPeer::CREATION_DATE; + } + + } // setCreationDate() + + /** + * Set the value of [last_update] column. + * + * @param int $v new value + * @return void + */ + public function setLastUpdate($v) + { + + if ($v !== null && !is_int($v)) { + $ts = strtotime($v); + //Date/time accepts null values + if ($v == '') { + $ts = null; + } + if ($ts === -1 || $ts === false) { + throw new PropelException("Unable to parse date/time value for [last_update] from input: " . + var_export($v, true)); + } + } else { + $ts = $v; + } + if ($this->last_update !== $ts) { + $this->last_update = $ts; + $this->modifiedColumns[] = SchedulerPeer::LAST_UPDATE; + } + + } // setLastUpdate() + + /** + * Hydrates (populates) the object variables with values from the database resultset. + * + * An offset (1-based "start column") is specified so that objects can be hydrated + * with a subset of the columns in the resultset rows. This is needed, for example, + * for results of JOIN queries where the resultset row includes columns from two or + * more tables. + * + * @param ResultSet $rs The ResultSet class with cursor advanced to desired record pos. + * @param int $startcol 1-based offset column which indicates which restultset column to start with. + * @return int next starting column + * @throws PropelException - Any caught Exception will be rewrapped as a PropelException. + */ + public function hydrate(ResultSet $rs, $startcol = 1) + { + try { + + $this->id = $rs->getString($startcol + 0); + + $this->title = $rs->getString($startcol + 1); + + $this->startingtime = $rs->getString($startcol + 2); + + $this->endingtime = $rs->getString($startcol + 3); + + $this->everyon = $rs->getString($startcol + 4); + + $this->interval = $rs->getString($startcol + 5); + + $this->description = $rs->getString($startcol + 6); + + $this->expression = $rs->getString($startcol + 7); + + $this->body = $rs->getString($startcol + 8); + + $this->type = $rs->getString($startcol + 9); + + $this->category = $rs->getString($startcol + 10); + + $this->system = $rs->getInt($startcol + 11); + + $this->timezone = $rs->getString($startcol + 12); + + $this->enable = $rs->getInt($startcol + 13); + + $this->creation_date = $rs->getTimestamp($startcol + 14, null); + + $this->last_update = $rs->getTimestamp($startcol + 15, null); + + $this->resetModified(); + + $this->setNew(false); + + // FIXME - using NUM_COLUMNS may be clearer. + return $startcol + 16; // 16 = SchedulerPeer::NUM_COLUMNS - SchedulerPeer::NUM_LAZY_LOAD_COLUMNS). + + } catch (Exception $e) { + throw new PropelException("Error populating Scheduler object", $e); + } + } + + /** + * Removes this object from datastore and sets delete attribute. + * + * @param Connection $con + * @return void + * @throws PropelException + * @see BaseObject::setDeleted() + * @see BaseObject::isDeleted() + */ + public function delete($con = null) + { + if ($this->isDeleted()) { + throw new PropelException("This object has already been deleted."); + } + + if ($con === null) { + $con = Propel::getConnection(SchedulerPeer::DATABASE_NAME); + } + + try { + $con->begin(); + SchedulerPeer::doDelete($this, $con); + $this->setDeleted(true); + $con->commit(); + } catch (PropelException $e) { + $con->rollback(); + throw $e; + } + } + + /** + * Stores the object in the database. If the object is new, + * it inserts it; otherwise an update is performed. This method + * wraps the doSave() worker method in a transaction. + * + * @param Connection $con + * @return int The number of rows affected by this insert/update + * @throws PropelException + * @see doSave() + */ + public function save($con = null) + { + if ($this->isDeleted()) { + throw new PropelException("You cannot save an object that has been deleted."); + } + + if ($con === null) { + $con = Propel::getConnection(SchedulerPeer::DATABASE_NAME); + } + + try { + $con->begin(); + $affectedRows = $this->doSave($con); + $con->commit(); + return $affectedRows; + } catch (PropelException $e) { + $con->rollback(); + throw $e; + } + } + + /** + * Stores the object in the database. + * + * If the object is new, it inserts it; otherwise an update is performed. + * All related objects are also updated in this method. + * + * @param Connection $con + * @return int The number of rows affected by this insert/update and any referring + * @throws PropelException + * @see save() + */ + protected function doSave($con) + { + $affectedRows = 0; // initialize var to track total num of affected rows + if (!$this->alreadyInSave) { + $this->alreadyInSave = true; + + + // If this object has been modified, then save it to the database. + if ($this->isModified()) { + if ($this->isNew()) { + $pk = SchedulerPeer::doInsert($this, $con); + $affectedRows += 1; // we are assuming that there is only 1 row per doInsert() which + // should always be true here (even though technically + // BasePeer::doInsert() can insert multiple rows). + + $this->setId($pk); //[IMV] update autoincrement primary key + + $this->setNew(false); + } else { + $affectedRows += SchedulerPeer::doUpdate($this, $con); + } + $this->resetModified(); // [HL] After being saved an object is no longer 'modified' + } + + $this->alreadyInSave = false; + } + return $affectedRows; + } // doSave() + + /** + * Array of ValidationFailed objects. + * @var array ValidationFailed[] + */ + protected $validationFailures = array(); + + /** + * Gets any ValidationFailed objects that resulted from last call to validate(). + * + * + * @return array ValidationFailed[] + * @see validate() + */ + public function getValidationFailures() + { + return $this->validationFailures; + } + + /** + * Validates the objects modified field values and all objects related to this table. + * + * If $columns is either a column name or an array of column names + * only those columns are validated. + * + * @param mixed $columns Column name or an array of column names. + * @return boolean Whether all columns pass validation. + * @see doValidate() + * @see getValidationFailures() + */ + public function validate($columns = null) + { + $res = $this->doValidate($columns); + if ($res === true) { + $this->validationFailures = array(); + return true; + } else { + $this->validationFailures = $res; + return false; + } + } + + /** + * This function performs the validation work for complex object models. + * + * In addition to checking the current object, all related objects will + * also be validated. If all pass then true is returned; otherwise + * an aggreagated array of ValidationFailed objects will be returned. + * + * @param array $columns Array of column names to validate. + * @return mixed true if all validations pass; + array of ValidationFailed objects otherwise. + */ + protected function doValidate($columns = null) + { + if (!$this->alreadyInValidation) { + $this->alreadyInValidation = true; + $retval = null; + + $failureMap = array(); + + + if (($retval = SchedulerPeer::doValidate($this, $columns)) !== true) { + $failureMap = array_merge($failureMap, $retval); + } + + + + $this->alreadyInValidation = false; + } + + return (!empty($failureMap) ? $failureMap : true); + } + + /** + * Retrieves a field from the object by name passed in as a string. + * + * @param string $name name + * @param string $type The type of fieldname the $name is of: + * one of the class type constants TYPE_PHPNAME, + * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM + * @return mixed Value of field. + */ + public function getByName($name, $type = BasePeer::TYPE_PHPNAME) + { + $pos = SchedulerPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM); + return $this->getByPosition($pos); + } + + /** + * Retrieves a field from the object by Position as specified in the xml schema. + * Zero-based. + * + * @param int $pos position in xml schema + * @return mixed Value of field at $pos + */ + public function getByPosition($pos) + { + switch($pos) { + case 0: + return $this->getId(); + break; + case 1: + return $this->getTitle(); + break; + case 2: + return $this->getStartingtime(); + break; + case 3: + return $this->getEndingtime(); + break; + case 4: + return $this->getEveryon(); + break; + case 5: + return $this->getInterval(); + break; + case 6: + return $this->getDescription(); + break; + case 7: + return $this->getExpression(); + break; + case 8: + return $this->getBody(); + break; + case 9: + return $this->getType(); + break; + case 10: + return $this->getCategory(); + break; + case 11: + return $this->getSystem(); + break; + case 12: + return $this->getTimezone(); + break; + case 13: + return $this->getEnable(); + break; + case 14: + return $this->getCreationDate(); + break; + case 15: + return $this->getLastUpdate(); + break; + default: + return null; + break; + } // switch() + } + + /** + * Exports the object as an array. + * + * You can specify the key type of the array by passing one of the class + * type constants. + * + * @param string $keyType One of the class type constants TYPE_PHPNAME, + * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM + * @return an associative array containing the field names (as keys) and field values + */ + public function toArray($keyType = BasePeer::TYPE_PHPNAME) + { + $keys = SchedulerPeer::getFieldNames($keyType); + $result = array( + $keys[0] => $this->getId(), + $keys[1] => $this->getTitle(), + $keys[2] => $this->getStartingtime(), + $keys[3] => $this->getEndingtime(), + $keys[4] => $this->getEveryon(), + $keys[5] => $this->getInterval(), + $keys[6] => $this->getDescription(), + $keys[7] => $this->getExpression(), + $keys[8] => $this->getBody(), + $keys[9] => $this->getType(), + $keys[10] => $this->getCategory(), + $keys[11] => $this->getSystem(), + $keys[12] => $this->getTimezone(), + $keys[13] => $this->getEnable(), + $keys[14] => $this->getCreationDate(), + $keys[15] => $this->getLastUpdate(), + ); + return $result; + } + + /** + * Sets a field from the object by name passed in as a string. + * + * @param string $name peer name + * @param mixed $value field value + * @param string $type The type of fieldname the $name is of: + * one of the class type constants TYPE_PHPNAME, + * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM + * @return void + */ + public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME) + { + $pos = SchedulerPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM); + return $this->setByPosition($pos, $value); + } + + /** + * Sets a field from the object by Position as specified in the xml schema. + * Zero-based. + * + * @param int $pos position in xml schema + * @param mixed $value field value + * @return void + */ + public function setByPosition($pos, $value) + { + switch($pos) { + case 0: + $this->setId($value); + break; + case 1: + $this->setTitle($value); + break; + case 2: + $this->setStartingtime($value); + break; + case 3: + $this->setEndingtime($value); + break; + case 4: + $this->setEveryon($value); + break; + case 5: + $this->setInterval($value); + break; + case 6: + $this->setDescription($value); + break; + case 7: + $this->setExpression($value); + break; + case 8: + $this->setBody($value); + break; + case 9: + $this->setType($value); + break; + case 10: + $this->setCategory($value); + break; + case 11: + $this->setSystem($value); + break; + case 12: + $this->setTimezone($value); + break; + case 13: + $this->setEnable($value); + break; + case 14: + $this->setCreationDate($value); + break; + case 15: + $this->setLastUpdate($value); + break; + } // switch() + } + + /** + * Populates the object using an array. + * + * This is particularly useful when populating an object from one of the + * request arrays (e.g. $_POST). This method goes through the column + * names, checking to see whether a matching key exists in populated + * array. If so the setByName() method is called for that column. + * + * You can specify the key type of the array by additionally passing one + * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME, + * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId') + * + * @param array $arr An array to populate the object from. + * @param string $keyType The type of keys the array uses. + * @return void + */ + public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) + { + $keys = SchedulerPeer::getFieldNames($keyType); + + if (array_key_exists($keys[0], $arr)) { + $this->setId($arr[$keys[0]]); + } + + if (array_key_exists($keys[1], $arr)) { + $this->setTitle($arr[$keys[1]]); + } + + if (array_key_exists($keys[2], $arr)) { + $this->setStartingtime($arr[$keys[2]]); + } + + if (array_key_exists($keys[3], $arr)) { + $this->setEndingtime($arr[$keys[3]]); + } + + if (array_key_exists($keys[4], $arr)) { + $this->setEveryon($arr[$keys[4]]); + } + + if (array_key_exists($keys[5], $arr)) { + $this->setInterval($arr[$keys[5]]); + } + + if (array_key_exists($keys[6], $arr)) { + $this->setDescription($arr[$keys[6]]); + } + + if (array_key_exists($keys[7], $arr)) { + $this->setExpression($arr[$keys[7]]); + } + + if (array_key_exists($keys[8], $arr)) { + $this->setBody($arr[$keys[8]]); + } + + if (array_key_exists($keys[9], $arr)) { + $this->setType($arr[$keys[9]]); + } + + if (array_key_exists($keys[10], $arr)) { + $this->setCategory($arr[$keys[10]]); + } + + if (array_key_exists($keys[11], $arr)) { + $this->setSystem($arr[$keys[11]]); + } + + if (array_key_exists($keys[12], $arr)) { + $this->setTimezone($arr[$keys[12]]); + } + + if (array_key_exists($keys[13], $arr)) { + $this->setEnable($arr[$keys[13]]); + } + + if (array_key_exists($keys[14], $arr)) { + $this->setCreationDate($arr[$keys[14]]); + } + + if (array_key_exists($keys[15], $arr)) { + $this->setLastUpdate($arr[$keys[15]]); + } + + } + + /** + * Build a Criteria object containing the values of all modified columns in this object. + * + * @return Criteria The Criteria object containing all modified values. + */ + public function buildCriteria() + { + $criteria = new Criteria(SchedulerPeer::DATABASE_NAME); + + if ($this->isColumnModified(SchedulerPeer::ID)) { + $criteria->add(SchedulerPeer::ID, $this->id); + } + + if ($this->isColumnModified(SchedulerPeer::TITLE)) { + $criteria->add(SchedulerPeer::TITLE, $this->title); + } + + if ($this->isColumnModified(SchedulerPeer::STARTINGTIME)) { + $criteria->add(SchedulerPeer::STARTINGTIME, $this->startingtime); + } + + if ($this->isColumnModified(SchedulerPeer::ENDINGTIME)) { + $criteria->add(SchedulerPeer::ENDINGTIME, $this->endingtime); + } + + if ($this->isColumnModified(SchedulerPeer::EVERYON)) { + $criteria->add(SchedulerPeer::EVERYON, $this->everyon); + } + + if ($this->isColumnModified(SchedulerPeer::INTERVAL)) { + $criteria->add(SchedulerPeer::INTERVAL, $this->interval); + } + + if ($this->isColumnModified(SchedulerPeer::DESCRIPTION)) { + $criteria->add(SchedulerPeer::DESCRIPTION, $this->description); + } + + if ($this->isColumnModified(SchedulerPeer::EXPRESSION)) { + $criteria->add(SchedulerPeer::EXPRESSION, $this->expression); + } + + if ($this->isColumnModified(SchedulerPeer::BODY)) { + $criteria->add(SchedulerPeer::BODY, $this->body); + } + + if ($this->isColumnModified(SchedulerPeer::TYPE)) { + $criteria->add(SchedulerPeer::TYPE, $this->type); + } + + if ($this->isColumnModified(SchedulerPeer::CATEGORY)) { + $criteria->add(SchedulerPeer::CATEGORY, $this->category); + } + + if ($this->isColumnModified(SchedulerPeer::SYSTEM)) { + $criteria->add(SchedulerPeer::SYSTEM, $this->system); + } + + if ($this->isColumnModified(SchedulerPeer::TIMEZONE)) { + $criteria->add(SchedulerPeer::TIMEZONE, $this->timezone); + } + + if ($this->isColumnModified(SchedulerPeer::ENABLE)) { + $criteria->add(SchedulerPeer::ENABLE, $this->enable); + } + + if ($this->isColumnModified(SchedulerPeer::CREATION_DATE)) { + $criteria->add(SchedulerPeer::CREATION_DATE, $this->creation_date); + } + + if ($this->isColumnModified(SchedulerPeer::LAST_UPDATE)) { + $criteria->add(SchedulerPeer::LAST_UPDATE, $this->last_update); + } + + + return $criteria; + } + + /** + * Builds a Criteria object containing the primary key for this object. + * + * Unlike buildCriteria() this method includes the primary key values regardless + * of whether or not they have been modified. + * + * @return Criteria The Criteria object containing value(s) for primary key(s). + */ + public function buildPkeyCriteria() + { + $criteria = new Criteria(SchedulerPeer::DATABASE_NAME); + + $criteria->add(SchedulerPeer::ID, $this->id); + + return $criteria; + } + + /** + * Returns the primary key for this object (row). + * @return string + */ + public function getPrimaryKey() + { + return $this->getId(); + } + + /** + * Generic method to set the primary key (id column). + * + * @param string $key Primary key. + * @return void + */ + public function setPrimaryKey($key) + { + $this->setId($key); + } + + /** + * Sets contents of passed object to values from current object. + * + * If desired, this method can also make copies of all associated (fkey referrers) + * objects. + * + * @param object $copyObj An object of Scheduler (or compatible) type. + * @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row. + * @throws PropelException + */ + public function copyInto($copyObj, $deepCopy = false) + { + + $copyObj->setTitle($this->title); + + $copyObj->setStartingtime($this->startingtime); + + $copyObj->setEndingtime($this->endingtime); + + $copyObj->setEveryon($this->everyon); + + $copyObj->setInterval($this->interval); + + $copyObj->setDescription($this->description); + + $copyObj->setExpression($this->expression); + + $copyObj->setBody($this->body); + + $copyObj->setType($this->type); + + $copyObj->setCategory($this->category); + + $copyObj->setSystem($this->system); + + $copyObj->setTimezone($this->timezone); + + $copyObj->setEnable($this->enable); + + $copyObj->setCreationDate($this->creation_date); + + $copyObj->setLastUpdate($this->last_update); + + + $copyObj->setNew(true); + + $copyObj->setId(NULL); // this is a pkey column, so set to default value + + } + + /** + * Makes a copy of this object that will be inserted as a new row in table when saved. + * It creates a new object filling in the simple attributes, but skipping any primary + * keys that are defined for the table. + * + * If desired, this method can also make copies of all associated (fkey referrers) + * objects. + * + * @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row. + * @return Scheduler Clone of current object. + * @throws PropelException + */ + public function copy($deepCopy = false) + { + // we use get_class(), because this might be a subclass + $clazz = get_class($this); + $copyObj = new $clazz(); + $this->copyInto($copyObj, $deepCopy); + return $copyObj; + } + + /** + * Returns a peer instance associated with this om. + * + * Since Peer classes are not to have any instance attributes, this method returns the + * same instance for all member of this class. The method could therefore + * be static, but this would prevent one from overriding the behavior. + * + * @return SchedulerPeer + */ + public function getPeer() + { + if (self::$peer === null) { + self::$peer = new SchedulerPeer(); + } + return self::$peer; + } +} + diff --git a/workflow/engine/classes/model/om/BaseSchedulerPeer.php b/workflow/engine/classes/model/om/BaseSchedulerPeer.php new file mode 100644 index 000000000..e723f4ccc --- /dev/null +++ b/workflow/engine/classes/model/om/BaseSchedulerPeer.php @@ -0,0 +1,644 @@ + array ('Id', 'Title', 'Startingtime', 'Endingtime', 'Everyon', 'Interval', 'Description', 'Expression', 'Body', 'Type', 'Category', 'System', 'Timezone', 'Enable', 'CreationDate', 'LastUpdate', ), + BasePeer::TYPE_COLNAME => array (SchedulerPeer::ID, SchedulerPeer::TITLE, SchedulerPeer::STARTINGTIME, SchedulerPeer::ENDINGTIME, SchedulerPeer::EVERYON, SchedulerPeer::INTERVAL, SchedulerPeer::DESCRIPTION, SchedulerPeer::EXPRESSION, SchedulerPeer::BODY, SchedulerPeer::TYPE, SchedulerPeer::CATEGORY, SchedulerPeer::SYSTEM, SchedulerPeer::TIMEZONE, SchedulerPeer::ENABLE, SchedulerPeer::CREATION_DATE, SchedulerPeer::LAST_UPDATE, ), + BasePeer::TYPE_FIELDNAME => array ('id', 'title', 'startingTime', 'endingTime', 'everyOn', 'interval', 'description', 'expression', 'body', 'type', 'category', 'system', 'timezone', 'enable', 'creation_date', 'last_update', ), + BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ) + ); + + /** + * holds an array of keys for quick access to the fieldnames array + * + * first dimension keys are the type constants + * e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0 + */ + private static $fieldKeys = array ( + BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'Title' => 1, 'Startingtime' => 2, 'Endingtime' => 3, 'Everyon' => 4, 'Interval' => 5, 'Description' => 6, 'Expression' => 7, 'Body' => 8, 'Type' => 9, 'Category' => 10, 'System' => 11, 'Timezone' => 12, 'Enable' => 13, 'CreationDate' => 14, 'LastUpdate' => 15, ), + BasePeer::TYPE_COLNAME => array (SchedulerPeer::ID => 0, SchedulerPeer::TITLE => 1, SchedulerPeer::STARTINGTIME => 2, SchedulerPeer::ENDINGTIME => 3, SchedulerPeer::EVERYON => 4, SchedulerPeer::INTERVAL => 5, SchedulerPeer::DESCRIPTION => 6, SchedulerPeer::EXPRESSION => 7, SchedulerPeer::BODY => 8, SchedulerPeer::TYPE => 9, SchedulerPeer::CATEGORY => 10, SchedulerPeer::SYSTEM => 11, SchedulerPeer::TIMEZONE => 12, SchedulerPeer::ENABLE => 13, SchedulerPeer::CREATION_DATE => 14, SchedulerPeer::LAST_UPDATE => 15, ), + BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'title' => 1, 'startingTime' => 2, 'endingTime' => 3, 'everyOn' => 4, 'interval' => 5, 'description' => 6, 'expression' => 7, 'body' => 8, 'type' => 9, 'category' => 10, 'system' => 11, 'timezone' => 12, 'enable' => 13, 'creation_date' => 14, 'last_update' => 15, ), + BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, ) + ); + + /** + * @return MapBuilder the map builder for this peer + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function getMapBuilder() + { + include_once 'classes/model/map/SchedulerMapBuilder.php'; + return BasePeer::getMapBuilder('classes.model.map.SchedulerMapBuilder'); + } + /** + * Gets a map (hash) of PHP names to DB column names. + * + * @return array The PHP to DB name map for this peer + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + * @deprecated Use the getFieldNames() and translateFieldName() methods instead of this. + */ + public static function getPhpNameMap() + { + if (self::$phpNameMap === null) { + $map = SchedulerPeer::getTableMap(); + $columns = $map->getColumns(); + $nameMap = array(); + foreach ($columns as $column) { + $nameMap[$column->getPhpName()] = $column->getColumnName(); + } + self::$phpNameMap = $nameMap; + } + return self::$phpNameMap; + } + /** + * Translates a fieldname to another type + * + * @param string $name field name + * @param string $fromType One of the class type constants TYPE_PHPNAME, + * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM + * @param string $toType One of the class type constants + * @return string translated name of the field. + */ + static public function translateFieldName($name, $fromType, $toType) + { + $toNames = self::getFieldNames($toType); + $key = isset(self::$fieldKeys[$fromType][$name]) ? self::$fieldKeys[$fromType][$name] : null; + if ($key === null) { + throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(self::$fieldKeys[$fromType], true)); + } + return $toNames[$key]; + } + + /** + * Returns an array of of field names. + * + * @param string $type The type of fieldnames to return: + * One of the class type constants TYPE_PHPNAME, + * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM + * @return array A list of field names + */ + + static public function getFieldNames($type = BasePeer::TYPE_PHPNAME) + { + if (!array_key_exists($type, self::$fieldNames)) { + throw new PropelException('Method getFieldNames() expects the parameter $type to be one of the class constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM. ' . $type . ' was given.'); + } + return self::$fieldNames[$type]; + } + + /** + * Convenience method which changes table.column to alias.column. + * + * Using this method you can maintain SQL abstraction while using column aliases. + * + * $c->addAlias("alias1", TablePeer::TABLE_NAME); + * $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN); + * + * @param string $alias The alias for the current table. + * @param string $column The column name for current table. (i.e. SchedulerPeer::COLUMN_NAME). + * @return string + */ + public static function alias($alias, $column) + { + return str_replace(SchedulerPeer::TABLE_NAME.'.', $alias.'.', $column); + } + + /** + * Add all the columns needed to create a new object. + * + * Note: any columns that were marked with lazyLoad="true" in the + * XML schema will not be added to the select list and only loaded + * on demand. + * + * @param criteria object containing the columns to add. + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function addSelectColumns(Criteria $criteria) + { + + $criteria->addSelectColumn(SchedulerPeer::ID); + + $criteria->addSelectColumn(SchedulerPeer::TITLE); + + $criteria->addSelectColumn(SchedulerPeer::STARTINGTIME); + + $criteria->addSelectColumn(SchedulerPeer::ENDINGTIME); + + $criteria->addSelectColumn(SchedulerPeer::EVERYON); + + $criteria->addSelectColumn(SchedulerPeer::INTERVAL); + + $criteria->addSelectColumn(SchedulerPeer::DESCRIPTION); + + $criteria->addSelectColumn(SchedulerPeer::EXPRESSION); + + $criteria->addSelectColumn(SchedulerPeer::BODY); + + $criteria->addSelectColumn(SchedulerPeer::TYPE); + + $criteria->addSelectColumn(SchedulerPeer::CATEGORY); + + $criteria->addSelectColumn(SchedulerPeer::SYSTEM); + + $criteria->addSelectColumn(SchedulerPeer::TIMEZONE); + + $criteria->addSelectColumn(SchedulerPeer::ENABLE); + + $criteria->addSelectColumn(SchedulerPeer::CREATION_DATE); + + $criteria->addSelectColumn(SchedulerPeer::LAST_UPDATE); + + } + + const COUNT = 'COUNT(SCHEDULER.ID)'; + const COUNT_DISTINCT = 'COUNT(DISTINCT SCHEDULER.ID)'; + + /** + * Returns the number of rows matching criteria. + * + * @param Criteria $criteria + * @param boolean $distinct Whether to select only distinct columns (You can also set DISTINCT modifier in Criteria). + * @param Connection $con + * @return int Number of matching rows. + */ + public static function doCount(Criteria $criteria, $distinct = false, $con = null) + { + // we're going to modify criteria, so copy it first + $criteria = clone $criteria; + + // clear out anything that might confuse the ORDER BY clause + $criteria->clearSelectColumns()->clearOrderByColumns(); + if ($distinct || in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) { + $criteria->addSelectColumn(SchedulerPeer::COUNT_DISTINCT); + } else { + $criteria->addSelectColumn(SchedulerPeer::COUNT); + } + + // just in case we're grouping: add those columns to the select statement + foreach ($criteria->getGroupByColumns() as $column) { + $criteria->addSelectColumn($column); + } + + $rs = SchedulerPeer::doSelectRS($criteria, $con); + if ($rs->next()) { + return $rs->getInt(1); + } else { + // no rows returned; we infer that means 0 matches. + return 0; + } + } + /** + * Method to select one object from the DB. + * + * @param Criteria $criteria object used to create the SELECT statement. + * @param Connection $con + * @return Scheduler + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function doSelectOne(Criteria $criteria, $con = null) + { + $critcopy = clone $criteria; + $critcopy->setLimit(1); + $objects = SchedulerPeer::doSelect($critcopy, $con); + if ($objects) { + return $objects[0]; + } + return null; + } + /** + * Method to do selects. + * + * @param Criteria $criteria The Criteria object used to build the SELECT statement. + * @param Connection $con + * @return array Array of selected Objects + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function doSelect(Criteria $criteria, $con = null) + { + return SchedulerPeer::populateObjects(SchedulerPeer::doSelectRS($criteria, $con)); + } + /** + * Prepares the Criteria object and uses the parent doSelect() + * method to get a ResultSet. + * + * Use this method directly if you want to just get the resultset + * (instead of an array of objects). + * + * @param Criteria $criteria The Criteria object used to build the SELECT statement. + * @param Connection $con the connection to use + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + * @return ResultSet The resultset object with numerically-indexed fields. + * @see BasePeer::doSelect() + */ + public static function doSelectRS(Criteria $criteria, $con = null) + { + if ($con === null) { + $con = Propel::getConnection(self::DATABASE_NAME); + } + + if (!$criteria->getSelectColumns()) { + $criteria = clone $criteria; + SchedulerPeer::addSelectColumns($criteria); + } + + // Set the correct dbName + $criteria->setDbName(self::DATABASE_NAME); + + // BasePeer returns a Creole ResultSet, set to return + // rows indexed numerically. + return BasePeer::doSelect($criteria, $con); + } + /** + * The returned array will contain objects of the default type or + * objects that inherit from the default. + * + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function populateObjects(ResultSet $rs) + { + $results = array(); + + // set the class once to avoid overhead in the loop + $cls = SchedulerPeer::getOMClass(); + $cls = Propel::import($cls); + // populate the object(s) + while ($rs->next()) { + + $obj = new $cls(); + $obj->hydrate($rs); + $results[] = $obj; + + } + return $results; + } + /** + * Returns the TableMap related to this peer. + * This method is not needed for general use but a specific application could have a need. + * @return TableMap + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function getTableMap() + { + return Propel::getDatabaseMap(self::DATABASE_NAME)->getTable(self::TABLE_NAME); + } + + /** + * The class that the Peer will make instances of. + * + * This uses a dot-path notation which is tranalted into a path + * relative to a location on the PHP include_path. + * (e.g. path.to.MyClass -> 'path/to/MyClass.php') + * + * @return string path.to.ClassName + */ + public static function getOMClass() + { + return SchedulerPeer::CLASS_DEFAULT; + } + + /** + * Method perform an INSERT on the database, given a Scheduler or Criteria object. + * + * @param mixed $values Criteria or Scheduler object containing data that is used to create the INSERT statement. + * @param Connection $con the connection to use + * @return mixed The new primary key. + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function doInsert($values, $con = null) + { + if ($con === null) { + $con = Propel::getConnection(self::DATABASE_NAME); + } + + if ($values instanceof Criteria) { + $criteria = clone $values; // rename for clarity + } else { + $criteria = $values->buildCriteria(); // build Criteria from Scheduler object + } + + //$criteria->remove(SchedulerPeer::ID); // remove pkey col since this table uses auto-increment + + + // Set the correct dbName + $criteria->setDbName(self::DATABASE_NAME); + + try { + // use transaction because $criteria could contain info + // for more than one table (I guess, conceivably) + $con->begin(); + $pk = BasePeer::doInsert($criteria, $con); + $con->commit(); + } catch (PropelException $e) { + $con->rollback(); + throw $e; + } + + return $pk; + } + + /** + * Method perform an UPDATE on the database, given a Scheduler or Criteria object. + * + * @param mixed $values Criteria or Scheduler object containing data create the UPDATE statement. + * @param Connection $con The connection to use (specify Connection exert more control over transactions). + * @return int The number of affected rows (if supported by underlying database driver). + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function doUpdate($values, $con = null) + { + if ($con === null) { + $con = Propel::getConnection(self::DATABASE_NAME); + } + + $selectCriteria = new Criteria(self::DATABASE_NAME); + + if ($values instanceof Criteria) { + $criteria = clone $values; // rename for clarity + + $comparison = $criteria->getComparison(SchedulerPeer::ID); + $selectCriteria->add(SchedulerPeer::ID, $criteria->remove(SchedulerPeer::ID), $comparison); + + } else { + $criteria = $values->buildCriteria(); // gets full criteria + $selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s) + } + + // set the correct dbName + $criteria->setDbName(self::DATABASE_NAME); + + return BasePeer::doUpdate($selectCriteria, $criteria, $con); + } + + /** + * Method to DELETE all rows from the SCHEDULER table. + * + * @return int The number of affected rows (if supported by underlying database driver). + */ + public static function doDeleteAll($con = null) + { + if ($con === null) { + $con = Propel::getConnection(self::DATABASE_NAME); + } + $affectedRows = 0; // initialize var to track total num of affected rows + try { + // use transaction because $criteria could contain info + // for more than one table or we could emulating ON DELETE CASCADE, etc. + $con->begin(); + $affectedRows += BasePeer::doDeleteAll(SchedulerPeer::TABLE_NAME, $con); + $con->commit(); + return $affectedRows; + } catch (PropelException $e) { + $con->rollback(); + throw $e; + } + } + + /** + * Method perform a DELETE on the database, given a Scheduler or Criteria object OR a primary key value. + * + * @param mixed $values Criteria or Scheduler object or primary key or array of primary keys + * which is used to create the DELETE statement + * @param Connection $con the connection to use + * @return int The number of affected rows (if supported by underlying database driver). + * This includes CASCADE-related rows + * if supported by native driver or if emulated using Propel. + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function doDelete($values, $con = null) + { + if ($con === null) { + $con = Propel::getConnection(SchedulerPeer::DATABASE_NAME); + } + + if ($values instanceof Criteria) { + $criteria = clone $values; // rename for clarity + } elseif ($values instanceof Scheduler) { + + $criteria = $values->buildPkeyCriteria(); + } else { + // it must be the primary key + $criteria = new Criteria(self::DATABASE_NAME); + $criteria->add(SchedulerPeer::ID, (array) $values, Criteria::IN); + } + + // Set the correct dbName + $criteria->setDbName(self::DATABASE_NAME); + + $affectedRows = 0; // initialize var to track total num of affected rows + + try { + // use transaction because $criteria could contain info + // for more than one table or we could emulating ON DELETE CASCADE, etc. + $con->begin(); + + $affectedRows += BasePeer::doDelete($criteria, $con); + $con->commit(); + return $affectedRows; + } catch (PropelException $e) { + $con->rollback(); + throw $e; + } + } + + /** + * Validates all modified columns of given Scheduler object. + * If parameter $columns is either a single column name or an array of column names + * than only those columns are validated. + * + * NOTICE: This does not apply to primary or foreign keys for now. + * + * @param Scheduler $obj The object to validate. + * @param mixed $cols Column name or array of column names. + * + * @return mixed TRUE if all columns are valid or the error message of the first invalid column. + */ + public static function doValidate(Scheduler $obj, $cols = null) + { + $columns = array(); + + if ($cols) { + $dbMap = Propel::getDatabaseMap(SchedulerPeer::DATABASE_NAME); + $tableMap = $dbMap->getTable(SchedulerPeer::TABLE_NAME); + + if (! is_array($cols)) { + $cols = array($cols); + } + + foreach ($cols as $colName) { + if ($tableMap->containsColumn($colName)) { + $get = 'get' . $tableMap->getColumn($colName)->getPhpName(); + $columns[$colName] = $obj->$get(); + } + } + } else { + + } + + return BasePeer::doValidate(SchedulerPeer::DATABASE_NAME, SchedulerPeer::TABLE_NAME, $columns); + } + + /** + * Retrieve a single object by pkey. + * + * @param mixed $pk the primary key. + * @param Connection $con the connection to use + * @return Scheduler + */ + public static function retrieveByPK($pk, $con = null) + { + if ($con === null) { + $con = Propel::getConnection(self::DATABASE_NAME); + } + + $criteria = new Criteria(SchedulerPeer::DATABASE_NAME); + + $criteria->add(SchedulerPeer::ID, $pk); + + + $v = SchedulerPeer::doSelect($criteria, $con); + + return !empty($v) > 0 ? $v[0] : null; + } + + /** + * Retrieve multiple objects by pkey. + * + * @param array $pks List of primary keys + * @param Connection $con the connection to use + * @throws PropelException Any exceptions caught during processing will be + * rethrown wrapped into a PropelException. + */ + public static function retrieveByPKs($pks, $con = null) + { + if ($con === null) { + $con = Propel::getConnection(self::DATABASE_NAME); + } + + $objs = null; + if (empty($pks)) { + $objs = array(); + } else { + $criteria = new Criteria(); + $criteria->add(SchedulerPeer::ID, $pks, Criteria::IN); + $objs = SchedulerPeer::doSelect($criteria, $con); + } + return $objs; + } +} + + +// static code to register the map builder for this Peer with the main Propel class +if (Propel::isInit()) { + // the MapBuilder classes register themselves with Propel during initialization + // so we need to load them here. + try { + BaseSchedulerPeer::getMapBuilder(); + } catch (Exception $e) { + Propel::log('Could not initialize Peer: ' . $e->getMessage(), Propel::LOG_ERR); + } +} else { + // even if Propel is not yet initialized, the map builder class can be registered + // now and then it will be loaded when Propel initializes. + require_once 'classes/model/map/SchedulerMapBuilder.php'; + Propel::registerMapBuilder('classes.model.map.SchedulerMapBuilder'); +} + diff --git a/workflow/engine/config/schema.xml b/workflow/engine/config/schema.xml index 9e13e3a09..8a8113d0c 100755 --- a/workflow/engine/config/schema.xml +++ b/workflow/engine/config/schema.xml @@ -6033,7 +6033,9 @@ - } + + + @@ -6042,5 +6044,7 @@ + +
        diff --git a/workflow/engine/data/mysql/schema.sql b/workflow/engine/data/mysql/schema.sql index 4946fb777..c26b2f725 100644 --- a/workflow/engine/data/mysql/schema.sql +++ b/workflow/engine/data/mysql/schema.sql @@ -3325,5 +3325,32 @@ CREATE TABLE `JOBS_FAILED` `failed_at` DATETIME NOT NULL, PRIMARY KEY (`id`) )ENGINE=InnoDB DEFAULT CHARSET='utf8'; +#----------------------------------------------------------------------------- +#-- SCHEDULER +#----------------------------------------------------------------------------- + +DROP TABLE IF EXISTS `SCHEDULER`; + + +CREATE TABLE `SCHEDULER` +( + `id` BIGINT(20) NOT NULL AUTO_INCREMENT, + `title` VARCHAR(255), + `startingTime` VARCHAR(100), + `endingTime` VARCHAR(100), + `everyOn` VARCHAR(255), + `interval` VARCHAR(10), + `description` VARCHAR(255), + `expression` VARCHAR(255), + `body` VARCHAR(255), + `type` VARCHAR(255), + `category` VARCHAR(255), + `system` TINYINT(3), + `timezone` VARCHAR(255), + `enable` TINYINT(3), + `creation_date` DATETIME, + `last_update` DATETIME, + PRIMARY KEY (`id`) +)ENGINE=InnoDB DEFAULT CHARSET='utf8'; # This restores the fkey checks, after having unset them earlier SET FOREIGN_KEY_CHECKS = 1; diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php index d3717c64c..44f8125c4 100755 --- a/workflow/engine/methods/scheduler/index.php +++ b/workflow/engine/methods/scheduler/index.php @@ -14,12 +14,15 @@ try { "var timezoneArray = " . G::json_encode($arrayTimeZoneId) . ";\n" . "\n"; echo($js); + } $js = "" . + "\n". "\n"; echo($js); diff --git a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php index 59203a654..3e96b848d 100755 --- a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php +++ b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php @@ -17,7 +17,9 @@ use Illuminate\Console\Scheduling\Schedule; class TaskScheduler extends Model { protected $table = 'SCHEDULER'; - public $timestamps = false; + public $timestamps = true; + const CREATED_AT = 'creation_date'; + const UPDATED_AT = 'last_update'; public function isDue(){ $date = Carbon::now(); From 7dadafab110ef864feeddc60124569d23ea64399 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 9 Jun 2020 14:28:16 +0000 Subject: [PATCH 09/39] fix scheduler in intervals --- app/Console/Commands/ScheduleRunCommand.php | 35 +------- .../BusinessModel/TaskSchedulerBM.php | 79 +++++++++++-------- .../src/ProcessMaker/Model/TaskScheduler.php | 5 -- 3 files changed, 50 insertions(+), 69 deletions(-) diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php index aed40ed22..234e08521 100755 --- a/app/Console/Commands/ScheduleRunCommand.php +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -6,7 +6,7 @@ use Maveriks\WebApplication; use \Illuminate\Support\Carbon; use Illuminate\Console\Scheduling\ScheduleRunCommand as BaseCommand; use Illuminate\Support\Facades\Log; -use ProcessMaker\Model\TaskScheduler; +use ProcessMaker\BusinessModel\TaskSchedulerBM; class ScheduleRunCommand extends BaseCommand { @@ -45,38 +45,7 @@ class ScheduleRunCommand extends BaseCommand $webApplication->setRootDir($this->option('processmakerPath')); $webApplication->loadEnvironment($workspace, false); } - TaskScheduler::all()->each(function ($p) use ($that) { - $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; - $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; - $timezone = isset($p->timezone) && $p->timezone != ""? $p->timezone: date_default_timezone_get(); - $that->schedule->exec($p->body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { - $now = Carbon::now(); - $result = false; - $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); - if (isset($p->everyOn)) { - switch ($p->interval) { - case "day": - $interval = $now->diffInDays($datework); - $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); - break; - case "week": - $interval = $now->diffInDays($datework); - $result = ($interval !== 0 && $interval % (intval($p->everyOn) * 7) == 0); - break; - case "month": - $interval = $now->diffInMonths($datework); - $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); - break; - case "year": - $interval = $now->diffInYears($datework); - $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); - break; - } - return $result; - } - return true; - }); - }); + TaskSchedulerBM::executeScheduler($this); parent::handle(); } } diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index e5563c3cc..4c4d8f2cf 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -11,14 +11,47 @@ use ProcessMaker\Core\System; class TaskSchedulerBM { - public function executeTasks(){ - TaskScheduler::all()->each(function($p){ - if($p->isDue()){ - Log::info("EXECUTE::" . $p->title . " -->" . $p->expression); - } - }); + /** + * Execute the records with Laravel Task Scheduler + */ + public static function executeScheduler($that){ + TaskScheduler::all()->each(function ($p) use ($that) { + $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; + $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; + $timezone = isset($p->timezone) && $p->timezone != ""? $p->timezone: date_default_timezone_get(); + $that->schedule->exec($p->body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { + $now = Carbon::now(); + $result = false; + $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); + if (isset($p->everyOn)) { + switch ($p->interval) { + case "day": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); + break; + case "week": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && $interval % (intval($p->everyOn) * 7) == 0); + break; + case "month": + $interval = $now->diffInMonths($datework); + $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); + break; + case "year": + $interval = $now->diffInYears($datework); + $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); + break; + } + return $result; + } + return true; + }); + }); } + /** + * Return the records in Schedule Table by category + */ public static function getSchedule($category){ $tasks = TaskScheduler::all(); $count = $tasks->count(); @@ -32,23 +65,23 @@ class TaskSchedulerBM return TaskScheduler::where('category', $category)->get(); } } - + /** + * Save the record Schedule in Schedule Table + */ public static function saveSchedule(array $request_data){ $task = TaskScheduler::find($request_data['id']); - if(isset($request_data['expression'])){ - $task->expression = $request_data['expression']; - } if(isset($request_data['enable'])){ $task->enable = $request_data['enable']; } - if(isset($request_data['startingTime'])){ + + if(isset($request_data['expression'])){ + $task->expression = $request_data['expression']; $task->startingTime = $request_data['startingTime']; - } - if(isset($request_data['endingTime'])){ $task->endingTime = $request_data['endingTime']; - } - if(isset($request_data['timezone'])){ $task->timezone = $request_data['timezone']; + $task->everyOn = $request_data['everyOn']; + $task->interval = $request_data['interval']; + } $task->save(); return array(); @@ -206,22 +239,6 @@ class TaskSchedulerBM "startingTime" => "0:00", "endingTime" => "23:59", "expression" => "* * */1 * *", - "description" => "ID_TASK_SCHEDULER_LDAP_DESC" - ), - array( - "title" => "ID_TASK_SCHEDULER_SEND_NOT", - "enable" => "1", - "service" => "", - "category" => "emails_notifications", - "file" => "workflow/engine/bin/sendnotificationscron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "*/5 * * * *", - "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" - ), - array( - "title" => "ID_TASK_SCHEDULER_ACTION_EMAIL", - "enable" => "1", "service" => "", "category" => "emails_notifications", "file" => "workflow/engine/bin/actionsByEmailEmailResponse.php", diff --git a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php index 3e96b848d..678c357f4 100755 --- a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php +++ b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php @@ -20,9 +20,4 @@ class TaskScheduler extends Model public $timestamps = true; const CREATED_AT = 'creation_date'; const UPDATED_AT = 'last_update'; - - public function isDue(){ - $date = Carbon::now(); - return CronExpression::factory($this->expression)->isDue($date->toDateTimeString()); - } } From 1e0c55512a649929211ceca5e3f85c2c2c67c78a Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 9 Jun 2020 14:45:12 +0000 Subject: [PATCH 10/39] schedule is protected in others classes --- app/Console/Commands/ScheduleRunCommand.php | 34 ++++++++++++++++- .../BusinessModel/TaskSchedulerBM.php | 38 ------------------- 2 files changed, 33 insertions(+), 39 deletions(-) diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php index 234e08521..31abf4e53 100755 --- a/app/Console/Commands/ScheduleRunCommand.php +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -7,6 +7,7 @@ use \Illuminate\Support\Carbon; use Illuminate\Console\Scheduling\ScheduleRunCommand as BaseCommand; use Illuminate\Support\Facades\Log; use ProcessMaker\BusinessModel\TaskSchedulerBM; +use ProcessMaker\Model\TaskScheduler; class ScheduleRunCommand extends BaseCommand { @@ -45,7 +46,38 @@ class ScheduleRunCommand extends BaseCommand $webApplication->setRootDir($this->option('processmakerPath')); $webApplication->loadEnvironment($workspace, false); } - TaskSchedulerBM::executeScheduler($this); + TaskScheduler::all()->each(function ($p) use ($that) { + $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; + $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; + $timezone = isset($p->timezone) && $p->timezone != ""? $p->timezone: date_default_timezone_get(); + $that->schedule->exec($p->body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { + $now = Carbon::now(); + $result = false; + $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); + if (isset($p->everyOn)) { + switch ($p->interval) { + case "day": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); + break; + case "week": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && $interval % (intval($p->everyOn) * 7) == 0); + break; + case "month": + $interval = $now->diffInMonths($datework); + $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); + break; + case "year": + $interval = $now->diffInYears($datework); + $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); + break; + } + return $result; + } + return true; + }); + }); parent::handle(); } } diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 4c4d8f2cf..06f477fb6 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -11,44 +11,6 @@ use ProcessMaker\Core\System; class TaskSchedulerBM { - /** - * Execute the records with Laravel Task Scheduler - */ - public static function executeScheduler($that){ - TaskScheduler::all()->each(function ($p) use ($that) { - $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; - $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; - $timezone = isset($p->timezone) && $p->timezone != ""? $p->timezone: date_default_timezone_get(); - $that->schedule->exec($p->body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { - $now = Carbon::now(); - $result = false; - $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); - if (isset($p->everyOn)) { - switch ($p->interval) { - case "day": - $interval = $now->diffInDays($datework); - $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); - break; - case "week": - $interval = $now->diffInDays($datework); - $result = ($interval !== 0 && $interval % (intval($p->everyOn) * 7) == 0); - break; - case "month": - $interval = $now->diffInMonths($datework); - $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); - break; - case "year": - $interval = $now->diffInYears($datework); - $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); - break; - } - return $result; - } - return true; - }); - }); - } - /** * Return the records in Schedule Table by category */ From 6c666a91d00618089de44ea022e253951bfd94de Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 9 Jun 2020 20:57:11 +0000 Subject: [PATCH 11/39] add translations for lexical description in FrontEnd vue --- .../engine/content/languages/translation.en | 4 +- .../translations/english/processmaker.en.po | 87 ++++++++++++++++++- workflow/engine/data/mysql/insert.sql | 14 +++ workflow/engine/methods/scheduler/index.php | 4 +- 4 files changed, 105 insertions(+), 4 deletions(-) diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index 00617d1ca..8bb2081a8 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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. +$translation =unserialize('a:4542:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can\'t create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can\'t create folder
        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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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: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: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: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: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:8:"ID_HOURS";s:5:"Hours";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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:18:"Calculate app data";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: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: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:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";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:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";s:30:"ID_TASK_SCHEDULER_REPORT_USERS";s:15:"Report by users";s:32:"ID_TASK_SCHEDULER_REPORT_PROCESS";s:17:"Report by process";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:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:6:"ID_TUE";s:3:"Tue";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: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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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: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: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: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: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:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen 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: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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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:18:"Calculate app data";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: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: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:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";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:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";s:30:"ID_TASK_SCHEDULER_REPORT_USERS";s:15:"Report by users";s:32:"ID_TASK_SCHEDULER_REPORT_PROCESS";s:17:"Report by process";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:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 6d2539880..98ab945c8 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -51716,4 +51716,89 @@ msgstr "ProcessMaker events" # LABEL/ID_TASK_SCHEDULER_PM_SCHEDULER #: LABEL/ID_TASK_SCHEDULER_PM_SCHEDULER msgid "ProcessMaker scheduler" -msgstr "ProcessMaker scheduler" \ No newline at end of file +msgstr "ProcessMaker scheduler" + +# TRANSLATION +# LABEL/ID_YEARS +#: LABEL/ID_YEARS +msgid "Years" +msgstr "Years" + +# TRANSLATION +# LABEL/ID_MONTHS +#: LABEL/ID_MONTHS +msgid "Months" +msgstr "Months" + +# TRANSLATION +# LABEL/ID_WEEK +#: LABEL/ID_WEEK +msgid "Week" +msgstr "Week" + +# TRANSLATION +# LABEL/ID_WEEKS +#: LABEL/ID_WEEKS +msgid "Weeks" +msgstr "Weeks" + +# TRANSLATION +# LABEL/ID_EVERY_MINUTE +#: LABEL/ID_EVERY_MINUTE +msgid "Every minute" +msgstr "Every minute" + +# TRANSLATION +# LABEL/ID_EVERY_FIVE_MINUTES +#: LABEL/ID_EVERY_FIVE_MINUTES +msgid "Every five minutes" +msgstr "Every five minutes" + +# TRANSLATION +# LABEL/ID_EVERY_TEN_MINUTES +#: LABEL/ID_EVERY_TEN_MINUTES +msgid "Every ten minutes" +msgstr "Every ten minutes" + +# TRANSLATION +# LABEL/ID_EVERY_FIFTEEN_MINUTES +#: LABEL/ID_EVERY_FIFTEEN_MINUTES +msgid "Every fifteen minutes" +msgstr "Every fifteen minutes" + +# TRANSLATION +# LABEL/ID_EVERY_THIRTY_MINUTES +#: LABEL/ID_EVERY_THIRTY_MINUTES +msgid "Every thirty minutes" +msgstr "Every thirty minutes" + +# TRANSLATION +# LABEL/ID_HOURLY +#: LABEL/ID_HOURLY +msgid "Hourly" +msgstr "Hourly" + +# TRANSLATION +# LABEL/ID_HOURLY_AT +#: LABEL/ID_HOURLY_AT +msgid "Hourly at" +msgstr "Hourly at" + +# TRANSLATION +# LABEL/ID_AT_TILL +#: LABEL/ID_AT_TILL +msgid "at ${0} Till ${1}" +msgstr "at ${0} Till ${1}" + +# TRANSLATION +# LABEL/ID_TIME_IN +#: LABEL/ID_TIME_IN +msgid "time in ${0}" +msgstr "time in ${0}" + +# TRANSLATION +# LABEL/ID_EVERY +#: LABEL/ID_EVERY +msgid "every ${0} ${1}" +msgstr "every ${0} ${1}" + diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index ac49447ad..0051bedde 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -57235,6 +57235,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_ATTRIBUTES','en','Attributes','2014-01-15') , ( 'LABEL','ID_ATTRIBUTE_HAS_INVALID_ELEMENT_KEY','en','The attribute {0}, has an invalid element (incorrect keys).','2014-05-20') , ( 'LABEL','ID_AT_RISK','en','At Risk','2014-01-15') , +( 'LABEL','ID_AT_TILL','en','at ${0} Till ${1}','2014-01-15') , ( 'LABEL','ID_AUDITLOG_DISPLAY','en','Audit Log','2014-09-19') , ( 'LABEL','ID_AUDIT_LOG_ACTIONS','en','Audit Log Actions','2014-09-30') , ( 'LABEL','ID_AUDIT_LOG_DETAILS_1','en','When this option is enabled, all changes made in the Admin tab are registered in a log.','2017-02-21') , @@ -58138,6 +58139,12 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_EVENT_NOT_IS_TIMER_EVENT','en','The event with {0}: "{1}" not is "Timer event".','2015-06-26') , ( 'LABEL','ID_EVENT_REMOVE_SELECTED','en','Remove selected','2014-02-12') , ( 'LABEL','ID_EVENT_TIMER','en','Event Timer','2014-01-15') , +( 'LABEL','ID_EVERY','en','every ${0} ${1}','2014-01-15') , +( 'LABEL','ID_EVERY_MINUTE','en','Event minute','2014-01-15') , +( 'LABEL','ID_EVERY_FIVE_MINUTES','en','Event five minutes','2014-01-15') , +( 'LABEL','ID_EVERY_TEN_MINUTES','en','Event ten minutes','2014-01-15') , +( 'LABEL','ID_EVERY_FIFTEEN_MINUTES','en','Event fifteen minutes','2014-01-15') , +( 'LABEL','ID_EVERY_THIRTY_MINUTES','en','Event thirty minutes','2014-01-15') , ( 'LABEL','ID_EXCEPTION','en','Exception','2014-01-15') , ( 'LABEL','ID_EXCEPTION_LOG_INTERFAZ','en','An internal error occurred #{0}. Please contact your system administrator for more information.','2016-07-27') , ( 'LABEL','ID_EXECUTED','en','executed','2014-01-15') , @@ -58404,6 +58411,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_HOST_NAME_LABEL','en','Host Name','2014-01-15') , ( 'LABEL','ID_HOST_UNREACHABLE','en','Destination Host Unreachable','2015-09-18') , ( 'LABEL','ID_HOUR','en','Hour','2014-01-15') , +( 'LABEL','ID_HOURLY','en','Hourly','2014-01-15') , +( 'LABEL','ID_HOURLY_AT','en','Hourly at','2014-01-15') , ( 'LABEL','ID_HOURS','en','Hours','2014-01-15') , ( 'LABEL','ID_HOUR_HOURS','en','Hour(s)','2014-10-30') , ( 'LABEL','ID_HTML','en','HTML','2014-01-15') , @@ -59999,6 +60008,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_MON','en','Mon','2014-01-15') , ( 'LABEL','ID_MONITORED_FOLDER','en','Monitored Folder','2014-01-15') , ( 'LABEL','ID_MONTH','en','Month','2015-03-09') , +( 'LABEL','ID_MONTHS','en','Months','2015-03-09') , ( 'LABEL','ID_MONTH_1','en','January','2014-01-15') ; INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES @@ -61156,6 +61166,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_TIMER_EVENT_DOES_NOT_IS_REGISTERED','en','The Timer-Event with {0}: "{1}" does not is registered.','2015-06-26') , ( 'LABEL','ID_TIME_EXIST_IN_LIST','en','The day and time exist in the list','2014-01-15') , ( 'LABEL','ID_TIME_HOURS','en','Time (Hours)','2015-03-30') , +( 'LABEL','ID_TIME_IN','en','time in ${0}','2015-03-30') , ( 'LABEL','ID_TIME_LABEL','en','Time','2014-01-15') , ( 'LABEL','ID_TIME_NEXT_RUN','en','Time Next Run','2014-01-15') , ( 'LABEL','ID_TIME_REQUIRED','en','Time is required','2014-01-15') , @@ -61496,6 +61507,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_WEB_SERVICES','en','Web Services Test','2014-01-15') , ( 'LABEL','ID_WEB_SERVICE_PASSWORD','en','Web Service Password','2014-01-15') , ( 'LABEL','ID_WEB_SERVICE_USER','en','Web Service User','2014-01-15') , +( 'LABEL','ID_WEEK','en','Week','2014-01-15') , +( 'LABEL','ID_WEEKS','en','Week','2014-01-15') , ( 'LABEL','ID_WEEKDAY_0','en','Sunday','2014-01-15') , ( 'LABEL','ID_WEEKDAY_1','en','Monday','2014-01-15') , ( 'LABEL','ID_WEEKDAY_2','en','Tuesday','2014-01-15') , @@ -61541,6 +61554,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_XPDL_FILENAME','en','Download XPDL File:','2014-01-15') , ( 'LABEL','ID_XPDL_IMPORT','en','Import XPDL','2014-01-15') , ( 'LABEL','ID_YEAR','en','Year','2015-03-30') , +( 'LABEL','ID_YEARS','en','Years','2015-03-30') , ( 'LABEL','ID_YELLOW_ENDS_IN','en','Yellow Ends In','2014-01-15') , ( 'LABEL','ID_YELLOW_STARTS_IN','en','Yellow Starts In','2014-01-15') , ( 'LABEL','ID_YES','en','Yes','2014-01-15') , diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php index 44f8125c4..6a47773ad 100755 --- a/workflow/engine/methods/scheduler/index.php +++ b/workflow/engine/methods/scheduler/index.php @@ -1,4 +1,5 @@ \n". + "\n". "\n"; echo($js); From 250ce984ee0d4378e118b439a0419515841d15c2 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 9 Jun 2020 22:45:42 +0000 Subject: [PATCH 13/39] update insertsql tranlation --- workflow/engine/data/mysql/insert.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 1883e48b8..e61e8e43d 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61508,7 +61508,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_WEB_SERVICE_PASSWORD','en','Web Service Password','2014-01-15') , ( 'LABEL','ID_WEB_SERVICE_USER','en','Web Service User','2014-01-15') , ( 'LABEL','ID_WEEK','en','Week','2014-01-15') , -( 'LABEL','ID_WEEKS','en','Week','2014-01-15') , +( 'LABEL','ID_WEEKS','en','Weeks','2014-01-15') , ( 'LABEL','ID_WEEKDAY_0','en','Sunday','2014-01-15') , ( 'LABEL','ID_WEEKDAY_1','en','Monday','2014-01-15') , ( 'LABEL','ID_WEEKDAY_2','en','Tuesday','2014-01-15') , From 00d03dc450f1460861fc1adf9ed14a82dabed233 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Wed, 10 Jun 2020 17:49:54 +0000 Subject: [PATCH 14/39] update translation and menu reporting --- .../engine/content/languages/translation.en | 4 +- .../translations/english/processmaker.en.po | 77 ++++-- workflow/engine/data/mysql/insert.sql | 13 +- workflow/engine/menus/setup.php | 5 + .../BusinessModel/TaskSchedulerBM.php | 259 +++++++++--------- 5 files changed, 207 insertions(+), 151 deletions(-) diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index 8bb2081a8..f5f8437dd 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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. +$translation =unserialize('a:4547:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can't create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can't create folder
            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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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: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: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: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:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen 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: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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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:18:"Calculate app data";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: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: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:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";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:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";s:30:"ID_TASK_SCHEDULER_REPORT_USERS";s:15:"Report by users";s:32:"ID_TASK_SCHEDULER_REPORT_PROCESS";s:17:"Report by process";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:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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: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: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: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:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:13:"ID_EVERY_HOUR";s:10:"Every hour";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen 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: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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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: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: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:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";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:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";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: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:27:"ID_TASK_SCHEDULER_REPORTING";s:9:"Reporting";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:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 98ab945c8..7313dcc88 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -51609,18 +51609,6 @@ msgstr "Clean self service tables" msgid "Clean unused records for Self-Service Value-Based feature. It is a maintenance command" msgstr "Clean unused records for Self-Service Value-Based feature. It is a maintenance command" -# TRANSLATION -# LABEL/ID_TASK_SCHEDULER_REPORT_USERS -#: LABEL/ID_TASK_SCHEDULER_REPORT_USERS -msgid "Report by users" -msgstr "Report by users" - -# TRANSLATION -# LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS -#: LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS -msgid "Report by process" -msgstr "Report by process" - # TRANSLATION # LABEL/ID_TASK_SCHEDULER_MESSAGE_EVENTS #: LABEL/ID_TASK_SCHEDULER_MESSAGE_EVENTS @@ -51645,13 +51633,6 @@ msgstr "Unassigned case" msgid "Run the trigger for self-service cases that have a configured timeout setting" msgstr "Run the trigger for self-service cases that have a configured timeout setting" - -# TRANSLATION -# LABEL/ID_TASK_SCHEDULER_CALCULATE_APP -#: LABEL/ID_TASK_SCHEDULER_CALCULATE_APP -msgid "Calculate app data" -msgstr "Calculate app data" - # TRANSLATION # LABEL/ID_TASK_SCHEDULER_CALCULATE_ELAPSED #: LABEL/ID_TASK_SCHEDULER_CALCULATE_ELAPSED @@ -51728,10 +51709,15 @@ msgstr "Years" # LABEL/ID_MONTHS #: LABEL/ID_MONTHS msgid "Months" -msgstr "Months" +msgstr "Months"# -# TRANSLATION -# LABEL/ID_WEEK +TRANSLATION +# LABEL/ID_TASK_SCHEDULER_SEND_NOTIFICATIONS +#: LABEL/ID_TASK_SCHEDULER_SEND_NOTIFICATIONS +msgid "Actions by email response account email revision" +msgstr "Actions by email response account email revision" + +ID_TASK_SCHEDULER_SEND_NOTIFICATIONS #: LABEL/ID_WEEK msgid "Week" msgstr "Week" @@ -51802,3 +51788,50 @@ msgstr "time in ${0}" msgid "every ${0} ${1}" msgstr "every ${0} ${1}" +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORTING +#: LABEL/ID_TASK_SCHEDULER_REPORTING +msgid "Reporting" +msgstr "Reporting" + +# TRANSLATION +# LABEL/ID_EVERY_HOUR +#: LABEL/ID_EVERY_HOUR +msgid "Every hour" +msgstr "Every hour" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORT_USERS +#: LABEL/ID_TASK_SCHEDULER_REPORT_USERS +msgid "KPI Report by user" +msgstr "KPI Report by user" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORT_USERS_DESC +#: LABEL/ID_TASK_SCHEDULER_REPORT_USERS_DESC +msgid "Recalculate KPI's information by user" +msgstr "Recalculate KPI's information by user" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS +#: LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS +msgid "KPI Report by process" +msgstr "KPI Report by process" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS_DESC +#: LABEL/ID_TASK_SCHEDULER_REPORT_PROCESS_DESC +msgid "Recalculate KPI's information by process" +msgstr "Recalculate KPI's information by process" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CALCULATE_APP +#: LABEL/ID_TASK_SCHEDULER_CALCULATE_APP +msgid "KPI Calculate app" +msgstr "KPI Calculate app" + +# TRANSLATION +# LABEL/ID_TASK_SCHEDULER_CALCULATE_APP_DESC +#: LABEL/ID_TASK_SCHEDULER_CALCULATE_APP_DESC +msgid "Recalculate main KPI board information" +msgstr "Recalculate main KPI board information" \ No newline at end of file diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index e61e8e43d..332682b65 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -58142,6 +58142,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_EVERY','en','every ${0} ${1}','2014-01-15') , ( 'LABEL','ID_EVERY_MINUTE','en','Every minute','2014-01-15') , ( 'LABEL','ID_EVERY_FIVE_MINUTES','en','Every five minutes','2014-01-15') , +( 'LABEL','ID_EVERY_HOUR','en','Every hour','2014-01-15') , ( 'LABEL','ID_EVERY_TEN_MINUTES','en','Every ten minutes','2014-01-15') , ( 'LABEL','ID_EVERY_FIFTEEN_MINUTES','en','Every fifteen minutes','2014-01-15') , ( 'LABEL','ID_EVERY_THIRTY_MINUTES','en','Every thirty minutes','2014-01-15') , @@ -61091,11 +61092,12 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_TASK_PROPERTIES_SAVE','en','Task properties has been saved successfully','2014-01-15') , ( 'LABEL','ID_TASK_TRANSFER','en','Task Transfer Date','2014-01-15') , ( 'LABEL','ID_TASK_WAS_ASSIGNED_TO_USER','en','Manual assignment shouldn''t be used with sub-processes.
                The task "{0}" from case {1} was assigned to user {2} ( {3} {4} )','2015-02-24') , -( 'LABEL','ID_TAS_DURATION_REQUIRE','en','Duration task required','2014-01-15') , +( 'LABEL','ID_TAS_DURATION_REQUIRE','en','Duration task required','2014-0f-15') , ( 'LABEL','ID_TASK_SCHEDULER','en','Task Scheduler','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_ACTION_EMAIL','en','Action by Email Response','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_ACTION_EMAIL_DESC','en','Action by email response account email revision','2014-01-15') , -( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_APP','en','Calculate app data','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_APP','en','KPI Calculate app','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_APP_DESC','en','Recalculate main KPI board information','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_ELAPSED','en','Calculated the elapsed time','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC','en','Calculates the elapsed time according to the configured calendar of all open tasks in active cases','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_CASE_ACTIONS','en','Case actions','2014-01-15') , @@ -61113,8 +61115,11 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( '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') , -( 'LABEL','ID_TASK_SCHEDULER_REPORT_USERS','en','Report by users','2014-01-15') , -( 'LABEL','ID_TASK_SCHEDULER_REPORT_PROCESS','en','Report by process','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_REPORT_USERS','en','KPI Report by user','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_REPORT_USERS_DESC','en',"Recalculate KPI's information by user",'2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_REPORTING','en','Reporting','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_REPORT_PROCESS','en','KPI Report by process','2014-01-15') , +( 'LABEL','ID_TASK_SCHEDULER_REPORT_PROCESS_DESC','en',"Recalculate KPI's information by process",'2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_SEND_NOT','en','Send notifications','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_SEND_NOT_DESC','en','ProcessMaker mobile notifications','2014-01-15') , ( 'LABEL','ID_TASK_SCHEDULER_UNASSIGNED','en','Unassigned case','2014-01-15') , diff --git a/workflow/engine/menus/setup.php b/workflow/engine/menus/setup.php index e8c563246..76d0b6c73 100755 --- a/workflow/engine/menus/setup.php +++ b/workflow/engine/menus/setup.php @@ -317,4 +317,9 @@ if ($RBAC->userCanAccess('PM_TASK_SCHEDULER_ADMIN') === 1) { G::LoadTranslation("ID_TASK_SCHEDULER_PM_SYNC"), '', '', G::LoadTranslation("ID_TASK_SCHEDULER") ); + $G_TMP_MENU->AddIdRawOption( + 'ID_MENU_REPORTING', '../scheduler/index?category=reporting', + G::LoadTranslation("ID_TASK_SCHEDULER_REPORTING"), + '', '', G::LoadTranslation("ID_TASK_SCHEDULER") + ); } \ No newline at end of file diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 06f477fb6..4de122095 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -53,122 +53,83 @@ class TaskSchedulerBM $arraySystemConfiguration = System::getSystemConfiguration('', '', config("system.workspace")); $toSave = array(); $services = array( - array( - "title" => "ProcessMaker Events", - "service" => "events", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * * * *", - "description" => "Unpauses any case whose pause time has expired" - ), - array( - "title" => "ProcessMaker Scheduler", - "enable" => "1", - "service" => "scheduler", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "description" => "Unpauses any case whose pause time has expired" - ), array( "title" => "ID_TASK_SCHEDULER_UNPAUSE", "enable" => "0", "service" => "unpause", "category" => "case_actions", "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* */1 * * *", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", "description" => "ID_TASK_SCHEDULER_UNPAUSE_DESC" ), + array( + "title" => "ID_TASK_SCHEDULER_CALCULATE_ELAPSED", + "enable" => "0", + "service" => "calculate", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' + ), + array( + "title" => "ID_TASK_SCHEDULER_UNASSIGNED", + "enable" => "0", + "service" => "unassigned-case", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' + ), + array( + "title" => "ID_TASK_SCHEDULER_CLEAN_SELF", + "enable" => "0", + "service" => "clean-self-service-tables", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' + ), array( "title" => "ID_TASK_SCHEDULER_CASE_EMAILS", "enable" => "1", "service" => "emails", "category" => "emails_notifications", "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "*/5 * * * *", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", "description" => "ID_TASK_SCHEDULER_CASE_EMAILS_DESC" ), array( - "title" => "ID_TASK_SCHEDULER_PM_PLUGINS", - "enable" => "0", - "service" => "plugins", - "category" => "plugins", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" - ), - array( - "title" => "ID_TASK_SCHEDULER_CALCULATE_ELAPSED", - "service" => "calculate", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' - ), - array( - "title" => "Calculate App data", - "service" => "calculateapp", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "description" => 'Calculates the elapsed time "according to the configured calendar" of all open tasks in active cases' - ), - array( - "title" => "ID_TASK_SCHEDULER_UNASSIGNED", - "service" => "unassigned-case", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* */1 * * *", - "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' - ), - array( - "title" => "ID_TASK_SCHEDULER_CLEAN_SELF", - "service" => "clean-self-service-tables", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' - ), - array( - "title" => "Report by Users", - "enable" => "0", - "service" => "report_by_user", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* */1 * * *", - "description" => "Report by Users" - - ), - array( - "title" => "Report by process", - "enable" => "0", - "service" => "report_by_process", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* */1 * * *", - "description" => "Report by process" + "title" => "ID_TASK_SCHEDULER_ACTION_EMAIL", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/actionsByEmailEmailResponse.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" ), array( "title" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS", @@ -176,21 +137,64 @@ class TaskSchedulerBM "service" => "", "category" => "emails_notifications", "file" => "workflow/engine/bin/messageeventcron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "*/5 * * * *", - "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" ), array( - "title" => "ProcessMaker timer event cron", - "enable" => "0", + "title" => "ID_TASK_SCHEDULER_SEND_NOT", + "enable" => "1", "service" => "", - "category" => "case_actions", - "file" => "workflow/engine/bin/timereventcron.php", - "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "description" => "ProcessMaker timer event cron" + "category" => "emails_notifications", + "file" => "workflow/engine/bin/sendnotificationscron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" + ), + array( + "title" => "ID_TASK_SCHEDULER_REPORT_BY_USER", + "enable" => "0", + "service" => "report_by_user", + "category" => "reporting", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/10 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_REPORT_BY_USER_DESC" + ), + array( + "title" => "ID_TASK_SCHEDULER_REPORT_BY_PROCESS", + "enable" => "0", + "service" => "report_by_process", + "category" => "reporting", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/10 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_REPORT_BY_PROCESS_DESC" + ), + array( + "title" => "ID_TASK_SCHEDULER_CALCULATE_APP", + "enable" => "0", + "service" => "report_by_process", + "category" => "reporting", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/10 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_CALCULATE_APP_DESC" ), array( "title" => "ID_TASK_SCHEDULER_LDAP", @@ -199,16 +203,25 @@ class TaskSchedulerBM "category" => "processmaker_sync", "file" => "workflow/engine/bin/ldapcron.php", "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "* * */1 * *", - "service" => "", - "category" => "emails_notifications", - "file" => "workflow/engine/bin/actionsByEmailEmailResponse.php", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_LDAP" + ), + array( + "title" => "ID_TASK_SCHEDULER_PLUGINS", + "enable" => "0", + "service" => "plugins", + "category" => "plugins", + "file" => "workflow/engine/bin/ldapcron.php", "startingTime" => "0:00", - "endingTime" => "23:59", - "expression" => "*/5 * * * *", - "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" - ) + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_PLUGINS_DESC" + ) ); for($i = 0; $i < count($services); ++$i) { @@ -222,10 +235,10 @@ class TaskSchedulerBM $task->expression = $services[$i]["expression"]; $task->type = "shell"; $task->system = 1; - $task->timezone = $arraySystemConfiguration['time_zone']; + //$task->timezone = $arraySystemConfiguration['time_zone']; $task->enable = $services[$i]["enable"]; - $task->startingTime = "0:00"; - $task->endingTime = "23:59"; + $task->everyOn = $services[$i]["everyOn"]; + $task->interval = $services[$i]["interval"]; $task->save(); } } From 6f03c71f027f82255ade6534b94ff12abf9cc92f Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Thu, 11 Jun 2020 19:20:16 +0000 Subject: [PATCH 15/39] update translation update labels default in task scheduler fix default values in initial data and fix problem with interval weeks update user in commands crons remove po_to_json Remove Gem to_po_json Fix scheduler with months and years fix command calculateApp --- Rakefile | 29 ------- app/Console/Commands/ScheduleRunCommand.php | 81 +++++++++++-------- .../engine/content/languages/translation.en | 4 +- .../BusinessModel/TaskSchedulerBM.php | 16 ++-- 4 files changed, 58 insertions(+), 72 deletions(-) diff --git a/Rakefile b/Rakefile index a3f4ce34d..0e1682320 100755 --- a/Rakefile +++ b/Rakefile @@ -1,16 +1,5 @@ require 'rubygems' require 'json' -require "po_to_json" - -class PoToJson - def _generate_for_json(language, overwrite = {}) - @options = parse_options(overwrite.merge(language: language)) - #parse_document - #@parsed ||= inject_meta(parse_document) - generated = build_json_for(parse_document) - end -end - desc "Default Task - Build Library" task :default => [:required] do @@ -79,16 +68,6 @@ task :build => [:required] do mafeHash = getHash(Dir.pwd + "/vendor/colosa/MichelangeloFE") pmdynaformHash = getHash(Dir.pwd + "/vendor/colosa/pmDynaform") - puts "Building PO to JSON".cyan - - Dir["#{Dir.pwd}/workflow/engine/content/translations/*.po"].each do |file| - lang = file.split('.') - json_string = PoToJson.new(file)._generate_for_json(lang[1], :pretty => true) - File.open("#{Dir.pwd}/workflow/public_html/translations/#{lang[1]}.json",'w').write(json_string) - puts file - end - - puts "Building file: Task Scheduler".cyan system "npm run build --prefix #{Dir.pwd}/vendor/colosa/taskscheduler" system "cp -Rf #{Dir.pwd}/vendor/colosa/taskscheduler/taskscheduler #{targetDir}/taskscheduler" @@ -490,12 +469,4 @@ end def getLog output = `git log -30 --pretty='[%cr] %h %d %s <%an>' --no-merges` return output -end - -def generate_for_json() - @overwrite = {pretty: false} - @options = parse_options(overwrite.merge(language: 'en')) - @parsed ||= inject_meta(parse_document) - - generated = build_json_for(build_json_for(@parsed)) end \ No newline at end of file diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php index 31abf4e53..36b4eb22f 100755 --- a/app/Console/Commands/ScheduleRunCommand.php +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -26,6 +26,7 @@ class ScheduleRunCommand extends BaseCommand $this->signature = "schedule:run"; $this->signature .= ' {--workspace=workflow : ProcessMaker Indicates the workspace to be processed.} + {--user=apache : ProcessMaker Indicates the user to execute the crons.} {--processmakerPath=./ : ProcessMaker path.} '; $this->description .= ' (ProcessMaker has extended this command)'; @@ -41,46 +42,60 @@ class ScheduleRunCommand extends BaseCommand { $that = $this; $workspace = $this->option('workspace'); + $user = $this->option('user'); if (!empty($workspace)) { $webApplication = new WebApplication(); $webApplication->setRootDir($this->option('processmakerPath')); $webApplication->loadEnvironment($workspace, false); } - TaskScheduler::all()->each(function ($p) use ($that) { - $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; - $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; - $timezone = isset($p->timezone) && $p->timezone != ""? $p->timezone: date_default_timezone_get(); - $that->schedule->exec($p->body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { - $now = Carbon::now(); - $result = false; - $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); - if (isset($p->everyOn)) { - switch ($p->interval) { - case "day": - $interval = $now->diffInDays($datework); - $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); - break; - case "week": - $interval = $now->diffInDays($datework); - $result = ($interval !== 0 && $interval % (intval($p->everyOn) * 7) == 0); - break; - case "month": - $interval = $now->diffInMonths($datework); - $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); - break; - case "year": - $interval = $now->diffInYears($datework); - $result = ($interval !== 0 && $interval % intval($p->everyOn) == 0); - break; + TaskScheduler::all()->each(function ($p) use ($that, $user) { + if ($p->enable == 1) { + $starting = isset($p->startingTime) ? $p->startingTime : "0:00"; + $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; + + $timezone = isset($p->timezone) && $p->timezone != "" ? $p->timezone : date_default_timezone_get(); + $body = str_replace("-c", $user . " -c", $p->body); + $that->schedule->exec($body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { + $now = Carbon::now(); + $result = false; + $datework = Carbon::createFromFormat('Y-m-d H:i:s', $p->last_update); + if (isset($p->everyOn)) { + switch ($p->interval) { + case "day": + $interval = $now->diffInDays($datework); + $result = ($interval !== 0 && ($interval % intval($p->everyOn)) == 0); + break; + case "week": + $diff = $now->diffInDays($datework); + if ($diff % (intval($p->everyOn) * 7) < 7 && $diff % (intval($p->everyOn) * 7) >= 0) { + $result = true; + } else { + $result = false; + } + break; + case "month": + $interval = $now->diffInMonths($datework); + if ($interval % intval($p->everyOn) == 0) { + $result = true; + } else { + $result = false; + } + break; + case "year": + $interval = $now->diffInYears($datework); + if ($interval % intval($p->everyOn) == 0) { + $result = true; + } else { + $result = false; + } + break; + } + return $result; } - return $result; - } - return true; - }); + return true; + }); + } }); parent::handle(); } } - - - diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index f5f8437dd..e456bdc34 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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. +$translation =unserialize('a:4548:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can\'t create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can\'t create folder
                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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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:15:"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: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: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: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: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: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:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:13:"ID_EVERY_HOUR";s:10:"Every hour";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen 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: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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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: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: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: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:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";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:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:22:"ProcessMaker scheduler";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: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:27:"ID_TASK_SCHEDULER_REPORTING";s:9:"Reporting";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:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:11:"time in {0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 4de122095..7d724a687 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -158,7 +158,7 @@ class TaskSchedulerBM "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" ), array( - "title" => "ID_TASK_SCHEDULER_REPORT_BY_USER", + "title" => "ID_TASK_SCHEDULER_REPORT_USERS", "enable" => "0", "service" => "report_by_user", "category" => "reporting", @@ -168,10 +168,10 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_REPORT_BY_USER_DESC" + "description" => "ID_TASK_SCHEDULER_REPORT_USERS_DESC" ), array( - "title" => "ID_TASK_SCHEDULER_REPORT_BY_PROCESS", + "title" => "ID_TASK_SCHEDULER_REPORT_PROCESS", "enable" => "0", "service" => "report_by_process", "category" => "reporting", @@ -181,12 +181,12 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_REPORT_BY_PROCESS_DESC" + "description" => "ID_TASK_SCHEDULER_REPORT_PROCESS_DESC" ), array( "title" => "ID_TASK_SCHEDULER_CALCULATE_APP", "enable" => "0", - "service" => "report_by_process", + "service" => "calculateapp", "category" => "reporting", "file" => "workflow/engine/bin/cron.php", "startingTime" => null, @@ -210,17 +210,17 @@ class TaskSchedulerBM "description" => "ID_TASK_SCHEDULER_LDAP" ), array( - "title" => "ID_TASK_SCHEDULER_PLUGINS", + "title" => "ID_TASK_SCHEDULER_PM_PLUGINS", "enable" => "0", "service" => "plugins", "category" => "plugins", - "file" => "workflow/engine/bin/ldapcron.php", + "file" => "workflow/engine/bin/cron.php", "startingTime" => "0:00", "endingTime" => "0:30", "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_PLUGINS_DESC" + "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" ) ); From 4cddeb35da342993a0a151230077eee2a441236b Mon Sep 17 00:00:00 2001 From: Andrea Adamczyk Date: Tue, 9 Jun 2020 17:14:01 -0400 Subject: [PATCH 16/39] PMCORE-1598 --- database/factories/TaskSchedulerFactory.php | 27 +++++ .../BusinessModel/TaskSchedulerBMTest.php | 98 +++++++++++++++++++ 2 files changed, 125 insertions(+) create mode 100644 database/factories/TaskSchedulerFactory.php create mode 100644 tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php diff --git a/database/factories/TaskSchedulerFactory.php b/database/factories/TaskSchedulerFactory.php new file mode 100644 index 000000000..7ee6918c9 --- /dev/null +++ b/database/factories/TaskSchedulerFactory.php @@ -0,0 +1,27 @@ +define(\ProcessMaker\Model\TaskScheduler::class, function (Faker $faker) { + return [ + 'id' => G::generateUniqueID(), + 'title' => $faker->title, + 'startingTime' => $faker->dateTime(), + 'endingTime' => $faker->dateTime(), + 'everyOn' => "", + 'interval' => "", + 'description' => "", + 'expression' => "", + 'body' => "", + 'type' => "", + 'category' => "emails_notifications", //emails_notifications, case_actions, plugins, processmaker_sync + 'system' => "", + 'timezone' => "", + 'enable' => "", + 'creation_date' => $faker->dateTime(), + 'last_update' => $faker->dateTime() + ]; +}); diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php new file mode 100644 index 000000000..92d712e91 --- /dev/null +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php @@ -0,0 +1,98 @@ +getSchedule('emails_notifications'); + $this->assertNotEmpty($res); + + factory(TaskScheduler::class)->create(); + + $res = $obj->getSchedule('emails_notifications'); + $this->assertNotEmpty(1, $res); + + $res = $obj->getSchedule('case_actions'); + $this->assertEmpty(0, $res); + + $res = $obj->getSchedule('plugins'); + $this->assertEmpty(0, $res); + + $res = $obj->getSchedule('processmaker_sync'); + $this->assertEmpty(0, $res); + + $res = $obj->getSchedule(null); + $this->assertNotEmpty(1, $res); + } + + /** + * Test saveSchedule method + * + * @covers \ProcessMaker\BusinessModel\TaskSchedulerBM::saveSchedule + * @test + */ + public function it_should_test_save_schedule_method() + { + $obj = new TaskSchedulerBM(); + + $scheduler = factory(TaskScheduler::class)->create(); + + $request_data = [ + "id" => $scheduler->id, + "title" => "ProcessMaker Events", + "enable" => "1", + "service" => "events", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "23:59", + "expression" => "* * * * *", + "description" => "Unpauses any case whose pause time has expired", + "timezone" => "", + "everyOn" => "", + 'interval' => "", + 'body' => "", + 'type' => "", + 'system' => "", + 'creation_date' => date(''), + 'last_update' => date('') + ]; + + $res = $obj->saveSchedule($request_data); + $this->assertEquals([] ,$res); + } + + /** + * Test generateInitialData method + * + * @covers \ProcessMaker\BusinessModel\TaskSchedulerBM::generateInitialData + * @test + */ + public function it_should_test_generate_initial_data_method() + { + TaskScheduler::truncate(); + $r = TaskScheduler::all()->toArray(); + $this->assertEmpty($r); + + $obj = new TaskSchedulerBM(); + $obj->generateInitialData(); + + $r = TaskScheduler::all()->toArray(); + $this->assertNotEmpty($r); + } +} From 09cbb6061dacde0a33f68c5974b3c305dfe588c9 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Mon, 15 Jun 2020 17:42:10 +0000 Subject: [PATCH 17/39] fix observations fix the timezone import --- app/Console/Commands/ScheduleRunCommand.php | 16 +- workflow/engine/methods/scheduler/index.php | 52 +++--- .../BusinessModel/TaskSchedulerBM.php | 168 ++++++++---------- .../src/ProcessMaker/Model/TaskScheduler.php | 6 +- .../ProcessMaker/Services/Api/Scheduler.php | 22 ++- .../engine/templates/scheduler/index.html | 12 ++ 6 files changed, 133 insertions(+), 143 deletions(-) create mode 100644 workflow/engine/templates/scheduler/index.html diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php index 36b4eb22f..10937cb62 100755 --- a/app/Console/Commands/ScheduleRunCommand.php +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -2,11 +2,9 @@ namespace App\Console\Commands; -use Maveriks\WebApplication; -use \Illuminate\Support\Carbon; +use Illuminate\Support\Carbon; use Illuminate\Console\Scheduling\ScheduleRunCommand as BaseCommand; -use Illuminate\Support\Facades\Log; -use ProcessMaker\BusinessModel\TaskSchedulerBM; +use Maveriks\WebApplication; use ProcessMaker\Model\TaskScheduler; class ScheduleRunCommand extends BaseCommand @@ -24,11 +22,11 @@ class ScheduleRunCommand extends BaseCommand { $this->startedAt = Carbon::now(); $this->signature = "schedule:run"; - $this->signature .= ' - {--workspace=workflow : ProcessMaker Indicates the workspace to be processed.} - {--user=apache : ProcessMaker Indicates the user to execute the crons.} + $this->signature .= " + {--workspace=workflow : Workspace to use.} + {--user=apache : Operating system's user who executes the crons.} {--processmakerPath=./ : ProcessMaker path.} - '; + "; $this->description .= ' (ProcessMaker has extended this command)'; parent::__construct($schedule); } @@ -54,7 +52,7 @@ class ScheduleRunCommand extends BaseCommand $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; $timezone = isset($p->timezone) && $p->timezone != "" ? $p->timezone : date_default_timezone_get(); - $body = str_replace("-c", $user . " -c", $p->body); + $body = str_replace("-c", $user . " -c", $p->body); $that->schedule->exec($body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { $now = Carbon::now(); $result = false; diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php index 1545b3824..3b6ba39b0 100755 --- a/workflow/engine/methods/scheduler/index.php +++ b/workflow/engine/methods/scheduler/index.php @@ -1,37 +1,27 @@ \n" . - "var timezoneArray = " . G::json_encode($arrayTimeZoneId) . ";\n" . - "\n"; - echo($js); + global $G_PUBLISH; + $G_PUBLISH = new Publisher(); + $headPublisher = headPublisher::getSingleton(); + $category = (isset($_GET["category"]))? $_GET["category"] : null; + /* Render page */ - } + $pmDynaform = new PmDynaform([]); + if (!empty($_SESSION['USER_LOGGED'])) { + $arrayTimeZoneId = DateTimeZone::listIdentifiers(); + $fields["timezoneArray"] = G::json_encode($arrayTimeZoneId); + } - $js = "" . - "\n". - "\n"; - echo($js); + $fields["server"] = System::getHttpServerHostnameRequestsFrontEnd(); + $fields["credentials"] = G::json_encode($pmDynaform->getCredentials()); + $fields["category"] = $category; + $fields["lang"] = SYS_LANG; + $fields["workspace"] = config("system.workspace"); + $fields["translation"] = "/js/ext/translation.".SYS_LANG.".".G::browserCacheFilesGetUid().".js"; - $file = file_get_contents(PATH_HOME . 'public_html/lib/taskscheduler/index.html'); - echo $file; + $G_PUBLISH->addContent('smarty','scheduler/index.html','', '', $fields); //Adding a HTML file .html + $G_PUBLISH->addContent('smarty',PATH_HOME . 'public_html/lib/taskscheduler/index.html'); //Adding a HTML file .html + G::RenderPage("publish", "raw"); } catch (Exception $e) { - -} -?> \ No newline at end of file + echo($e); +} \ No newline at end of file diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 7d724a687..3a59b824c 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -1,12 +1,8 @@ count(); - if($count == 0){ + if ($count == 0) { TaskSchedulerBM::generateInitialData(); $tasks = TaskScheduler::all(); - } - if(is_null($category)){ + } + if (is_null($category)) { return $tasks; - }else{ + } else { return TaskScheduler::where('category', $category)->get(); } } /** * Save the record Schedule in Schedule Table */ - public static function saveSchedule(array $request_data){ - $task = TaskScheduler::find($request_data['id']); - if(isset($request_data['enable'])){ - $task->enable = $request_data['enable']; + public static function saveSchedule(array $request) + { + $task = TaskScheduler::find($request['id']); + if (isset($request['enable'])) { + $task->enable = $request['enable']; } - if(isset($request_data['expression'])){ - $task->expression = $request_data['expression']; - $task->startingTime = $request_data['startingTime']; - $task->endingTime = $request_data['endingTime']; - $task->timezone = $request_data['timezone']; - $task->everyOn = $request_data['everyOn']; - $task->interval = $request_data['interval']; - - } + if (isset($request['expression'])) { + $task->expression = $request['expression']; + $task->startingTime = $request['startingTime']; + $task->endingTime = $request['endingTime']; + $task->timezone = $request['timezone']; + $task->everyOn = $request['everyOn']; + $task->interval = $request['interval']; + } $task->save(); - return array(); + return $task; } - public static function generateInitialData(){ + /** + * Initial data for Schedule Table, with default values + */ + public static function generateInitialData() + { $arraySystemConfiguration = System::getSystemConfiguration('', '', config("system.workspace")); - $toSave = array(); - $services = array( - array( + $toSave = []; + $services = [ + [ "title" => "ID_TASK_SCHEDULER_UNPAUSE", "enable" => "0", "service" => "unpause", @@ -64,9 +65,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_UNPAUSE_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_UNPAUSE_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_CALCULATE_ELAPSED", "enable" => "0", "service" => "calculate", @@ -77,9 +78,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' - ), - array( + "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' + ], + [ "title" => "ID_TASK_SCHEDULER_UNASSIGNED", "enable" => "0", "service" => "unassigned-case", @@ -90,9 +91,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' - ), - array( + "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' + ], + [ "title" => "ID_TASK_SCHEDULER_CLEAN_SELF", "enable" => "0", "service" => "clean-self-service-tables", @@ -103,9 +104,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' - ), - array( + "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' + ], + [ "title" => "ID_TASK_SCHEDULER_CASE_EMAILS", "enable" => "1", "service" => "emails", @@ -116,9 +117,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_CASE_EMAILS_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_CASE_EMAILS_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_ACTION_EMAIL", "enable" => "1", "service" => "", @@ -129,9 +130,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS", "enable" => "1", "service" => "", @@ -142,9 +143,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_SEND_NOT", "enable" => "1", "service" => "", @@ -155,9 +156,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_REPORT_USERS", "enable" => "0", "service" => "report_by_user", @@ -168,25 +169,15 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_REPORT_USERS_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_REPORT_USERS_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_REPORT_PROCESS", "enable" => "0", "service" => "report_by_process", "category" => "reporting", "file" => "workflow/engine/bin/cron.php", "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_REPORT_PROCESS_DESC" - ), - array( - "title" => "ID_TASK_SCHEDULER_CALCULATE_APP", - "enable" => "0", - "service" => "calculateapp", "category" => "reporting", "file" => "workflow/engine/bin/cron.php", "startingTime" => null, @@ -194,9 +185,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_CALCULATE_APP_DESC" - ), - array( + "description" => "ID_TASK_SCHEDULER_CALCULATE_APP_DESC" + ], + [ "title" => "ID_TASK_SCHEDULER_LDAP", "enable" => "0", "service" => "", @@ -207,9 +198,9 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_LDAP" - ), - array( + "description" => "ID_TASK_SCHEDULER_LDAP" + ], + [ "title" => "ID_TASK_SCHEDULER_PM_PLUGINS", "enable" => "0", "service" => "plugins", @@ -220,26 +211,25 @@ class TaskSchedulerBM "everyOn" => "1", "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" - ) - ); - - for($i = 0; $i < count($services); ++$i) { + "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" + ] + ]; + + foreach ($services as $service) { $task = new TaskScheduler; - $task->title = $services[$i]["title"]; - $task->category = $services[$i]["category"]; - $task->description = $services[$i]["description"]; - $task->startingTime = $services[$i]["startingTime"]; - $task->endingTime = $services[$i]["endingTime"]; - $task->body = 'su -s /bin/sh -c "php '. PATH_TRUNK . $services[$i]["file"] . " " . $services[$i]["service"] . ' +w' . config("system.workspace") . ' +force"'; - $task->expression = $services[$i]["expression"]; + $task->title = $service["title"]; + $task->category = $service["category"]; + $task->description = $service["description"]; + $task->startingTime = $service["startingTime"]; + $task->endingTime = $service["endingTime"]; + $task->body = 'su -s /bin/sh -c "php ' . PATH_TRUNK . $service["file"] . " " . $service["service"] . ' +w' . config("system.workspace") . ' +force"'; + $task->expression = $service["expression"]; $task->type = "shell"; $task->system = 1; - //$task->timezone = $arraySystemConfiguration['time_zone']; - $task->enable = $services[$i]["enable"]; - $task->everyOn = $services[$i]["everyOn"]; - $task->interval = $services[$i]["interval"]; - $task->save(); + $task->enable = $service["enable"]; + $task->everyOn = $service["everyOn"]; + $task->interval = $service["interval"]; + $task->save(); } } -} \ No newline at end of file +} diff --git a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php index 678c357f4..4de504e52 100755 --- a/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php +++ b/workflow/engine/src/ProcessMaker/Model/TaskScheduler.php @@ -3,11 +3,7 @@ namespace ProcessMaker\Model; use \Illuminate\Database\Eloquent\Model; -use \Illuminate\Support\Facades\DB; -use \Cron\CronExpression; -use \Illuminate\Support\Carbon; -use \Illuminate\Console\Scheduling\ManagesFrequencies; -use Illuminate\Console\Scheduling\Schedule; + /** * Class TaskScheduler * @package ProcessMaker\Model diff --git a/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php b/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php index 0f13f24f5..2a578ad4b 100755 --- a/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php +++ b/workflow/engine/src/ProcessMaker/Services/Api/Scheduler.php @@ -1,12 +1,11 @@ getMessage()); } } /** + * Receive the options sent from Scheduler UI * @url POST * @status 200 * @@ -37,10 +41,10 @@ class Scheduler extends Api * @throws RestException * */ - public function doPost(array $request_data) { + public function doPost(array $request) { try { - return TaskSchedulerBM::saveSchedule($request_data); - } catch (\Exception $e) { + return TaskSchedulerBM::saveSchedule($request); + } catch (Exception $e) { throw new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()); } } diff --git a/workflow/engine/templates/scheduler/index.html b/workflow/engine/templates/scheduler/index.html new file mode 100644 index 000000000..42e22714b --- /dev/null +++ b/workflow/engine/templates/scheduler/index.html @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file From 56a9d5e114096bd481adda98338f70cf46527913 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Mon, 15 Jun 2020 20:00:43 +0000 Subject: [PATCH 18/39] add new translations and fix observations --- .../engine/content/languages/translation.en | 4 +- .../translations/english/processmaker.en.po | 44 ++- workflow/engine/data/mysql/insert.sql | 7 + workflow/engine/methods/scheduler/index.php | 15 +- .../BusinessModel/TaskSchedulerBM.php | 328 +++++++++--------- 5 files changed, 226 insertions(+), 172 deletions(-) diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index e456bdc34..f112ad5a5 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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:15:"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. +$translation =unserialize('a:4555:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can\'t create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can\'t create folder
                    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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:11:"time in {0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 a8a6fbfb3..d12b0bd3c 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -51876,4 +51876,46 @@ msgstr "KPI Calculate app" # LABEL/ID_TASK_SCHEDULER_CALCULATE_APP_DESC #: LABEL/ID_TASK_SCHEDULER_CALCULATE_APP_DESC msgid "Recalculate main KPI board information" -msgstr "Recalculate main KPI board information" \ No newline at end of file +msgstr "Recalculate main KPI board information" + +# TRANSLATION +# LABEL/ID_CUSTOM_SCHEDULE_SETTINGS +#: LABEL/ID_CUSTOM_SCHEDULE_SETTINGS +msgid "Custom schedule settings" +msgstr "Custom schedule settings" + +# TRANSLATION +# LABEL/ID_CHOOSE_TIME +#: LABEL/ID_CHOOSE_TIME +msgid "Choose a time" +msgstr "Choose a time" + +# TRANSLATION +# LABEL/ID_STARTING_TIME +#: LABEL/ID_STARTING_TIME +msgid "Starting time" +msgstr "Starting time" + +# TRANSLATION +# LABEL/ID_ENDING_TIME +#: LABEL/ID_ENDING_TIME +msgid "Ending time" +msgstr "Ending time" + +# TRANSLATION +# LABEL/ID_REPEAT_EVERY +#: LABEL/ID_REPEAT_EVERY +msgid "Repeat every" +msgstr "Repeat every" + +# TRANSLATION +# LABEL/ID_REPEAT_ON +#: LABEL/ID_REPEAT_ON +msgid "Repeat on" +msgstr "Repeat on" + +# TRANSLATION +# LABEL/ID_CUSTOM_SETTINGS +#: LABEL/ID_CUSTOM_SETTINGS +msgid "Custom settings" +msgstr "Custom settings" diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 49a33f649..7b6e5fa35 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -56872,6 +56872,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'JAVASCRIPT','ID_EMPTY_NODENAME','en','The field name contains spaces or it''s empty!','2014-01-15') , ( 'JAVASCRIPT','ID_ENABLE_WORKSPACE_CONFIRM','en','Do you want enable the selected workspace?','2014-01-15') , ( 'JAVASCRIPT','ID_END_OF_PROCESS','en','End of process','2014-01-15') , +( 'JAVASCRIPT','ID_ENDING_TIME','en','End of process','2014-01-15') , ( 'JAVASCRIPT','ID_EVENTS','en','Events','2014-01-15') , ( 'JAVASCRIPT','ID_EVENT_CONDITIONAL','en','Conditional Event','2014-01-15') , ( 'JAVASCRIPT','ID_EVENT_MESSAGE','en','Message Event','2014-01-15') ; @@ -57521,6 +57522,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_CHECK_WORKSPACE_CONFIGURATION','en','Check Workspace Configuration','2014-01-15') , ( 'LABEL','ID_CHOOSE_OPTION','en','Choose an option','2014-01-15') , ( 'LABEL','ID_CHOOSE_PROVIDER','en','Please select provider','2014-08-27') , +( 'LABEL','ID_CHOOSE_TIME','en','Choose a time','2014-08-27') , ( 'LABEL','ID_CLAIM','en','Claim','2014-01-15') , ( 'LABEL','ID_CLASSIC_EDITOR','en','Classic Editor','2014-01-15') , ( 'LABEL','ID_CLASS_ALREADY_EXISTS','en','Class already exists','2014-01-15') , @@ -57676,6 +57678,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_CUSTOM_CASES_LISTS','en','Custom Case List','2017-02-21') , ( 'LABEL','ID_CUSTOM_TRIGGER','en','Custom Trigger','2014-01-15') , ( 'LABEL','ID_CUSTOM_TRIGGER_DESCRIPTION','en','Custom Trigger','2014-01-15') , +( 'LABEL','ID_CUSTOM_SCHEDULE_SETTINGS','en','Custom schedule settings','2014-01-15') , +( 'LABEL','ID_CUSTOM_SETTINGS','en','Custom settings','2014-01-15') , ( 'LABEL','ID_CYCLIC_ASSIGNMENT','en','Cyclic Assignment','2014-01-15') , ( 'LABEL','ID_DASHBOARD','en','Dashboards','2015-03-09') , ( 'LABEL','ID_DASHBOARD_BTNCOLUMNS1','en','One Column','2014-01-15') , @@ -58566,6 +58570,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_INVALID_SCH_START_TIME','en','Invalid value specified for sch_start_time. Expecting time in HH:MM format (The time can not be greater than 23:59)','2014-10-21') , ( 'LABEL','ID_INVALID_START','en','Invalid value specified for start','2014-05-22') , ( 'LABEL','ID_INVALID_START_HOURS','en','The following start hours rows are invalid:','2014-01-15') , +( 'LABEL','ID_INVALID_STARTING_TIME','en','Starting time','2014-01-15') , ( 'LABEL','ID_INVALID_TRIGGER','en','Invalid trigger ''{TRIGGER_INDEX}''','2014-01-15') , ( 'LABEL','ID_INVALID_VALUE','en','Invalid value for "{0}".','2014-05-20') , ( 'LABEL','ID_INVALID_VALUE_ARRAY','en','Invalid value for ''{0}''. It must be an array.','2014-10-21') , @@ -60688,6 +60693,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_RENAME','en','Rename','2014-01-15') , ( 'LABEL','ID_RENEW','en','Renew','2014-09-18') , ( 'LABEL','ID_REOPEN','en','re-open','2014-01-15') , +( 'LABEL','ID_REPEAT_EVERY','en','Repeat every','2014-01-15') , +( 'LABEL','ID_REPEAT_EVERY','en','Repeat on','2014-01-15') , ( 'LABEL','ID_REPLACED_BY','en','Replaced by','2014-01-15') , ( 'LABEL','ID_REPLACED_LOGO','en','The logo was replaced','2014-01-15') , ( 'LABEL','ID_REPLACE_ALL','en','Replace all','2016-03-30') , diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php index 3b6ba39b0..36f69107d 100755 --- a/workflow/engine/methods/scheduler/index.php +++ b/workflow/engine/methods/scheduler/index.php @@ -17,11 +17,16 @@ try { $fields["category"] = $category; $fields["lang"] = SYS_LANG; $fields["workspace"] = config("system.workspace"); - $fields["translation"] = "/js/ext/translation.".SYS_LANG.".".G::browserCacheFilesGetUid().".js"; + $fields["translation"] = "/js/ext/translation." . SYS_LANG . "." . G::browserCacheFilesGetUid() . ".js"; - $G_PUBLISH->addContent('smarty','scheduler/index.html','', '', $fields); //Adding a HTML file .html - $G_PUBLISH->addContent('smarty',PATH_HOME . 'public_html/lib/taskscheduler/index.html'); //Adding a HTML file .html - G::RenderPage("publish", "raw"); + $G_PUBLISH->addContent('smarty' , 'scheduler/index.html' , '', '' , $fields); //Adding a HTML file .html + $G_PUBLISH->addContent('smarty' , PATH_HOME . 'public_html/lib/taskscheduler/index.html'); //Adding a HTML file .html + G::RenderPage("publish" , "raw"); } catch (Exception $e) { - echo($e); + $message = []; + $message['MESSAGE'] = $e->getMessage(); + $G_PUBLISH = new Publisher(); + $G_PUBLISH->AddContent('xmlform', 'xmlform', 'login/showMessage', '', $message); + G::RenderPage('publish', 'blank'); + die(); } \ No newline at end of file diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 3a59b824c..574b78c44 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -2,11 +2,172 @@ namespace ProcessMaker\BusinessModel; -use ProcessMaker\Model\TaskScheduler; use ProcessMaker\Core\System; +use ProcessMaker\Model\TaskScheduler; class TaskSchedulerBM { + public static $services = [ + [ + "title" => "ID_TASK_SCHEDULER_UNPAUSE", + "enable" => "0", + "service" => "unpause", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_UNPAUSE_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_CALCULATE_ELAPSED", + "enable" => "0", + "service" => "calculate", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' + ], + [ + "title" => "ID_TASK_SCHEDULER_UNASSIGNED", + "enable" => "0", + "service" => "unassigned-case", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' + ], + [ + "title" => "ID_TASK_SCHEDULER_CLEAN_SELF", + "enable" => "0", + "service" => "clean-self-service-tables", + "category" => "case_actions", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' + ], + [ + "title" => "ID_TASK_SCHEDULER_CASE_EMAILS", + "enable" => "1", + "service" => "emails", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_CASE_EMAILS_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_ACTION_EMAIL", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/actionsByEmailEmailResponse.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/messageeventcron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_SEND_NOT", + "enable" => "1", + "service" => "", + "category" => "emails_notifications", + "file" => "workflow/engine/bin/sendnotificationscron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/5 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_REPORT_USERS", + "enable" => "0", + "service" => "report_by_user", + "category" => "reporting", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/10 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_REPORT_USERS_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_REPORT_PROCESS", + "enable" => "0", + "service" => "report_by_process", + "category" => "reporting", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "category" => "reporting", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/10 * * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_CALCULATE_APP_DESC" + ], + [ + "title" => "ID_TASK_SCHEDULER_LDAP", + "enable" => "0", + "service" => "", + "category" => "processmaker_sync", + "file" => "workflow/engine/bin/ldapcron.php", + "startingTime" => "0:00", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_LDAP" + ], + [ + "title" => "ID_TASK_SCHEDULER_PM_PLUGINS", + "enable" => "0", + "service" => "plugins", + "category" => "plugins", + "file" => "workflow/engine/bin/cron.php", + "startingTime" => "0:00", + "endingTime" => "0:30", + "everyOn" => "1", + "interval" => "week", + "expression" => "0 */1 * * 0,1,2,3,4,5,6", + "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" + ] + ]; /** * Return the records in Schedule Table by category */ @@ -53,169 +214,8 @@ class TaskSchedulerBM { $arraySystemConfiguration = System::getSystemConfiguration('', '', config("system.workspace")); $toSave = []; - $services = [ - [ - "title" => "ID_TASK_SCHEDULER_UNPAUSE", - "enable" => "0", - "service" => "unpause", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_UNPAUSE_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_CALCULATE_ELAPSED", - "enable" => "0", - "service" => "calculate", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "0:30", - "everyOn" => "1", - "interval" => "week", - "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => 'ID_TASK_SCHEDULER_CALCULATE_ELAPSED_DESC' - ], - [ - "title" => "ID_TASK_SCHEDULER_UNASSIGNED", - "enable" => "0", - "service" => "unassigned-case", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => 'ID_TASK_SCHEDULER_UNASSIGNED_DESC' - ], - [ - "title" => "ID_TASK_SCHEDULER_CLEAN_SELF", - "enable" => "0", - "service" => "clean-self-service-tables", - "category" => "case_actions", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "0:30", - "everyOn" => "1", - "interval" => "week", - "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => 'ID_TASK_SCHEDULER_CLEAN_SELF_DESC' - ], - [ - "title" => "ID_TASK_SCHEDULER_CASE_EMAILS", - "enable" => "1", - "service" => "emails", - "category" => "emails_notifications", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_CASE_EMAILS_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_ACTION_EMAIL", - "enable" => "1", - "service" => "", - "category" => "emails_notifications", - "file" => "workflow/engine/bin/actionsByEmailEmailResponse.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_ACTION_EMAIL_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS", - "enable" => "1", - "service" => "", - "category" => "emails_notifications", - "file" => "workflow/engine/bin/messageeventcron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_MESSAGE_EVENTS_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_SEND_NOT", - "enable" => "1", - "service" => "", - "category" => "emails_notifications", - "file" => "workflow/engine/bin/sendnotificationscron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/5 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_SEND_NOT_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_REPORT_USERS", - "enable" => "0", - "service" => "report_by_user", - "category" => "reporting", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_REPORT_USERS_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_REPORT_PROCESS", - "enable" => "0", - "service" => "report_by_process", - "category" => "reporting", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => null, - "category" => "reporting", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => null, - "endingTime" => null, - "everyOn" => "1", - "interval" => "week", - "expression" => "*/10 * * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_CALCULATE_APP_DESC" - ], - [ - "title" => "ID_TASK_SCHEDULER_LDAP", - "enable" => "0", - "service" => "", - "category" => "processmaker_sync", - "file" => "workflow/engine/bin/ldapcron.php", - "startingTime" => "0:00", - "endingTime" => "0:30", - "everyOn" => "1", - "interval" => "week", - "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_LDAP" - ], - [ - "title" => "ID_TASK_SCHEDULER_PM_PLUGINS", - "enable" => "0", - "service" => "plugins", - "category" => "plugins", - "file" => "workflow/engine/bin/cron.php", - "startingTime" => "0:00", - "endingTime" => "0:30", - "everyOn" => "1", - "interval" => "week", - "expression" => "0 */1 * * 0,1,2,3,4,5,6", - "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" - ] - ]; - - foreach ($services as $service) { + + foreach (TaskSchedulerBM::$services as $service) { $task = new TaskScheduler; $task->title = $service["title"]; $task->category = $service["category"]; From 25441c107300640c840c72c5a034244e3e26f0fa Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Mon, 15 Jun 2020 20:50:07 +0000 Subject: [PATCH 19/39] fix test and translations --- .../src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php | 2 +- workflow/engine/data/mysql/insert.sql | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php index 92d712e91..ce454371a 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBMTest.php @@ -74,7 +74,7 @@ class TaskSchedulerBMTest extends TestCase ]; $res = $obj->saveSchedule($request_data); - $this->assertEquals([] ,$res); + $this->assertEquals($scheduler->id , $res->id); } /** diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 7b6e5fa35..dfb41bc8e 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -58066,6 +58066,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_ENABLE_VIRTUAL_KEYBOARD','en','Enable Virtual Keyboard (Only uxmodern skin)','2014-01-15') , ( 'LABEL','ID_ENABLE_WORKSPACE','en','Enable Workspace','2014-01-15') , ( 'LABEL','ID_ENCODE','en','Encode','2014-01-15') , +( 'LABEL','ID_ENDING_TIME','en','Ending time','2014-01-15') , ( 'LABEL','ID_END_DATE','en','End Date','2014-01-15') , ( 'LABEL','ID_END_DATE_GREATER','en','End date should be greater than Start date','2015-02-19') , ( 'LABEL','ID_END_DATE_MDY','en','End Date ("m/d/Y")','2014-01-15') , @@ -60694,7 +60695,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_RENEW','en','Renew','2014-09-18') , ( 'LABEL','ID_REOPEN','en','re-open','2014-01-15') , ( 'LABEL','ID_REPEAT_EVERY','en','Repeat every','2014-01-15') , -( 'LABEL','ID_REPEAT_EVERY','en','Repeat on','2014-01-15') , +( 'LABEL','ID_REPEAT_ON','en','Repeat on','2014-01-15') , ( 'LABEL','ID_REPLACED_BY','en','Replaced by','2014-01-15') , ( 'LABEL','ID_REPLACED_LOGO','en','The logo was replaced','2014-01-15') , ( 'LABEL','ID_REPLACE_ALL','en','Replace all','2016-03-30') , @@ -61000,6 +61001,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_STARTED_SUCCESSFULLY','en','Started successfully','2014-01-15') , ( 'LABEL','ID_STARTING_LOG_FILE','en','Starting log file','2014-01-15') , ( 'LABEL','ID_STARTING_NEW_CASE','en','Starting new case','2014-01-15') , +( 'LABEL','ID_STARTING_TIME','en','Starting time','2014-01-15') , ( 'LABEL','ID_START_A_NEW_CASE_FOR','en','Start a new case for:','2014-01-15') , ( 'LABEL','ID_START_CASE','en','New','2014-01-15') , ( 'LABEL','ID_START_DATE','en','Start Date','2014-01-15') , From d2cd0c2285e636c4a110d9a728b73fc8488d0687 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 16 Jun 2020 11:24:32 -0400 Subject: [PATCH 20/39] PMCORE-1651 --- .../src/ProcessMaker/Model/AppNotesTest.php | 47 +++++++++++++++++++ workflow/engine/controllers/appProxy.php | 3 ++ .../src/ProcessMaker/Model/AppNotes.php | 19 ++++++-- 3 files changed, 66 insertions(+), 3 deletions(-) create mode 100644 tests/unit/workflow/engine/src/ProcessMaker/Model/AppNotesTest.php diff --git a/tests/unit/workflow/engine/src/ProcessMaker/Model/AppNotesTest.php b/tests/unit/workflow/engine/src/ProcessMaker/Model/AppNotesTest.php new file mode 100644 index 000000000..cf5fa88c0 --- /dev/null +++ b/tests/unit/workflow/engine/src/ProcessMaker/Model/AppNotesTest.php @@ -0,0 +1,47 @@ +states('foreign_keys')->create(); + $notes = new AppNotes(); + $res = $notes->getNotes($appNotes->APP_UID); + $this->assertNotEmpty($res); + } + + /** + * Review get total cases notes by cases + * + * @test + */ + public function it_test_get_total_case_notes() + { + $application = factory(Application::class)->create(); + $appNotes = factory(AppNotes::class, 10)->states('foreign_keys')->create([ + 'APP_UID' => $application->APP_UID + ]); + $notes = new AppNotes(); + $total = $notes->getTotal($application->APP_UID); + $this->assertEquals(10, $total); + } +} \ No newline at end of file diff --git a/workflow/engine/controllers/appProxy.php b/workflow/engine/controllers/appProxy.php index f105d3b71..0038f01d3 100644 --- a/workflow/engine/controllers/appProxy.php +++ b/workflow/engine/controllers/appProxy.php @@ -117,6 +117,7 @@ class AppProxy extends HttpProxyController // Get the notes $appNote = new Notes(); + $total = $appNote->getTotal($appUid); $response = $appNote->getNotes($appUid, $httpData->start, $httpData->limit); $response = AppNotes::applyHtmlentitiesInNotes($response); @@ -128,6 +129,8 @@ class AppProxy extends HttpProxyController $response['notes'][$iterator]['attachments'] = $documents->getFiles($value['NOTE_ID']); $iterator++; } + // Get the total of cases notes by case + $response['totalCount'] = $total; require_once("classes/model/Application.php"); $application = new Application(); diff --git a/workflow/engine/src/ProcessMaker/Model/AppNotes.php b/workflow/engine/src/ProcessMaker/Model/AppNotes.php index 66c00b43b..b5195e9c5 100644 --- a/workflow/engine/src/ProcessMaker/Model/AppNotes.php +++ b/workflow/engine/src/ProcessMaker/Model/AppNotes.php @@ -98,9 +98,22 @@ class AppNotes extends Model $notes['notes'][] = $row; }); - // Add the total of rows to return - $notes['totalCount'] = $limit; - return $notes; } + + /** + * Return the total notes by case + * + * @param string $appUid + * + * @return array + */ + public static function getTotal(string $appUid) + { + $query = AppNotes::query()->select(['NOTE_ID']); + $query->appUid($appUid); + $total = $query->get()->count(); + + return $total; + } } From 233a5588d626835c1e6780811d2170764d584944 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 16 Jun 2020 16:22:04 -0400 Subject: [PATCH 21/39] PMCORE-1655 --- workflow/engine/src/ProcessMaker/BusinessModel/Variable.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php b/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php index f51538af3..bfd8519cb 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php @@ -151,6 +151,8 @@ class Variable if (isset($arrayData["VAR_FIELD_TYPE"])) { $arrayData["VAR_FIELD_TYPE"] = $this->validateVarFieldType($arrayData["VAR_FIELD_TYPE"]); $variable->setVarFieldType($arrayData["VAR_FIELD_TYPE"]); + $fielTypeId = self::$varTypesValues[$arrayData["VAR_FIELD_TYPE"]]; + $variable->setVarFieldTypeId($fielTypeId); } if (isset($arrayData["VAR_FIELD_SIZE"])) { $variable->setVarFieldSize($arrayData["VAR_FIELD_SIZE"]); From 9d8479e9c43a4e62aecb9a1aeccd295e6fade8c6 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Tue, 16 Jun 2020 16:51:14 -0400 Subject: [PATCH 22/39] PMCORE-1662 --- workflow/engine/classes/class.pmFunctions.php | 4 ++-- workflow/engine/templates/app/main.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow/engine/classes/class.pmFunctions.php b/workflow/engine/classes/class.pmFunctions.php index 49ee94616..040ddb450 100644 --- a/workflow/engine/classes/class.pmFunctions.php +++ b/workflow/engine/classes/class.pmFunctions.php @@ -3016,13 +3016,13 @@ function PMFUnpauseCase ($caseUid, $delIndex, $userUid) * @param string(32) | $taskUid | ID of the task | The unique ID of the task. * @param string(32) | $userUid | ID user | The unique ID of the user who will add note case. * @param string | $note | Note of the case | Note of the case. - * @param int | $sendMail = 1 | Send mail | Optional parameter. If set to 1, will send an email to all participants in the case. + * @param int | $sendMail = 0 | Send mail | Optional parameter. If set to 1, will send an email to all participants in the case. * @param array | $files | Array of files | An array of files (full paths) to be attached to the case notes. * * @return int | $result | Result of the add a case note | Returns 1 if the note has been added to the case.; otherwise, returns 0 if an error occurred. * */ -function PMFAddCaseNote($caseUid, $processUid, $taskUid, $userUid, $note, $sendMail = 1, $files = []) +function PMFAddCaseNote($caseUid, $processUid, $taskUid, $userUid, $note, $sendMail = 0, $files = []) { $ws = new WsBase(); $result = $ws->addCaseNote($caseUid, $processUid, $taskUid, $userUid, $note, $sendMail, $files); diff --git a/workflow/engine/templates/app/main.js b/workflow/engine/templates/app/main.js index 8d9e79aaf..c1b64b886 100644 --- a/workflow/engine/templates/app/main.js +++ b/workflow/engine/templates/app/main.js @@ -302,7 +302,7 @@ function openCaseNotesWindow(appUid1, delIndex, modalSw, appTitle, proUid, taskU xtype: "checkbox", id: "chkSendMail", name: "chkSendMail", - checked: true, + checked: false, boxLabel: _("ID_CASE_NOTES_LABEL_SEND") }, '->', From 2c40193914c8085c171ce2fd9e10ffe6a6afc0c3 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Wed, 17 Jun 2020 13:59:20 +0000 Subject: [PATCH 23/39] validation in translation.en & unassigned case --- app/Console/Commands/ScheduleRunCommand.php | 2 +- workflow/engine/methods/scheduler/index.php | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/ScheduleRunCommand.php b/app/Console/Commands/ScheduleRunCommand.php index 10937cb62..e642fc225 100755 --- a/app/Console/Commands/ScheduleRunCommand.php +++ b/app/Console/Commands/ScheduleRunCommand.php @@ -52,7 +52,7 @@ class ScheduleRunCommand extends BaseCommand $ending = isset($p->startingTime) ? $p->endingTime : "23:59"; $timezone = isset($p->timezone) && $p->timezone != "" ? $p->timezone : date_default_timezone_get(); - $body = str_replace("-c", $user . " -c", $p->body); + $body = str_replace(" -c"," " . $user . " -c", $p->body); $that->schedule->exec($body)->cron($p->expression)->between($starting, $ending)->timezone($timezone)->when(function () use ($p) { $now = Carbon::now(); $result = false; diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php index 36f69107d..3185d2ddc 100755 --- a/workflow/engine/methods/scheduler/index.php +++ b/workflow/engine/methods/scheduler/index.php @@ -17,8 +17,11 @@ try { $fields["category"] = $category; $fields["lang"] = SYS_LANG; $fields["workspace"] = config("system.workspace"); - $fields["translation"] = "/js/ext/translation." . SYS_LANG . "." . G::browserCacheFilesGetUid() . ".js"; - + if (G::browserCacheFilesGetUid()) { + $fields["translation"] = "/js/ext/translation." . SYS_LANG . "." . G::browserCacheFilesGetUid() . ".js"; + } else { + $fields["translation"] = "/js/ext/translation." . SYS_LANG . ".js"; + } $G_PUBLISH->addContent('smarty' , 'scheduler/index.html' , '', '' , $fields); //Adding a HTML file .html $G_PUBLISH->addContent('smarty' , PATH_HOME . 'public_html/lib/taskscheduler/index.html'); //Adding a HTML file .html G::RenderPage("publish" , "raw"); From f617bf34c1c1a0bc02ccbcb54abcdea6a693d5b2 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Wed, 17 Jun 2020 16:30:32 +0000 Subject: [PATCH 24/39] fix validation --- workflow/engine/methods/scheduler/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/methods/scheduler/index.php b/workflow/engine/methods/scheduler/index.php index 3185d2ddc..5691b0f0e 100755 --- a/workflow/engine/methods/scheduler/index.php +++ b/workflow/engine/methods/scheduler/index.php @@ -17,7 +17,7 @@ try { $fields["category"] = $category; $fields["lang"] = SYS_LANG; $fields["workspace"] = config("system.workspace"); - if (G::browserCacheFilesGetUid()) { + if (!empty(G::browserCacheFilesGetUid())) { $fields["translation"] = "/js/ext/translation." . SYS_LANG . "." . G::browserCacheFilesGetUid() . ".js"; } else { $fields["translation"] = "/js/ext/translation." . SYS_LANG . ".js"; From 841e8b45c3b7939a170e381637ba4d1a16136bc7 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Wed, 17 Jun 2020 17:36:32 -0400 Subject: [PATCH 25/39] PMCORE-1656 PMCORE-1178 There is no validation of mime-type when upload a modified file. --- .../Validation/ValidationUploadedFiles.php | 48 ++++--------------- 1 file changed, 8 insertions(+), 40 deletions(-) diff --git a/workflow/engine/src/ProcessMaker/Validation/ValidationUploadedFiles.php b/workflow/engine/src/ProcessMaker/Validation/ValidationUploadedFiles.php index 858c622aa..d1f6d2cfc 100644 --- a/workflow/engine/src/ProcessMaker/Validation/ValidationUploadedFiles.php +++ b/workflow/engine/src/ProcessMaker/Validation/ValidationUploadedFiles.php @@ -6,6 +6,7 @@ use Bootstrap; use G; use Illuminate\Filesystem\Filesystem; use Illuminate\Support\Facades\Cache; +use Monolog\Logger; use ProcessMaker\Core\System; use ProcessMaker\Services\OAuth2\Server; use ProcessMaker\Util\PhpShorthandByte; @@ -301,7 +302,7 @@ class ValidationUploadedFiles */ public function runRulesForPostFilesOfNote($file) { - $validator = new Validator(); + $validator = $this->runRules($file); //rule: file exists $rule = $validator->addRule(); @@ -314,20 +315,9 @@ class ValidationUploadedFiles } return self::VALID; }) - ->status(400) + ->status(Logger::ERROR) ->log(function($rule) { - /** - * Levels supported by MonologProvider is: - * 100 "DEBUG" - * 200 "INFO" - * 250 "NOTICE" - * 300 "WARNING" - * 400 "ERROR" - * 500 "CRITICAL" - * 550 "ALERT" - * 600 "EMERGENCY" - */ - Bootstrap::registerMonologPhpUploadExecution('phpUpload', $rule->getStatus(), $rule->getMessage(), $rule->getData()->filename); + Bootstrap::registerMonologPhpUploadExecution('phpUpload', Logger::ERROR, $rule->getMessage(), $rule->getData()->filename); }); //rule: extensions @@ -344,20 +334,9 @@ class ValidationUploadedFiles } return self::VALID; }) - ->status(400) + ->status(Logger::ERROR) ->log(function($rule) { - /** - * Levels supported by MonologProvider is: - * 100 "DEBUG" - * 200 "INFO" - * 250 "NOTICE" - * 300 "WARNING" - * 400 "ERROR" - * 500 "CRITICAL" - * 550 "ALERT" - * 600 "EMERGENCY" - */ - Bootstrap::registerMonologPhpUploadExecution('phpUpload', $rule->getStatus(), $rule->getMessage(), $rule->getData()->filename); + Bootstrap::registerMonologPhpUploadExecution('phpUpload', Logger::ERROR, $rule->getMessage(), $rule->getData()->filename); }); //rule: file size @@ -375,20 +354,9 @@ class ValidationUploadedFiles } return self::VALID; }) - ->status(400) + ->status(Logger::ERROR) ->log(function($rule) { - /** - * Levels supported by MonologProvider is: - * 100 "DEBUG" - * 200 "INFO" - * 250 "NOTICE" - * 300 "WARNING" - * 400 "ERROR" - * 500 "CRITICAL" - * 550 "ALERT" - * 600 "EMERGENCY" - */ - Bootstrap::registerMonologPhpUploadExecution('phpUpload', $rule->getStatus(), $rule->getMessage(), $rule->getData()->filename); + Bootstrap::registerMonologPhpUploadExecution('phpUpload', Logger::ERROR, $rule->getMessage(), $rule->getData()->filename); }); return $validator->validate(); From 7810657ec613877f7b4125b4b9dd2d2347b2c98e Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Wed, 17 Jun 2020 18:13:50 -0400 Subject: [PATCH 26/39] PMCORE-1639 --- workflow/engine/classes/class.pmFunctions.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/workflow/engine/classes/class.pmFunctions.php b/workflow/engine/classes/class.pmFunctions.php index 040ddb450..03756fc3d 100644 --- a/workflow/engine/classes/class.pmFunctions.php +++ b/workflow/engine/classes/class.pmFunctions.php @@ -468,12 +468,13 @@ function evaluateFunction($aGrid, $sExpresion) * stantard deviation, variance, percentile, count, count distinct * * @name PMFTotalCalculation - * @label PMFTotalCalculation Function + * @label PMF TotalCalculation * @link http://wiki.processmaker.com/index.php/ProcessMaker_Functions#PMFTotalCalculation.28.29 - * @param array | $grid | Grid | The input grid. + * @param array | $grid | Grid | The input grid * @param string (32) | $field | Name of field | The name of the field. - * @param string (32) | $function | Operation. - * @return int|float|array | $result | Result | Result according of the function + * @param string (32) | $function | Operation | More information about the type of calculations can be found in https://wiki.processmaker.com/3.2/ProcessMaker_Functions + * + * @return mixed | $result | Result | Result according of the operation * */ function PMFTotalCalculation($grid, $field, $function) From 9eccca3c74c6f3e3d31f3eddd49096c91e6269fa Mon Sep 17 00:00:00 2001 From: Rodrigo Quelca Date: Thu, 18 Jun 2020 09:27:53 -0400 Subject: [PATCH 27/39] PMCORE-1674: Last file attached is attached in every case note --- workflow/engine/templates/app/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/templates/app/main.js b/workflow/engine/templates/app/main.js index 8d9e79aaf..c92ab7f9d 100644 --- a/workflow/engine/templates/app/main.js +++ b/workflow/engine/templates/app/main.js @@ -421,7 +421,7 @@ function newNoteHandler() Ext.getCmp('caseNoteText').reset(); uploadFields = caseNotesForm.findByType('fileuploadfield'); // clean the first upload field - uploadFields[0].setRawValue(null); + uploadFields[0].reset(); for (i = 1; i < uploadFields.length; i += 1) { caseNotesForm.remove(uploadFields[i]); } From 6fa97ca655ea494b2e550be5f48f09591bc718ae Mon Sep 17 00:00:00 2001 From: Fabio Guachalla Date: Thu, 18 Jun 2020 15:39:22 -0400 Subject: [PATCH 28/39] PMCORE-1682:Rollback PMCORE-506 (Permit same ID Name on Grids) --- workflow/engine/src/ProcessMaker/BusinessModel/DynaForm.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/DynaForm.php b/workflow/engine/src/ProcessMaker/BusinessModel/DynaForm.php index 1b38e2b33..2c5f74e19 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/DynaForm.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/DynaForm.php @@ -1178,9 +1178,7 @@ class DynaForm } foreach ($oldColumns as $oldColumn) { if (strtolower(AdditionalTables::getPHPName($column->id)) === strtolower(AdditionalTables::getPHPName($oldColumn->id))) { - if (strtolower(AdditionalTables::getPHPName($column->var_name)) === strtolower(AdditionalTables::getPHPName($oldColumn->var_name))) { - $identicals[] = "'" . $column->id . "' - '" . $oldColumn->id . "'"; - } + $identicals[] = "'" . $column->id . "' - '" . $oldColumn->id . "'"; } } } From 0d1c5e426e90a6e351606a841ef0fdace397678e Mon Sep 17 00:00:00 2001 From: Andrea Adamczyk Date: Thu, 18 Jun 2020 11:11:13 -0400 Subject: [PATCH 29/39] PMCORE-1641 --- .../ProcessMaker/BusinessModel/ListsTest.php | 30 +++++++++++++++++++ .../src/ProcessMaker/BusinessModel/Lists.php | 3 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/ListsTest.php diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/ListsTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/ListsTest.php new file mode 100644 index 000000000..7afc0137e --- /dev/null +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/ListsTest.php @@ -0,0 +1,30 @@ +create(); + + $list = new Lists(); + $res = $list->getList('inbox', ['userId' => $user->USR_UID]); + + $this->assertEmpty($res['data']); + $this->assertEquals(0, $res['totalCount']); + } +} diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Lists.php b/workflow/engine/src/ProcessMaker/BusinessModel/Lists.php index e40d8f7c5..0302f2c20 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Lists.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Lists.php @@ -69,7 +69,8 @@ class Lists ]; // If the feature for highlight the home folders is disabled, add self-service list to the map - if (!HIGHLIGHT_HOME_FOLDER_ENABLE) { + $flag = defined('HIGHLIGHT_HOME_FOLDER_ENABLE') ? HIGHLIGHT_HOME_FOLDER_ENABLE : 0; + if (!$flag) { $this->mapList['ListSelfService'] = 'CASES_SELFSERVICE'; } From d9cc26ca375140a937dbf329ed01c6f3ad1a1448 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Fri, 19 Jun 2020 11:49:18 -0400 Subject: [PATCH 30/39] PMCORE-1677 Dependent variable needs to search the data outside the grid if the prefix is @? --- tests/resources/dynaform2.json | 444 ++++++++++++++++++ tests/resources/fieldDynaform.json | 34 ++ .../engine/classes/PmDynaformTest.php | 170 ++++++- .../BusinessModel/VariableTest.php | 85 +++- workflow/engine/classes/PmDynaform.php | 107 ++++- .../ProcessMaker/BusinessModel/Variable.php | 11 +- 6 files changed, 801 insertions(+), 50 deletions(-) create mode 100644 tests/resources/dynaform2.json create mode 100644 tests/resources/fieldDynaform.json diff --git a/tests/resources/dynaform2.json b/tests/resources/dynaform2.json new file mode 100644 index 000000000..c849a4c18 --- /dev/null +++ b/tests/resources/dynaform2.json @@ -0,0 +1,444 @@ +{ + "name": "f1", + "description": "", + "items": [ + { + "type": "form", + "variable": "", + "var_uid": "", + "dataType": "", + "id": "8463235965ee964cd21d5d5065152425", + "name": "f1", + "description": "", + "mode": "edit", + "script": "", + "language": "en", + "externalLibs": "", + "printable": false, + "items": [ + [ + { + "type": "title", + "id": "title0000000001", + "label": "Variables reference on grids", + "ariaLabel": "", + "colSpan": 12 + } + ], + [ + { + "type": "dropdown", + "variable": "stateDropdown", + "var_uid": "6433597845eea6b2ad10097077910842", + "dataType": "string", + "protectedValue": false, + "id": "stateDropdown", + "name": "stateDropdown", + "label": "State Dropdown", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IC_UID, IC_NAME FROM ISO_COUNTRY", + "memoryCache": false, + "dataVariable": "", + "options": [], + "var_name": "stateDropdown", + "colSpan": 12 + } + ], + [ + { + "type": "dropdown", + "variable": "countryDropdown", + "var_uid": "8461594435ee964da8652b7084948416", + "dataType": "string", + "protectedValue": false, + "id": "countryDropdown", + "name": "countryDropdown", + "label": "Country Dropdown", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IC_UID, IC_NAME FROM ISO_COUNTRY", + "memoryCache": false, + "dataVariable": "", + "options": [], + "var_name": "countryDropdown", + "colSpan": 4 + }, + { + "type": "grid", + "variable": "gridVar003", + "var_uid": "6174086855ee964da934c06026331273", + "dataType": "grid", + "protectedValue": false, + "id": "gridVar003", + "name": "gridVar003", + "label": "GRID1", + "hint": "", + "required": false, + "requiredFieldErrorMessage": "", + "columns": [ + { + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "stateDropdown", + "name": "stateDropdown", + "label": "State use form", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION \nWHERE IC_UID = @?countryDropdown ORDER BY IS_NAME", + "memoryCache": false, + "dataVariable": "", + "options": [], + "columnWidth": "25", + "width": 100, + "title": "State use form", + "var_name": "gridVar003", + "gridName": "gridVar003" + }, + { + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "countryGrid", + "name": "countryGrid", + "label": "country", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IC_UID, IC_NAME FROM ISO_COUNTRY", + "memoryCache": false, + "dataVariable": "", + "options": [], + "columnWidth": "25", + "width": 100, + "title": "country" + }, + { + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "dropdown0000000003", + "name": "dropdown0000000003", + "label": "Country Grid", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION \nWHERE IC_UID = @@countryGrid ORDER BY IS_NAME", + "memoryCache": false, + "dataVariable": "", + "options": [], + "columnWidth": "25", + "width": 100, + "title": "Country Grid" + } + ], + "data": [], + "mode": "parent", + "layout": "responsive", + "pageSize": "0", + "addRow": true, + "deleteRow": true, + "title": "GRID1", + "colSpan": 8 + } + ], + [ + { + "type": "label", + "id": "label0000000002", + "label": "En este segundo dropdown la variable \"stateDropdown\" tiene el mismo ID que en el primer grid. Cuando tienen el mismo ID el segundo dropdown no carga sus opciones\n", + "ariaLabel": "", + "colSpan": 12 + } + ], + [ + { + "type": "dropdown", + "variable": "countryDropdown1", + "var_uid": "3870420235ee964da9d9205006775679", + "dataType": "string", + "protectedValue": false, + "id": "countryDropdown1", + "name": "countryDropdown1", + "label": "Country Dropdown 1", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IC_UID, IC_NAME FROM ISO_COUNTRY", + "memoryCache": false, + "dataVariable": "", + "options": [], + "var_name": "countryDropdown1", + "colSpan": 4 + }, + { + "type": "grid", + "variable": "gridVar004", + "var_uid": "5972116805ee964daa950e7067922526", + "dataType": "grid", + "protectedValue": false, + "id": "gridVar004", + "name": "gridVar004", + "label": "GRID2", + "hint": "", + "required": false, + "requiredFieldErrorMessage": "", + "columns": [ + { + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "stateDropdown", + "name": "stateDropdown", + "label": "State use form", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION \nWHERE IC_UID = @@countryDropdown1 ORDER BY IS_NAME", + "memoryCache": false, + "dataVariable": "", + "options": [], + "columnWidth": "25", + "width": 100, + "title": "State use form", + "var_name": "gridVar004" + }, + { + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "countryGrid", + "name": "countryGrid", + "label": "country", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IC_UID, IC_NAME FROM ISO_COUNTRY", + "memoryCache": false, + "dataVariable": "", + "options": [], + "columnWidth": "25", + "width": 100, + "title": "country" + }, + { + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "dropdown0000000004", + "name": "dropdown0000000004", + "label": "Country Grid", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION \nWHERE IC_UID = @@countryGrid ORDER BY IS_NAME", + "memoryCache": false, + "dataVariable": "", + "options": [], + "columnWidth": "25", + "width": 100, + "title": "Country Grid" + } + ], + "data": [], + "mode": "parent", + "layout": "responsive", + "pageSize": "0", + "addRow": true, + "deleteRow": true, + "title": "GRID2", + "colSpan": 8 + } + ], + [ + { + "type": "submit", + "id": "submit0000000001", + "name": "submit0000000001", + "label": "submit_1", + "tabIndex": "", + "ariaLabel": "", + "colSpan": 12 + } + ] + ], + "variables": [ + { + "var_uid": "6433597845eea6b2ad10097077910842", + "prj_uid": "3973270015ee964bd20e167047282910", + "var_name": "stateDropdown", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, + { + "var_uid": "8461594435ee964da8652b7084948416", + "prj_uid": "3973270015ee964bd20e167047282910", + "var_name": "countryDropdown", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": [], + "inp_doc_uid": "", + "var_uid_old": "4356061615edff028cae968013552938", + "var_name_old": "countryDropdown", + "prj_uid_old": "4922885715edfecb76f0024086363079" + }, + { + "var_uid": "6174086855ee964da934c06026331273", + "prj_uid": "3973270015ee964bd20e167047282910", + "var_name": "gridVar003", + "var_field_type": "grid", + "var_field_size": 10, + "var_label": "grid", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": [], + "inp_doc_uid": "", + "var_uid_old": "4763913505ee04a4acfac28032288647", + "var_name_old": "gridVar003", + "prj_uid_old": "4922885715edfecb76f0024086363079" + }, + { + "var_uid": "3870420235ee964da9d9205006775679", + "prj_uid": "3973270015ee964bd20e167047282910", + "var_name": "countryDropdown1", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": [], + "inp_doc_uid": "", + "var_uid_old": "5743244195ee04b6c466484086183124", + "var_name_old": "countryDropdown1", + "prj_uid_old": "4922885715edfecb76f0024086363079" + }, + { + "var_uid": "5972116805ee964daa950e7067922526", + "prj_uid": "3973270015ee964bd20e167047282910", + "var_name": "gridVar004", + "var_field_type": "grid", + "var_field_size": 10, + "var_label": "grid", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": [], + "inp_doc_uid": "", + "var_uid_old": "8181709185ee04b0c2f8502096315574", + "var_name_old": "gridVar004", + "prj_uid_old": "4922885715edfecb76f0024086363079" + } + ] + } + ] +} \ No newline at end of file diff --git a/tests/resources/fieldDynaform.json b/tests/resources/fieldDynaform.json new file mode 100644 index 000000000..b2ccd245d --- /dev/null +++ b/tests/resources/fieldDynaform.json @@ -0,0 +1,34 @@ +{ + "type": "dropdown", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "stateDropdown", + "name": "stateDropdown", + "label": "State use form", + "tabIndex": "", + "defaultValue": "BO", + "placeholder": "BO", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION \nWHERE IC_UID = @?countryDropdown ORDER BY IS_NAME", + "memoryCache": false, + "dataVariable": "", + "options": [ + { + "value": "val1", + "label": "val1" + } + ], + "columnWidth": "25", + "width": 100, + "title": "State use form", + "var_name": "gridVar003" +} \ No newline at end of file diff --git a/tests/unit/workflow/engine/classes/PmDynaformTest.php b/tests/unit/workflow/engine/classes/PmDynaformTest.php index a0af45cf8..d20795b19 100644 --- a/tests/unit/workflow/engine/classes/PmDynaformTest.php +++ b/tests/unit/workflow/engine/classes/PmDynaformTest.php @@ -13,15 +13,13 @@ use Tests\TestCase; */ class PmDynaformTest extends TestCase { - - use DatabaseTransactions; - /** - * Constructor of the class. + * Sets up the fixture, for example, opens a network connection. + * This method is called before a test is executed. */ - public function __construct($name = null, array $data = [], $dataName = '') + protected function setUp() { - parent::__construct($name, $data, $dataName); + parent::setUp(); $_SERVER["REQUEST_URI"] = ""; if (!defined("DB_ADAPTER")) { define("DB_ADAPTER", "mysql"); @@ -38,15 +36,7 @@ class PmDynaformTest extends TestCase if (!defined("DB_PASS")) { define("DB_PASS", env('DB_PASSWORD')); } - } - - /** - * Sets up the fixture, for example, opens a network connection. - * This method is called before a test is executed. - */ - protected function setUp() - { - parent::setUp(); + Dynaform::truncate(); } /** @@ -1042,6 +1032,156 @@ class PmDynaformTest extends TestCase $reflectionMethod->invokeArgs($dynaform, [&$a]); $this->assertInstanceOf('ReflectionMethod', $reflectionMethod); } + + /** + * This verify method getValuesDependentFields. + * @test + * @covers PmDynaform::jsonr() + * @covers PmDynaform::getValuesDependentFields() + */ + public function it_should_test_get_values_dependent_fields() + { + $pathData = PATH_TRUNK . "/tests/resources/dynaform2.json"; + $data = file_get_contents($pathData); + $json = json_decode($data); + + $pathData2 = PATH_TRUNK . "/tests/resources/fieldDynaform.json"; + $data2 = file_get_contents($pathData2); + $json2 = json_decode($data2); + + $dynaform = new PmDynaform(); + $dynaform->record = [ + 'DYN_CONTENT' => $data + ]; + $dynaform->fields = [ + 'APP_DATA' => [ + 'stateDropdown' => 'stateDropdown' + ] + ]; + $reflection = new ReflectionClass($dynaform); + $reflectionMethod = $reflection->getMethod('getValuesDependentFields'); + $reflectionMethod->setAccessible(true); + $result = $reflectionMethod->invokeArgs($dynaform, [&$json2]); + + $this->assertArrayHasKey('countryDropdown', $result); + } + + /** + * This verify method searchField. + * @test + * @covers PmDynaform::jsonr() + * @covers PmDynaform::searchField() + */ + public function it_should_test_search_field() + { + $pathData = PATH_TRUNK . "/tests/resources/dynaform2.json"; + $data = file_get_contents($pathData); + $json = json_decode($data); + + $pathData2 = PATH_TRUNK . "/tests/resources/fieldDynaform.json"; + $data2 = file_get_contents($pathData2); + $json2 = json_decode($data2); + + $dynaform = factory(Dynaform::class)->create([ + 'DYN_CONTENT' => $data + ]); + factory(Dynaform::class)->create([ + 'DYN_CONTENT' => $data, + 'PRO_UID' => $dynaform->PRO_UID + ]); + + $dynUid = $dynaform->DYN_UID; + $fieldId = 'stateDropdown'; + $proUid = ''; + $and = []; + + $dynaform = new PmDynaform(); + $result = $dynaform->searchField($dynUid, $fieldId, $proUid, $and); + + $this->assertObjectHasAttribute('id', $result); + $this->assertEquals($result->id, 'stateDropdown'); + } + + /** + * This verify method replaceDataField. + * @test + * @covers PmDynaform::jsonr() + * @covers PmDynaform::replaceDataField() + */ + public function it_should_test_replace_data_field() + { + $sql = "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION WHERE IC_UID = '@?countryDropdown' ORDER BY IS_NAME"; + $data = [ + 'countryDropdown' => 'BO' + ]; + $dynaform = new PmDynaform(); + $reflection = new ReflectionClass($dynaform); + $reflectionMethod = $reflection->getMethod('replaceDataField'); + $reflectionMethod->setAccessible(true); + $result = $reflectionMethod->invokeArgs($dynaform, [&$sql, $data]); + + $expected = "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION WHERE IC_UID = 'BO' ORDER BY IS_NAME"; + $this->assertEquals($expected, $result); + } + + /** + * This verify method completeAdditionalHelpInformationOnControls. + * @test + * @covers PmDynaform::jsonr() + * @covers PmDynaform::completeAdditionalHelpInformationOnControls() + */ + public function it_should_test_complete_additional_help_information_on_controls() + { + $pathData = PATH_TRUNK . "/tests/resources/dynaform2.json"; + $data = file_get_contents($pathData); + $json = json_decode($data); + + $dynaform = new PmDynaform(); + $reflection = new ReflectionClass($dynaform); + $reflectionMethod = $reflection->getMethod('completeAdditionalHelpInformationOnControls'); + $reflectionMethod->setAccessible(true); + $reflectionMethod->invokeArgs($dynaform, [&$json]); + $this->assertInstanceOf('ReflectionMethod', $reflectionMethod); + } + + /** + * This verify method jsonsf. + * @test + * @covers PmDynaform::jsonr() + * @covers PmDynaform::jsonsf() + */ + public function it_should_test_jsonsf() + { + $pathData = PATH_TRUNK . "/tests/resources/dynaform2.json"; + $data = file_get_contents($pathData); + $json = json_decode($data); + + $pathData2 = PATH_TRUNK . "/tests/resources/fieldDynaform.json"; + $data2 = file_get_contents($pathData2); + $json2 = json_decode($data2); + + $dynaform = factory(Dynaform::class)->create([ + 'DYN_CONTENT' => $data + ]); + factory(Dynaform::class)->create([ + 'DYN_CONTENT' => $data, + 'PRO_UID' => $dynaform->PRO_UID + ]); + + $id = 'stateDropdown'; + $for = 'id'; + $and = ['gridName' => 'gridVar003']; + + $dynaform = new PmDynaform(); + $reflection = new ReflectionClass($dynaform); + + $reflectionMethod = $reflection->getMethod('jsonsf'); + $reflectionMethod->setAccessible(true); + $result = $reflectionMethod->invokeArgs($dynaform, [&$json, $id, $for, $and]); + + $this->assertObjectHasAttribute('id', $result); + $this->assertEquals($result->id, 'stateDropdown'); + } } // Dummy function used for the coverture diff --git a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php index 261e43ebd..ed9935a66 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/BusinessModel/VariableTest.php @@ -1,8 +1,12 @@ create(); factory(ProcessVariables::class)->create([ - 'PRJ_UID' => $process->PRO_UID, - 'PRO_ID' => $process->PRO_ID, - ] - ); + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ]); $properties = [ 'VAR_UID' => G::generateUniqueID(), 'VAR_NAME' => 'var_test', @@ -69,10 +73,9 @@ class VariableTest extends TestCase { $process = factory(Process::class)->create(); factory(ProcessVariables::class)->create([ - 'PRJ_UID' => $process->PRO_UID, - 'PRO_ID' => $process->PRO_ID, - ] - ); + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ]); $properties = [ 'VAR_UID' => G::generateUniqueID(), 'VAR_NAME' => '', @@ -101,10 +104,9 @@ class VariableTest extends TestCase { $process = factory(Process::class)->create(); factory(ProcessVariables::class)->create([ - 'PRJ_UID' => $process->PRO_UID, - 'PRO_ID' => $process->PRO_ID, - ] - ); + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ]); $properties = [ 'VAR_UID' => G::generateUniqueID(), 'VAR_NAME' => 'var_test', @@ -133,10 +135,9 @@ class VariableTest extends TestCase { $process = factory(Process::class)->create(); factory(ProcessVariables::class)->create([ - 'PRJ_UID' => $process->PRO_UID, - 'PRO_ID' => $process->PRO_ID, - ] - ); + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ]); $properties = [ 'VAR_UID' => G::generateUniqueID(), 'VAR_NAME' => 'var_test', @@ -166,10 +167,9 @@ class VariableTest extends TestCase $process = factory(Process::class)->create(); factory(ProcessVariables::class)->create([ - 'PRJ_UID' => $process->PRO_UID, - 'PRO_ID' => $process->PRO_ID, - ] - ); + 'PRJ_UID' => $process->PRO_UID, + 'PRO_ID' => $process->PRO_ID, + ]); $variable = new Variable(); $res = $variable->getVariables($process->PRO_UID); $this->assertNotEmpty($res); @@ -227,4 +227,49 @@ class VariableTest extends TestCase $res = $variable->getVariablesByType($process->PRO_UID, 2, null, null, 'other'); $this->assertEmpty($res); } + + /** + * This verify method executeSqlControl. + * @test + * @covers \ProcessMaker\BusinessModel\Variable::executeSqlControl() + */ + public function it_should_test_execute_sql_control() + { + $pathData = PATH_TRUNK . "/tests/resources/dynaform2.json"; + $data = file_get_contents($pathData); + $json = json_decode($data); + + $dynaform = factory(Dynaform::class)->create([ + 'DYN_CONTENT' => $data + ]); + $application = factory(Application::class)->create(); + + $proUid = ''; + $params = [ + 'app_uid' => $application->APP_UID, + 'countryDropdown1' => 'BO', + 'dyn_uid' => $dynaform->DYN_UID, + 'field_id' => 'stateDropdown', + 'grid_name' => 'gridVar004', + ]; + $_SERVER["REQUEST_URI"] = ''; + $variable = new Variable(); + $result = $variable->executeSqlControl($proUid, $params); + + $this->assertNotEmpty($result); + } + + /** + * This verify method executeSqlControl try exception. + * @test + * @covers \ProcessMaker\BusinessModel\Variable::executeSqlControl() + */ + public function it_should_test_execute_sql_control_with_exception() + { + //assert + $this->expectException(Exception::class); + + $variable = new Variable(); + $result = $variable->executeSqlControl(null, []); + } } diff --git a/workflow/engine/classes/PmDynaform.php b/workflow/engine/classes/PmDynaform.php index a7f77d3b6..1de2ba782 100644 --- a/workflow/engine/classes/PmDynaform.php +++ b/workflow/engine/classes/PmDynaform.php @@ -22,6 +22,7 @@ class PmDynaform private $lastQueryError = null; private $propertiesToExclude = []; private $sysSys = null; + private $fieldsAppData; public $credentials = null; public $displayMode = null; public $fields = null; @@ -91,6 +92,7 @@ class PmDynaform if (is_array($this->fields) && !isset($this->fields["APP_UID"])) { $this->fields["APP_UID"] = null; } + $this->fieldsAppData = isset($this->fields["APP_DATA"]) ? $this->fields["APP_DATA"] : []; //todo: compatibility checkbox if ($this->record !== null && isset($this->record["DYN_CONTENT"]) && $this->record["DYN_CONTENT"] !== "") { @@ -338,7 +340,7 @@ class PmDynaform } } } - $sql = G::replaceDataField($json->sql, $dtFields, 'mysql', false); + $sql = $this->replaceDataField($json->sql, $dtFields); if ($value === "suggest") { $sql = $this->prepareSuggestSql($sql, $json); } @@ -686,6 +688,8 @@ class PmDynaform $json->dataGridEnvironment = "onDataGridEnvironment"; if (isset($this->fields["APP_DATA"])) { $dataGridEnvironment = $this->fields["APP_DATA"]; + //Grids only access the global variables of 'ProcessMaker', other variables are removed. + $this->fields["APP_DATA"] = Cases::getGlobalVariables($this->fields["APP_DATA"]); //restore AppData with dataVariable definition, only for columns control foreach ($columnsDataVariable as $dge) { if (isset($dataGridEnvironment[$dge])) { @@ -833,7 +837,12 @@ class PmDynaform } } - private function getValuesDependentFields($json) + /** + * Get the values of the dependent references. + * @param object $json + * @return array + */ + private function getValuesDependentFields($json): array { if (!isset($this->record["DYN_CONTENT"])) { return array(); @@ -848,7 +857,7 @@ class PmDynaform } if (isset($json->dbConnection) && isset($json->sql)) { $result = array(); - preg_match_all('/\@(?:([\@\%\#\=\!Qq])([a-zA-Z\_]\w*)|([a-zA-Z\_][\w\-\>\:]*)\(((?:[^\\\\\)]*?)*)\))/', $json->sql, $result, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE); + preg_match_all('/\@(?:([\@\%\#\=\?\!Qq])([a-zA-Z\_]\w*)|([a-zA-Z\_][\w\-\>\:]*)\(((?:[^\\\\\)]*?)*)\))/', $json->sql, $result, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE); $variables = isset($result[2]) ? $result[2] : array(); foreach ($variables as $key => $value) { //Prevents an infinite cycle. If the name of the variable is used within its own dependent. @@ -863,7 +872,7 @@ class PmDynaform } } if ($json->dbConnection !== "" && $json->dbConnection !== "none" && $json->sql !== "") { - $sql = G::replaceDataField($json->sql, $data, 'mysql', false); + $sql = $this->replaceDataField($json->sql, $data); $dt = $this->getCacheQueryData($json->dbConnection, $sql, $json->type); $row = isset($dt[0]) ? $dt[0] : []; $index = $json->variable === "" ? $json->id : $json->variable; @@ -1780,12 +1789,11 @@ class PmDynaform * @param string $dynUid * @param string $fieldId * @param string $proUid - * + * @param array $and * @return object - * * @see \ProcessMaker\BusinessModel\Variable::executeSqlControl() - */ - public function searchField($dynUid, $fieldId, $proUid = null) + */ + public function searchField($dynUid, $fieldId, $proUid = null, array $and = []) { //get pro_uid if empty if (empty($proUid)) { @@ -1828,8 +1836,8 @@ class PmDynaform } } } - - return $this->jsonsf($json, $fieldId); + $this->completeAdditionalHelpInformationOnControls($json); + return $this->jsonsf($json, $fieldId, "id", $and); } public function searchFieldByName($dyn_uid, $name) @@ -1846,19 +1854,92 @@ class PmDynaform return $this->jsonsf($json, $name, "name"); } - private function jsonsf(&$json, $id, $for = "id") + /** + * Replace data field with custom variables. + * @param string $sql + * @param array $data + * @return string + */ + private function replaceDataField(string $sql, array $data): string + { + $textParse = ''; + $dbEngine = 'mysql'; + $start = 0; + + $prefix = '\?'; + $pattern = '/\@(?:([' . $prefix . 'Qq\!])([a-zA-Z\_]\w*)|([a-zA-Z\_][\w\-\>\:]*)\(((?:[^\\\\\)]*(?:[\\\\][\w\W])?)*)\))((?:\s*\[[\'"]?\w+[\'"]?\])+|\-\>([a-zA-Z\_]\w*))?/'; + $result = preg_match_all($pattern, $sql, $match, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE); + for ($r = 0; $result !== false && $r < $result; $r++) { + $dataGlobal = array_merge($this->fieldsAppData, $data); + if (!isset($dataGlobal[$match[2][$r][0]])) { + $dataGlobal[$match[2][$r][0]] = ''; + } + if (!is_array($dataGlobal[$match[2][$r][0]])) { + $textParse = $textParse . substr($sql, $start, $match[0][$r][1] - $start); + $start = $match[0][$r][1] + strlen($match[0][$r][0]); + if (($match[1][$r][0] == '?') && (isset($dataGlobal[$match[2][$r][0]]))) { + $textParse = $textParse . $dataGlobal[$match[2][$r][0]]; + continue; + } + } + } + $textParse = $textParse . substr($sql, $start); + + $sqlResult = G::replaceDataField($textParse, $data, $dbEngine, false); + return $sqlResult; + } + + /** + * complete additional help information on controls. + * @param object $json + */ + private function completeAdditionalHelpInformationOnControls(&$json) { foreach ($json as $key => $value) { $sw1 = is_array($value); $sw2 = is_object($value); if ($sw1 || $sw2) { - $val = $this->jsonsf($value, $id, $for); + $this->completeAdditionalHelpInformationOnControls($value); + } + if (!$sw1 && !$sw2) { + if ($key === "type" && ($value === "grid")) { + foreach ($json->columns as $column) { + $column->gridName = $json->id; + } + } + } + } + } + + /** + * Gets an element within an object that represents the dynaform. Search is + * done by 'id', 'property' and additional filters. + * @param object $json + * @param string $id + * @param string $for + * @param array $and + * @return mixed + */ + private function jsonsf(&$json, string $id, string $for = "id", array $and = []) + { + foreach ($json as $key => $value) { + $sw1 = is_array($value); + $sw2 = is_object($value); + if ($sw1 || $sw2) { + $val = $this->jsonsf($value, $id, $for, $and); if ($val !== null) { return $val; } } if (!$sw1 && !$sw2) { - if ($key === $for && $id === $value) { + $filter = empty($and); + foreach ($and as $keyAnd => $valueAnd) { + $filter = isset($json->{$keyAnd}) && $json->{$keyAnd} === $valueAnd; + if ($filter === false) { + break; + } + } + if ($key === $for && $id === $value && $filter) { return $json; } } diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php b/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php index bfd8519cb..119f0cdf4 100644 --- a/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/Variable.php @@ -765,7 +765,9 @@ class Variable $start = isset($params["start"]) ? $params["start"] : 0; $limit = isset($params["limit"]) ? $params["limit"] : 10; $appUid = empty($params["app_uid"]) ? null : $params["app_uid"]; - $delIndex = (int)isset($params["del_index"]) ? $params["del_index"] : 0; + $delIndex = (int) isset($params["del_index"]) ? $params["del_index"] : 0; + $gridName = isset($params['grid_name']) ? $params['grid_name'] : null; + unset($params["dyn_uid"]); unset($params["field_id"]); unset($params["app_uid"]); @@ -774,6 +776,7 @@ class Variable unset($params["query"]); unset($params["start"]); unset($params["limit"]); + unset($params["grid_name"]); //Get appData and system variables $paramsAndGlobal = $params; @@ -798,7 +801,11 @@ class Variable //Get control from dynaform. //The parameters: queryFilter, queryStart, queryLimit, are only necessary //for the suggest control, the rest of the controls are ignored. - $field = $pmDynaform->searchField($dynUid, $fieldId, $proUid); + $parameters = [$dynUid, $fieldId, $proUid]; + if (!empty($gridName)) { + $parameters[] = ['gridName' => $gridName]; + } + $field = $pmDynaform->searchField(...$parameters); $field->queryField = true; $field->queryInputData = $params; $field->queryFilter = $filter; From b114e4256cfe9d8df6aaedcf665f4b2d4af80510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Cesar=20Laura=20Avenda=C3=B1o?= Date: Fri, 19 Jun 2020 18:40:56 +0000 Subject: [PATCH 31/39] PMC-1598 --- composer.json | 3 +- composer.lock | 666 +++++++++++++++++++++++++++-------------------- config/app.php | 1 + config/cache.php | 6 + 4 files changed, 392 insertions(+), 284 deletions(-) diff --git a/composer.json b/composer.json index 14f7f5d9e..b719df663 100644 --- a/composer.json +++ b/composer.json @@ -54,7 +54,8 @@ "league/oauth2-client": "^2.4", "league/oauth2-google": "^3.0", "tecnickcom/tcpdf": "6.3.*", - "fzaninotto/faker": "^1.7" + "fzaninotto/faker": "^1.7", + "predis/predis": "1.1.1" }, "require-dev": { "guzzlehttp/guzzle": "^6.3", diff --git a/composer.lock b/composer.lock index dde7a6aed..35ef4a8f5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "595ef6520db9ea7ab367ed8cbfa12b3f", + "content-hash": "8053778c032829e3f85826b33c5f43c5", "packages": [ { "name": "bshaffer/oauth2-server-php", @@ -164,16 +164,16 @@ }, { "name": "dapphp/securimage", - "version": "3.6.7", + "version": "3.6.8", "source": { "type": "git", "url": "https://github.com/dapphp/securimage.git", - "reference": "1ecb884797c66e01a875c058def46c85aecea45b" + "reference": "5fc5953c4ffba1eb214cc83100672f238c184ca4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dapphp/securimage/zipball/1ecb884797c66e01a875c058def46c85aecea45b", - "reference": "1ecb884797c66e01a875c058def46c85aecea45b", + "url": "https://api.github.com/repos/dapphp/securimage/zipball/5fc5953c4ffba1eb214cc83100672f238c184ca4", + "reference": "5fc5953c4ffba1eb214cc83100672f238c184ca4", "shasum": "" }, "require": { @@ -209,7 +209,7 @@ "captcha", "security" ], - "time": "2018-03-09T06:07:41+00:00" + "time": "2020-05-30T09:43:22+00:00" }, { "name": "dnoegel/php-xdg-base-dir", @@ -427,16 +427,16 @@ }, { "name": "egulias/email-validator", - "version": "2.1.17", + "version": "2.1.18", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ade6887fd9bd74177769645ab5c474824f8a418a" + "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a", - "reference": "ade6887fd9bd74177769645ab5c474824f8a418a", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/cfa3d44471c7f5bfb684ac2b0da7114283d78441", + "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441", "shasum": "" }, "require": { @@ -460,7 +460,7 @@ }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "EmailValidator" + "Egulias\\EmailValidator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -481,7 +481,7 @@ "validation", "validator" ], - "time": "2020-02-13T22:36:52+00:00" + "time": "2020-06-16T20:11:17+00:00" }, { "name": "erusev/parsedown", @@ -664,23 +664,24 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.5.2", + "version": "6.5.5", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/promises": "^1.0", "guzzlehttp/psr7": "^1.6.1", - "php": ">=5.5" + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.17.0" }, "require-dev": { "ext-curl": "*", @@ -688,7 +689,6 @@ "psr/log": "^1.1" }, "suggest": { - "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", @@ -727,7 +727,7 @@ "rest", "web service" ], - "time": "2019-12-23T11:57:10+00:00" + "time": "2020-06-16T21:01:06+00:00" }, { "name": "guzzlehttp/promises", @@ -943,16 +943,16 @@ }, { "name": "kylekatarnls/update-helper", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/kylekatarnls/update-helper.git", - "reference": "5786fa188e0361b9adf9e8199d7280d1b2db165e" + "reference": "429be50660ed8a196e0798e5939760f168ec8ce9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/5786fa188e0361b9adf9e8199d7280d1b2db165e", - "reference": "5786fa188e0361b9adf9e8199d7280d1b2db165e", + "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9", + "reference": "429be50660ed8a196e0798e5939760f168ec8ce9", "shasum": "" }, "require": { @@ -984,20 +984,20 @@ } ], "description": "Update helper", - "time": "2019-07-29T11:03:54+00:00" + "time": "2020-04-07T20:44:10+00:00" }, { "name": "laravel/framework", - "version": "v5.7.28", + "version": "v5.7.29", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "8e69728f1c80a024588adbd24c65c4fcf9aa9192" + "reference": "2555bf6ef6e6739e5f49f4a5d40f6264c57abd56" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/8e69728f1c80a024588adbd24c65c4fcf9aa9192", - "reference": "8e69728f1c80a024588adbd24c65c4fcf9aa9192", + "url": "https://api.github.com/repos/laravel/framework/zipball/2555bf6ef6e6739e5f49f4a5d40f6264c57abd56", + "reference": "2555bf6ef6e6739e5f49f4a5d40f6264c57abd56", "shasum": "" }, "require": { @@ -1130,7 +1130,7 @@ "framework", "laravel" ], - "time": "2019-02-26T15:41:34+00:00" + "time": "2020-04-14T14:16:19+00:00" }, { "name": "laravel/nexmo-notification-channel", @@ -1311,16 +1311,16 @@ }, { "name": "lcobucci/jwt", - "version": "3.3.1", + "version": "3.3.2", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" + "reference": "56f10808089e38623345e28af2f2d5e4eb579455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", - "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455", + "reference": "56f10808089e38623345e28af2f2d5e4eb579455", "shasum": "" }, "require": { @@ -1362,20 +1362,20 @@ "JWS", "jwt" ], - "time": "2019-05-24T18:30:49+00:00" + "time": "2020-05-22T08:21:12+00:00" }, { "name": "league/flysystem", - "version": "1.0.65", + "version": "1.0.69", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "8f17b3ba67097aafb8318cd5c553b1acf7c891c8" + "reference": "7106f78428a344bc4f643c233a94e48795f10967" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8f17b3ba67097aafb8318cd5c553b1acf7c891c8", - "reference": "8f17b3ba67097aafb8318cd5c553b1acf7c891c8", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7106f78428a344bc4f643c233a94e48795f10967", + "reference": "7106f78428a344bc4f643c233a94e48795f10967", "shasum": "" }, "require": { @@ -1446,7 +1446,7 @@ "sftp", "storage" ], - "time": "2020-03-08T18:53:20+00:00" + "time": "2020-05-18T15:13:39+00:00" }, { "name": "league/oauth2-client", @@ -1689,7 +1689,7 @@ "rest", "server" ], - "time": "2019-05-12T15:05:48+00:00" + "time": "2020-02-13T18:25:17+00:00" }, { "name": "monolog/monolog", @@ -1976,16 +1976,16 @@ }, { "name": "opis/closure", - "version": "3.5.1", + "version": "3.5.5", "source": { "type": "git", "url": "https://github.com/opis/closure.git", - "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969" + "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969", - "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969", + "url": "https://api.github.com/repos/opis/closure/zipball/dec9fc5ecfca93f45cd6121f8e6f14457dff372c", + "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c", "shasum": "" }, "require": { @@ -2033,7 +2033,7 @@ "serialization", "serialize" ], - "time": "2019-11-29T22:36:02+00:00" + "time": "2020-06-17T14:59:55+00:00" }, { "name": "paragonie/random_compat", @@ -2507,27 +2507,33 @@ }, { "name": "php-imap/php-imap", - "version": "3.0.33", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/barbushin/php-imap.git", - "reference": "3ac294a7f852bd85bef04642ada78eb75be6e477" + "reference": "1df5b8b17527829a990475292b6794f06aaa4843" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barbushin/php-imap/zipball/3ac294a7f852bd85bef04642ada78eb75be6e477", - "reference": "3ac294a7f852bd85bef04642ada78eb75be6e477", + "url": "https://api.github.com/repos/barbushin/php-imap/zipball/1df5b8b17527829a990475292b6794f06aaa4843", + "reference": "1df5b8b17527829a990475292b6794f06aaa4843", "shasum": "" }, "require": { + "ext-fileinfo": "*", "ext-iconv": "*", "ext-imap": "*", "ext-mbstring": "*", "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^5.7", - "squizlabs/php_codesniffer": "^3.4" + "friendsofphp/php-cs-fixer": "^2.16", + "jakub-onderka/php-parallel-lint": "^1.0", + "paragonie/random_compat": "^1", + "phpunit/phpunit": "^5.7" + }, + "suggest": { + "ext-fileinfo": "To facilitate IncomingMailAttachment::getMimeType() auto-detection" }, "type": "library", "autoload": { @@ -2556,7 +2562,7 @@ "pop3", "receive emails" ], - "time": "2019-11-30T13:08:13+00:00" + "time": "2020-04-10T11:43:19+00:00" }, { "name": "phpmailer/phpmailer", @@ -2635,6 +2641,56 @@ "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "time": "2018-11-15T22:32:31+00:00" }, + { + "name": "predis/predis", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/nrk/predis.git", + "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1", + "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1", + "shasum": "" + }, + "require": { + "php": ">=5.3.9" + }, + "require-dev": { + "phpunit/phpunit": "~4.8" + }, + "suggest": { + "ext-curl": "Allows access to Webdis when paired with phpiredis", + "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol" + }, + "type": "library", + "autoload": { + "psr-4": { + "Predis\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Daniele Alessandri", + "email": "suppakilla@gmail.com", + "homepage": "http://clorophilla.net" + } + ], + "description": "Flexible and feature-complete Redis client for PHP and HHVM", + "homepage": "http://github.com/nrk/predis", + "keywords": [ + "nosql", + "predis", + "redis" + ], + "time": "2016-06-16T16:22:20+00:00" + }, { "name": "psr/container", "version": "1.0.0", @@ -3188,20 +3244,20 @@ }, { "name": "symfony/config", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "cbfef5ae91ccd3b06621c18d58cd355c68c87ae9" + "reference": "395f6e09e1dc6ac9c1a5eea3b7f44f7a820a5504" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/cbfef5ae91ccd3b06621c18d58cd355c68c87ae9", - "reference": "cbfef5ae91ccd3b06621c18d58cd355c68c87ae9", + "url": "https://api.github.com/repos/symfony/config/zipball/395f6e09e1dc6ac9c1a5eea3b7f44f7a820a5504", + "reference": "395f6e09e1dc6ac9c1a5eea3b7f44f7a820a5504", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/polyfill-ctype": "~1.8" }, @@ -3248,26 +3304,27 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2020-02-04T09:32:40+00:00" + "time": "2020-05-23T09:11:46+00:00" }, { "name": "symfony/console", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "4fa15ae7be74e53f6ec8c83ed403b97e23b665e9" + "reference": "326b064d804043005526f5a0494cfb49edb59bb0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/4fa15ae7be74e53f6ec8c83ed403b97e23b665e9", - "reference": "4fa15ae7be74e53f6ec8c83ed403b97e23b665e9", + "url": "https://api.github.com/repos/symfony/console/zipball/326b064d804043005526f5a0494cfb49edb59bb0", + "reference": "326b064d804043005526f5a0494cfb49edb59bb0", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1|^2" }, "conflict": { @@ -3324,20 +3381,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2020-02-24T13:10:00+00:00" + "time": "2020-05-30T20:06:45+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "d0a6dd288fa8848dcc3d1f58b94de6a7cc5d2d22" + "reference": "afc26133a6fbdd4f8842e38893e0ee4685c7c94b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/d0a6dd288fa8848dcc3d1f58b94de6a7cc5d2d22", - "reference": "d0a6dd288fa8848dcc3d1f58b94de6a7cc5d2d22", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/afc26133a6fbdd4f8842e38893e0ee4685c7c94b", + "reference": "afc26133a6fbdd4f8842e38893e0ee4685c7c94b", "shasum": "" }, "require": { @@ -3377,25 +3434,26 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2020-02-04T09:01:01+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/debug", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "a980d87a659648980d89193fd8b7a7ca89d97d21" + "reference": "28f92d08bb6d1fddf8158e02c194ad43870007e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/a980d87a659648980d89193fd8b7a7ca89d97d21", - "reference": "a980d87a659648980d89193fd8b7a7ca89d97d21", + "url": "https://api.github.com/repos/symfony/debug/zipball/28f92d08bb6d1fddf8158e02c194ad43870007e6", + "reference": "28f92d08bb6d1fddf8158e02c194ad43870007e6", "shasum": "" }, "require": { - "php": "^7.1.3", - "psr/log": "~1.0" + "php": ">=7.1.3", + "psr/log": "~1.0", + "symfony/polyfill-php80": "^1.15" }, "conflict": { "symfony/http-kernel": "<3.4" @@ -3433,24 +3491,24 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2020-02-23T14:41:43+00:00" + "time": "2020-05-24T08:33:35+00:00" }, { "name": "symfony/dependency-injection", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "ebb2e882e8c9e2eb990aa61ddcd389848466e342" + "reference": "a37cc0a90fec178768aa5048fea9251efde591c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/ebb2e882e8c9e2eb990aa61ddcd389848466e342", - "reference": "ebb2e882e8c9e2eb990aa61ddcd389848466e342", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a37cc0a90fec178768aa5048fea9251efde591c5", + "reference": "a37cc0a90fec178768aa5048fea9251efde591c5", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/container": "^1.0", "symfony/service-contracts": "^1.1.6|^2" }, @@ -3506,26 +3564,27 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2020-02-29T09:50:10+00:00" + "time": "2020-06-12T07:37:04+00:00" }, { "name": "symfony/error-handler", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "89aa4b9ac6f1f35171b8621b24f60477312085be" + "reference": "0df9a23c0f9eddbb6682479fee6fd58b88add75b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/89aa4b9ac6f1f35171b8621b24f60477312085be", - "reference": "89aa4b9ac6f1f35171b8621b24f60477312085be", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/0df9a23c0f9eddbb6682479fee6fd58b88add75b", + "reference": "0df9a23c0f9eddbb6682479fee6fd58b88add75b", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "~1.0", "symfony/debug": "^4.4.5", + "symfony/polyfill-php80": "^1.15", "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { @@ -3562,24 +3621,24 @@ ], "description": "Symfony ErrorHandler Component", "homepage": "https://symfony.com", - "time": "2020-02-26T11:45:31+00:00" + "time": "2020-05-28T10:39:14+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "4ad8e149799d3128621a3a1f70e92b9897a8930d" + "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4ad8e149799d3128621a3a1f70e92b9897a8930d", - "reference": "4ad8e149799d3128621a3a1f70e92b9897a8930d", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a5370aaa7807c7a439b21386661ffccf3dff2866", + "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/event-dispatcher-contracts": "^1.1" }, "conflict": { @@ -3632,7 +3691,7 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2020-02-04T09:32:40+00:00" + "time": "2020-05-20T08:37:50+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -3694,20 +3753,20 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "266c9540b475f26122b61ef8b23dd9198f5d1cfd" + "reference": "b27f491309db5757816db672b256ea2e03677d30" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/266c9540b475f26122b61ef8b23dd9198f5d1cfd", - "reference": "266c9540b475f26122b61ef8b23dd9198f5d1cfd", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", + "reference": "b27f491309db5757816db672b256ea2e03677d30", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "type": "library", @@ -3740,20 +3799,20 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2020-01-21T08:20:44+00:00" + "time": "2020-05-30T18:50:54+00:00" }, { "name": "symfony/finder", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "ea69c129aed9fdeca781d4b77eb20b62cf5d5357" + "reference": "5729f943f9854c5781984ed4907bbb817735776b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/ea69c129aed9fdeca781d4b77eb20b62cf5d5357", - "reference": "ea69c129aed9fdeca781d4b77eb20b62cf5d5357", + "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b", + "reference": "5729f943f9854c5781984ed4907bbb817735776b", "shasum": "" }, "require": { @@ -3789,24 +3848,24 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2020-02-14T07:42:58+00:00" + "time": "2020-03-27T16:54:36+00:00" }, { "name": "symfony/http-foundation", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "7e41b4fcad4619535f45f8bfa7744c4f384e1648" + "reference": "3adfbd7098c850b02d107330b7b9deacf2581578" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7e41b4fcad4619535f45f8bfa7744c4f384e1648", - "reference": "7e41b4fcad4619535f45f8bfa7744c4f384e1648", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3adfbd7098c850b02d107330b7b9deacf2581578", + "reference": "3adfbd7098c850b02d107330b7b9deacf2581578", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/mime": "^4.3|^5.0", "symfony/polyfill-mbstring": "~1.1" }, @@ -3844,30 +3903,31 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2020-02-13T19:40:01+00:00" + "time": "2020-05-23T09:11:46+00:00" }, { "name": "symfony/http-kernel", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "8c8734486dada83a6041ab744709bdc1651a8462" + "reference": "81d42148474e1852a333ed7a732f2a014af75430" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8c8734486dada83a6041ab744709bdc1651a8462", - "reference": "8c8734486dada83a6041ab744709bdc1651a8462", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81d42148474e1852a333ed7a732f2a014af75430", + "reference": "81d42148474e1852a333ed7a732f2a014af75430", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "psr/log": "~1.0", "symfony/error-handler": "^4.4", "symfony/event-dispatcher": "^4.4", "symfony/http-foundation": "^4.4|^5.0", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-php73": "^1.9" + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.15" }, "conflict": { "symfony/browser-kit": "<4.3", @@ -3934,24 +3994,24 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2020-02-29T10:31:38+00:00" + "time": "2020-06-12T11:15:37+00:00" }, { "name": "symfony/mime", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "304db017bafd71c122cd5223a9ac2d03dc24da32" + "reference": "af8e69e7527f752ab0ef6e1b717bac3f7336b8c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/304db017bafd71c122cd5223a9ac2d03dc24da32", - "reference": "304db017bafd71c122cd5223a9ac2d03dc24da32", + "url": "https://api.github.com/repos/symfony/mime/zipball/af8e69e7527f752ab0ef6e1b717bac3f7336b8c6", + "reference": "af8e69e7527f752ab0ef6e1b717bac3f7336b8c6", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, @@ -3996,20 +4056,20 @@ "mime", "mime-type" ], - "time": "2020-02-04T09:32:40+00:00" + "time": "2020-06-09T09:16:12+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.14.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38" + "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", - "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9", + "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9", "shasum": "" }, "require": { @@ -4021,7 +4081,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4054,20 +4114,20 @@ "polyfill", "portable" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2020-05-12T16:14:59+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.14.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e" + "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/926832ce51059bb58211b7b2080a88e0c3b5328e", - "reference": "926832ce51059bb58211b7b2080a88e0c3b5328e", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424", + "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424", "shasum": "" }, "require": { @@ -4079,7 +4139,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4113,20 +4173,20 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.14.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a" + "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6842f1a39cf7d580655688069a03dd7cd83d244a", - "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a", + "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a", "shasum": "" }, "require": { @@ -4140,7 +4200,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4175,20 +4235,20 @@ "portable", "shim" ], - "time": "2020-01-17T12:01:36+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.14.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2" + "reference": "fa79b11539418b02fc5e1897267673ba2c19419c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c", + "reference": "fa79b11539418b02fc5e1897267673ba2c19419c", "shasum": "" }, "require": { @@ -4200,7 +4260,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4234,20 +4294,20 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.14.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf" + "reference": "f048e612a3905f34931127360bdd2def19a5e582" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf", - "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582", + "reference": "f048e612a3905f34931127360bdd2def19a5e582", "shasum": "" }, "require": { @@ -4256,7 +4316,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4289,20 +4349,20 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.14.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675" + "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/5e66a0fa1070bf46bec4bea7962d285108edd675", - "reference": "5e66a0fa1070bf46bec4bea7962d285108edd675", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a760d8964ff79ab9bf057613a5808284ec852ccc", + "reference": "a760d8964ff79ab9bf057613a5808284ec852ccc", "shasum": "" }, "require": { @@ -4311,7 +4371,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.17-dev" } }, "autoload": { @@ -4347,20 +4407,82 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { - "name": "symfony/process", - "version": "v4.4.5", + "name": "symfony/polyfill-php80", + "version": "v1.17.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "bf9166bac906c9e69fb7a11d94875e7ced97bcd7" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/bf9166bac906c9e69fb7a11d94875e7ced97bcd7", - "reference": "bf9166bac906c9e69fb7a11d94875e7ced97bcd7", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd", + "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd", + "shasum": "" + }, + "require": { + "php": ">=7.0.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2020-05-12T16:47:27+00:00" + }, + { + "name": "symfony/process", + "version": "v4.4.10", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/c714958428a85c86ab97e3a0c96db4c4f381b7f5", + "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5", "shasum": "" }, "require": { @@ -4396,20 +4518,20 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2020-02-07T20:06:44+00:00" + "time": "2020-05-30T20:06:45+00:00" }, { "name": "symfony/routing", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "4124d621d0e445732520037f888a0456951bde8c" + "reference": "0f557911dde75c2a9652b8097bd7c9f54507f646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/4124d621d0e445732520037f888a0456951bde8c", - "reference": "4124d621d0e445732520037f888a0456951bde8c", + "url": "https://api.github.com/repos/symfony/routing/zipball/0f557911dde75c2a9652b8097bd7c9f54507f646", + "reference": "0f557911dde75c2a9652b8097bd7c9f54507f646", "shasum": "" }, "require": { @@ -4472,7 +4594,7 @@ "uri", "url" ], - "time": "2020-02-25T12:41:09+00:00" + "time": "2020-05-30T20:07:26+00:00" }, { "name": "symfony/service-contracts", @@ -4534,20 +4656,20 @@ }, { "name": "symfony/translation", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "0a19a77fba20818a969ef03fdaf1602de0546353" + "reference": "79d3ef9096a6a6047dbc69218b68c7b7f63193af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/0a19a77fba20818a969ef03fdaf1602de0546353", - "reference": "0a19a77fba20818a969ef03fdaf1602de0546353", + "url": "https://api.github.com/repos/symfony/translation/zipball/79d3ef9096a6a6047dbc69218b68c7b7f63193af", + "reference": "79d3ef9096a6a6047dbc69218b68c7b7f63193af", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/translation-contracts": "^1.1.6|^2" }, @@ -4606,7 +4728,7 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2020-02-04T09:32:40+00:00" + "time": "2020-05-30T20:06:45+00:00" }, { "name": "symfony/translation-contracts", @@ -4667,22 +4789,23 @@ }, { "name": "symfony/var-dumper", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "2572839911702b0405479410ea7a1334bfab0b96" + "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2572839911702b0405479410ea7a1334bfab0b96", - "reference": "2572839911702b0405479410ea7a1334bfab0b96", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac", + "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php72": "~1.5" + "symfony/polyfill-php72": "~1.5", + "symfony/polyfill-php80": "^1.15" }, "conflict": { "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", @@ -4739,7 +4862,7 @@ "debug", "dump" ], - "time": "2020-02-24T13:10:00+00:00" + "time": "2020-05-30T20:06:45+00:00" }, { "name": "tecnickcom/tcpdf", @@ -4854,35 +4977,35 @@ }, { "name": "typo3/class-alias-loader", - "version": "1.0.1", + "version": "v1.1.3", "source": { "type": "git", "url": "https://github.com/TYPO3/class-alias-loader.git", - "reference": "4972f9f6c2bad07ab1620b5c9717fa626e9b03b0" + "reference": "575f59581541f299f3a86a95b1db001ee6e1d2e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3/class-alias-loader/zipball/4972f9f6c2bad07ab1620b5c9717fa626e9b03b0", - "reference": "4972f9f6c2bad07ab1620b5c9717fa626e9b03b0", + "url": "https://api.github.com/repos/TYPO3/class-alias-loader/zipball/575f59581541f299f3a86a95b1db001ee6e1d2e0", + "reference": "575f59581541f299f3a86a95b1db001ee6e1d2e0", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0", + "composer-plugin-api": "^1.0 || ^2.0", "php": ">=5.3.7" }, "replace": { "helhum/class-alias-loader": "*" }, "require-dev": { - "composer/composer": "dev-master", - "mikey179/vfsstream": "1.4.*@dev", - "phpunit/phpunit": "^4.8" + "composer/composer": "^1.1@dev || ^2.0@dev", + "mikey179/vfsstream": "~1.4.0@dev", + "phpunit/phpunit": ">4.8 <8" }, "type": "composer-plugin", "extra": { "class": "TYPO3\\ClassAliasLoader\\Plugin", "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -4908,28 +5031,34 @@ "classloader", "composer" ], - "time": "2018-10-03T12:49:56+00:00" + "time": "2020-05-24T13:03:22+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v2.6.1", + "version": "v2.6.5", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5" + "reference": "2e977311ffb17b2f82028a9c36824647789c6365" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5", - "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e977311ffb17b2f82028a9c36824647789c6365", + "reference": "2e977311ffb17b2f82028a9c36824647789c6365", "shasum": "" }, "require": { - "php": ">=5.3.9", - "symfony/polyfill-ctype": "^1.9" + "php": "^5.3.9 || ^7.0 || ^8.0", + "symfony/polyfill-ctype": "^1.16" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.0" + "ext-filter": "*", + "ext-pcre": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7.27" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator.", + "ext-pcre": "Required to use most of the library." }, "type": "library", "extra": { @@ -4947,10 +5076,15 @@ "BSD-3-Clause" ], "authors": [ + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "homepage": "https://gjcampbell.co.uk/" + }, { "name": "Vance Lucas", "email": "vance@vancelucas.com", - "homepage": "http://www.vancelucas.com" + "homepage": "https://vancelucas.com/" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -4959,7 +5093,7 @@ "env", "environment" ], - "time": "2019-01-29T11:11:52+00:00" + "time": "2020-06-02T14:06:52+00:00" }, { "name": "zendframework/zend-diactoros", @@ -5033,22 +5167,21 @@ "packages-dev": [ { "name": "behat/behat", - "version": "v3.6.1", + "version": "v3.7.0", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "9bfe195b4745c32e068af03fa4df9558b4916d30" + "reference": "08052f739619a9e9f62f457a67302f0715e6dd13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/9bfe195b4745c32e068af03fa4df9558b4916d30", - "reference": "9bfe195b4745c32e068af03fa4df9558b4916d30", + "url": "https://api.github.com/repos/Behat/Behat/zipball/08052f739619a9e9f62f457a67302f0715e6dd13", + "reference": "08052f739619a9e9f62f457a67302f0715e6dd13", "shasum": "" }, "require": { "behat/gherkin": "^4.6.0", "behat/transliterator": "^1.2", - "container-interop/container-interop": "^1.2", "ext-mbstring": "*", "php": ">=5.3.3", "psr/container": "^1.0", @@ -5060,8 +5193,9 @@ "symfony/yaml": "^2.7.51 || ^3.0 || ^4.0 || ^5.0" }, "require-dev": { + "container-interop/container-interop": "^1.2", "herrera-io/box": "~1.6.1", - "phpunit/phpunit": "^4.8.36 || ^6.3", + "phpunit/phpunit": "^4.8.36 || ^6.5.14 || ^7.5.20", "symfony/process": "~2.5 || ^3.0 || ^4.0 || ^5.0" }, "suggest": { @@ -5109,20 +5243,20 @@ "symfony", "testing" ], - "time": "2020-02-06T09:54:48+00:00" + "time": "2020-06-03T13:08:44+00:00" }, { "name": "behat/gherkin", - "version": "v4.6.1", + "version": "v4.6.2", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "25bdcaf37898b4a939fa3031d5d753ced97e4759" + "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/25bdcaf37898b4a939fa3031d5d753ced97e4759", - "reference": "25bdcaf37898b4a939fa3031d5d753ced97e4759", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31", + "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31", "shasum": "" }, "require": { @@ -5168,7 +5302,7 @@ "gherkin", "parser" ], - "time": "2020-02-27T11:29:57+00:00" + "time": "2020-03-17T14:03:26+00:00" }, { "name": "behat/mink", @@ -5337,54 +5471,22 @@ ], "time": "2020-01-14T16:39:13+00:00" }, - { - "name": "container-interop/container-interop", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "shasum": "" - }, - "require": { - "psr/container": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "abandoned": "psr/container", - "time": "2017-02-14T19:40:03+00:00" - }, { "name": "doctrine/instantiator", - "version": "1.3.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.1 || ^8.0" }, "require-dev": { "doctrine/coding-standard": "^6.0", @@ -5423,7 +5525,7 @@ "constructor", "instantiate" ], - "time": "2019-10-21T16:45:58+00:00" + "time": "2020-05-29T17:27:14+00:00" }, { "name": "filp/whoops", @@ -5594,24 +5696,21 @@ }, { "name": "phpdocumentor/reflection-common", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" + "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b", + "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b", "shasum": "" }, "require": { "php": ">=7.1" }, - "require-dev": { - "phpunit/phpunit": "~6" - }, "type": "library", "extra": { "branch-alias": { @@ -5642,7 +5741,7 @@ "reflection", "static analysis" ], - "time": "2018-08-07T13:53:10+00:00" + "time": "2020-04-27T09:25:28+00:00" }, { "name": "phpdocumentor/reflection-docblock", @@ -5856,8 +5955,8 @@ "authors": [ { "name": "Sebastian Bergmann", - "role": "lead", - "email": "sb@sebastian-bergmann.de" + "email": "sb@sebastian-bergmann.de", + "role": "lead" } ], "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", @@ -6124,8 +6223,8 @@ "authors": [ { "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], "description": "The PHP Unit Testing framework.", @@ -6712,16 +6811,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.5.4", + "version": "3.5.5", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "dceec07328401de6211037abbb18bda423677e26" + "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dceec07328401de6211037abbb18bda423677e26", - "reference": "dceec07328401de6211037abbb18bda423677e26", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/73e2e7f57d958e7228fce50dc0c61f58f017f9f6", + "reference": "73e2e7f57d958e7228fce50dc0c61f58f017f9f6", "shasum": "" }, "require": { @@ -6759,24 +6858,24 @@ "phpcs", "standards" ], - "time": "2020-01-30T22:20:29+00:00" + "time": "2020-04-17T01:09:41+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.5", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "94d005c176db2080e98825d98e01e8b311a97a88" + "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/94d005c176db2080e98825d98e01e8b311a97a88", - "reference": "94d005c176db2080e98825d98e01e8b311a97a88", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", + "reference": "c2d2cc66e892322cfcc03f8f12f8340dbd7a3f8a", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "conflict": { @@ -6818,20 +6917,20 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2020-02-03T10:46:43+00:00" + "time": "2020-05-20T08:37:50+00:00" }, { "name": "webmozart/assert", - "version": "1.7.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "aed98a490f9a8f78468232db345ab9cf606cf598" + "reference": "9dc4f203e36f2b486149058bade43c851dd97451" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598", - "reference": "aed98a490f9a8f78468232db345ab9cf606cf598", + "url": "https://api.github.com/repos/webmozart/assert/zipball/9dc4f203e36f2b486149058bade43c851dd97451", + "reference": "9dc4f203e36f2b486149058bade43c851dd97451", "shasum": "" }, "require": { @@ -6839,7 +6938,8 @@ "symfony/polyfill-ctype": "^1.8" }, "conflict": { - "vimeo/psalm": "<3.6.0" + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<3.9.1" }, "require-dev": { "phpunit/phpunit": "^4.8.36 || ^7.5.13" @@ -6866,7 +6966,7 @@ "check", "validate" ], - "time": "2020-02-14T12:15:55+00:00" + "time": "2020-06-16T10:16:42+00:00" }, { "name": "wimg/php-compatibility", diff --git a/config/app.php b/config/app.php index a6de0c625..c646ecce6 100644 --- a/config/app.php +++ b/config/app.php @@ -25,6 +25,7 @@ return [ Laravel\Tinker\TinkerServiceProvider::class, Illuminate\Notifications\NotificationServiceProvider::class, Illuminate\Bus\BusServiceProvider::class, + Illuminate\Redis\RedisServiceProvider::class, ], 'aliases' => [ diff --git a/config/cache.php b/config/cache.php index 5529d9a1f..f8e97d71c 100644 --- a/config/cache.php +++ b/config/cache.php @@ -76,6 +76,12 @@ return [ 'redis' => [ 'driver' => 'redis', 'connection' => 'default', + 'cache' => [ + 'host' => env('REDIS_HOST', '127.0.0.1'), + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', 6379), + 'database' => env('REDIS_CACHE_DB', 1), + ], ], ], From 8262271f74afc73c2077fb85ecd8e5727f0f5789 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Sat, 20 Jun 2020 19:48:50 -0400 Subject: [PATCH 32/39] PMCORE-1687 Correct the PO, currently has mistakes and in disorder. --- .../engine/content/translations/english/processmaker.en.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index d12b0bd3c..050c27998 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -51751,15 +51751,16 @@ msgstr "Years" # LABEL/ID_MONTHS #: LABEL/ID_MONTHS msgid "Months" -msgstr "Months"# +msgstr "Months" -TRANSLATION +# TRANSLATION # LABEL/ID_TASK_SCHEDULER_SEND_NOTIFICATIONS #: LABEL/ID_TASK_SCHEDULER_SEND_NOTIFICATIONS msgid "Actions by email response account email revision" msgstr "Actions by email response account email revision" -ID_TASK_SCHEDULER_SEND_NOTIFICATIONS +# TRANSLATION +# LABEL/ID_WEEK #: LABEL/ID_WEEK msgid "Week" msgstr "Week" From 83b35b06fe59274356b10b9760b42368869548e4 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Sun, 21 Jun 2020 19:05:46 -0400 Subject: [PATCH 33/39] PMCORE-1688 Review the composer from the release/3.5.0 --- composer.json | 8 +++--- composer.lock | 75 ++++++++++++++++++++++++++++----------------------- 2 files changed, 46 insertions(+), 37 deletions(-) diff --git a/composer.json b/composer.json index 55187700a..753078005 100644 --- a/composer.json +++ b/composer.json @@ -35,10 +35,10 @@ "laravel/framework": "5.7.*", "luracast/restler": "^3.0", "bshaffer/oauth2-server-php": "v1.0", - "colosa/pmui": "release/3.4.8-dev", - "colosa/michelangelofe": "release/3.4.8-dev", - "colosa/pmdynaform": "release/3.4.8-dev", - "colosa/taskscheduler": "0.1.0", + "colosa/pmui": "release/3.5.0-dev", + "colosa/michelangelofe": "release/3.5.0-dev", + "colosa/pmdynaform": "release/3.5.0-dev", + "colosa/taskscheduler": "release/1.0.0-dev", "google/apiclient": "1.1.6", "dapphp/securimage": "^3.6", "psr/log": "1.0.0", diff --git a/composer.lock b/composer.lock index 6ca3aa4fc..ce1dc03c3 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8053778c032829e3f85826b33c5f43c5", + "content-hash": "da3512db89554c0bf1626fe310fd8254", "packages": [ { "name": "bshaffer/oauth2-server-php", @@ -113,14 +113,14 @@ }, { "name": "colosa/MichelangeloFE", - "version": "dev-release/3.4.8", + "version": "dev-release/3.5.0", "source": { "type": "git", "url": "git@bitbucket.org:colosa/michelangelofe.git", - "reference": "6de1f5f98c9a6e90d939d788d5bb4e6bcf3aff51" + "reference": "c18ebcb87a9672f53e71fbcb79c6ad00c0e87056" }, "require": { - "colosa/pmui": "release/3.4.8-dev" + "colosa/pmui": "release/3.5.0-dev" }, "type": "library", "description": "ProcessMaker Michelangelo Front End", @@ -128,15 +128,15 @@ "keywords": [ "js app ProcessMaker" ], - "time": "2020-03-11T16:01:33+00:00" + "time": "2020-06-21T22:03:52+00:00" }, { "name": "colosa/pmDynaform", - "version": "dev-release/3.4.8", + "version": "dev-release/3.5.0", "source": { "type": "git", "url": "git@bitbucket.org:colosa/pmdynaform.git", - "reference": "47fcf0dc5793b227730b5b8549a2c715445726bb" + "reference": "ac7df412ede47e2de1a5a341c2c9087769ac5b8b" }, "type": "library", "description": "JS Library to render ProcessMaker Dynaforms", @@ -144,26 +144,11 @@ "keywords": [ "js lib ProcessMaker Dynaforms" ], - "time": "2020-03-10T12:38:14+00:00" - }, - { - "name": "colosa/taskscheduler", - "version": "0.1.0", - "source": { - "type": "git", - "url": "git@bitbucket.org:colosa/taskscheduler.git", - "reference": "master" - }, - "type": "library", - "description": "JS Library to render ProcessMaker Task Scheduler", - "homepage": "http://processmaker.com", - "keywords": [ - "Vue js lib ProcessMaker Task Scheduler" - ] + "time": "2020-06-19T22:41:51+00:00" }, { "name": "colosa/pmUI", - "version": "dev-release/3.4.8", + "version": "dev-release/3.5.0", "source": { "type": "git", "url": "git@bitbucket.org:colosa/pmui.git", @@ -177,6 +162,22 @@ ], "time": "2019-04-26T14:15:30+00:00" }, + { + "name": "colosa/taskscheduler", + "version": "dev-release/1.0.0", + "source": { + "type": "git", + "url": "git@bitbucket.org:colosa/taskscheduler.git", + "reference": "879dad0d6ccb0579bf9df68f74be5790c2f5eaab" + }, + "type": "library", + "description": "JS Library to ProcessMaker Task scheduler", + "homepage": "http://processmaker.com", + "keywords": [ + "js lib ProcessMaker Task scheduler" + ], + "time": "2020-06-21T15:07:49+00:00" + }, { "name": "dapphp/securimage", "version": "3.6.8", @@ -666,7 +667,7 @@ "src/" ] }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "http://packagist.org/downloads/", "license": [ "Apache-2.0" ], @@ -1607,7 +1608,7 @@ ], "authors": [ { - "name": "Jean-Marc Trémeaux", + "name": "Jean-Marc Tr??meaux", "homepage": "http://naku.dohcrew.com/", "role": "Developer" }, @@ -1704,7 +1705,7 @@ "rest", "server" ], - "time": "2020-02-13T18:25:17+00:00" + "time": "2017-01-11T03:42:36+00:00" }, { "name": "monolog/monolog", @@ -2097,16 +2098,16 @@ }, { "name": "pdepend/pdepend", - "version": "2.7.1", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/pdepend/pdepend.git", - "reference": "daba1cf0a6edaf172fa02a17807ae29f4c1c7471" + "reference": "c64472f8e76ca858c79ad9a4cf1e2734b3f8cc38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pdepend/pdepend/zipball/daba1cf0a6edaf172fa02a17807ae29f4c1c7471", - "reference": "daba1cf0a6edaf172fa02a17807ae29f4c1c7471", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/c64472f8e76ca858c79ad9a4cf1e2734b3f8cc38", + "reference": "c64472f8e76ca858c79ad9a4cf1e2734b3f8cc38", "shasum": "" }, "require": { @@ -2140,7 +2141,13 @@ "BSD-3-Clause" ], "description": "Official version of pdepend to be handled with Composer", - "time": "2020-02-08T12:06:13+00:00" + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend", + "type": "tidelift" + } + ], + "time": "2020-06-20T10:53:13+00:00" }, { "name": "pear/archive_tar", @@ -7049,6 +7056,7 @@ "colosa/pmui": 20, "colosa/michelangelofe": 20, "colosa/pmdynaform": 20, + "colosa/taskscheduler": 20, "geshi/geshi": 20, "pdepend/pdepend": 0 }, @@ -7057,5 +7065,6 @@ "platform": { "php": ">=7.1" }, - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "1.1.0" } From 5b3724adfbc309aa3d05a46ec1c014d63454b86a Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Tue, 23 Jun 2020 16:05:56 +0000 Subject: [PATCH 34/39] PMCORE-1693 update insert --- workflow/engine/data/mysql/insert.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index dfb41bc8e..62afe30fe 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -72,7 +72,8 @@ INSERT INTO CONTENT (CON_CATEGORY,CON_PARENT,CON_ID,CON_LANG,CON_VALUE) VALUES ('PER_NAME','','00000000000000000000000000000064','en','Reassign case supervisor'), ('PER_NAME','','00000000000000000000000000000065','en','Setup Custom Cases List'), ('PER_NAME','','00000000000000000000000000000067','en','Log Files'), -('PER_NAME','','00000000000000000000000000000068','en','View Your Folders'); +('PER_NAME','','00000000000000000000000000000068','en','View Your Folders'), +('PER_NAME','','00000000000000000000000000000069','en','View Task Scheduler'); INSERT INTO LANGUAGE (LAN_ID,LAN_LOCATION,LAN_NAME,LAN_NATIVE_NAME,LAN_DIRECTION,LAN_WEIGHT,LAN_ENABLED,LAN_CALENDAR) VALUES ('aa','','Afar','','L','0','0','GREGORIAN'), From 517c94aa780a21b91467975515f9b35974c8a4be Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Thu, 28 May 2020 17:52:47 -0400 Subject: [PATCH 35/39] PMCORE-1578 PMCORE-1559 Review this error: Call to a member function initRBAC() on null. --- .../engine/src/ProcessMaker/Cases/CasesTraitTest.php | 12 +++++++++--- .../engine/src/ProcessMaker/Core/JobsManager.php | 8 ++++++-- .../engine/src/ProcessMaker/Model/SubApplication.php | 4 +++- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/tests/unit/workflow/engine/src/ProcessMaker/Cases/CasesTraitTest.php b/tests/unit/workflow/engine/src/ProcessMaker/Cases/CasesTraitTest.php index 8b2a84eda..e1fbb3d90 100644 --- a/tests/unit/workflow/engine/src/ProcessMaker/Cases/CasesTraitTest.php +++ b/tests/unit/workflow/engine/src/ProcessMaker/Cases/CasesTraitTest.php @@ -396,15 +396,19 @@ class CasesTraitTest extends TestCase ]; $cases = new Cases(); - $cases->routeCaseActionByEmail($appUid, $delIndex, $aber, $dynUid, $forms, $remoteAddr, $files); + $result = $cases->routeCaseActionByEmail($appUid, $delIndex, $aber, $dynUid, $forms, $remoteAddr, $files); + + //asserts + $this->assertEquals($aber, $result['ABE_REQ_UID']); + $this->assertArrayHasKey('ABE_RES_STATUS', $result); } /** - * This test verifies if the ABE form has been completed. + * This test verifies if the ABE form has not been completed and hope for an exception. * @test * @covers Cases::routeCaseActionByEmail */ - public function it_should_verify_if_abe_has_completed() + public function it_should_verify_if_abe_has_not_completed() { $delegation1 = factory(Delegation::class)->state('closed')->create(); $abeRequest = factory(AbeRequest::class)->create(); @@ -420,6 +424,7 @@ class CasesTraitTest extends TestCase $remoteAddr = '127.0.0.1'; $files = []; + //assert exception $this->expectException(\Exception::class); $cases = new Cases(); $cases->routeCaseActionByEmail($appUid, $delIndex, $aber, $dynUid, $forms, $remoteAddr, $files); @@ -446,6 +451,7 @@ class CasesTraitTest extends TestCase $remoteAddr = '127.0.0.1'; $files = []; + //assert exception $this->expectException(\Exception::class); $cases = new Cases(); $cases->routeCaseActionByEmail($appUid, $delIndex, $aber, $dynUid, $forms, $remoteAddr, $files); diff --git a/workflow/engine/src/ProcessMaker/Core/JobsManager.php b/workflow/engine/src/ProcessMaker/Core/JobsManager.php index cda12a92c..372bbe732 100644 --- a/workflow/engine/src/ProcessMaker/Core/JobsManager.php +++ b/workflow/engine/src/ProcessMaker/Core/JobsManager.php @@ -185,9 +185,13 @@ class JobsManager public function dispatch($name, $callback) { $environment = $this->getDataSnapshot(); - - $instance = $name::dispatch(function() use ($callback, $environment) { + global $RBAC; + $referrerRBAC = $RBAC; + $instance = $name::dispatch(function() use ($callback, $environment, $referrerRBAC) { try { + global $RBAC; + $RBAC = $referrerRBAC; + $this->recoverDataSnapshot($environment); $callback($environment); } catch (Exception $e) { diff --git a/workflow/engine/src/ProcessMaker/Model/SubApplication.php b/workflow/engine/src/ProcessMaker/Model/SubApplication.php index b22a03b58..a50cbf80e 100644 --- a/workflow/engine/src/ProcessMaker/Model/SubApplication.php +++ b/workflow/engine/src/ProcessMaker/Model/SubApplication.php @@ -33,6 +33,7 @@ class SubApplication extends Model 'SA_INIT_DATE' => '', 'SA_FINISH_DATE' => '' ]; + /** * The attributes that are mass assignable. * @@ -49,4 +50,5 @@ class SubApplication extends Model 'SA_INIT_DATE', 'SA_FINISH_DATE' ]; -} \ No newline at end of file + +} From fabf40003cb45251064e3a9200b63feeb33013a9 Mon Sep 17 00:00:00 2001 From: Andrea Adamczyk Date: Fri, 26 Jun 2020 10:07:40 -0400 Subject: [PATCH 36/39] PMCORE-1528 --- 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 f112ad5a5..4e744c58b 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 050c27998..03f73c24f 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -21716,8 +21716,8 @@ msgstr "LDAP is optional" # TRANSLATION # LABEL/ID_PROCESSMAKER_REQUIREMENTS_MEMORYLIMIT #: LABEL/ID_PROCESSMAKER_REQUIREMENTS_MEMORYLIMIT -msgid "Memory Limit >= 80MB" -msgstr "Memory Limit >= 80MB" +msgid "Memory Limit >= 256MB" +msgstr "Memory Limit >= 256MB" # TRANSLATION # LABEL/ID_PROCESSMAKER_REQUIREMENTS_MSSQL diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 62afe30fe..0c1e02db0 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -60512,7 +60512,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_GD','en','GD Support','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_LDAP','en','LDAP Support (*)','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_LDAP_OPTIONAL','en','LDAP is optional','2014-01-15') , -( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_MEMORYLIMIT','en','Memory Limit >= 80MB','2014-01-15') , +( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_MEMORYLIMIT','en','Memory Limit >= 256MB','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_MSSQL','en','MSSQL Support (*)','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_MULTIBYTESTRING','en','Multibyte Strings Support','2014-01-15') , ( 'LABEL','ID_PROCESSMAKER_REQUIREMENTS_MYSQL','en','MySQL Support','2014-01-15') , From ba7f7f59c9fa934c4bbe0459d270a4185af8a5e1 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Fri, 26 Jun 2020 19:44:41 +0000 Subject: [PATCH 37/39] PMCORE-1705 update update --- workflow/engine/content/languages/translation.en | 4 ++-- .../content/translations/english/processmaker.en.po | 12 ++++++++++++ workflow/engine/data/mysql/insert.sql | 3 ++- .../ProcessMaker/BusinessModel/TaskSchedulerBM.php | 13 +++++++++++++ 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index f112ad5a5..b951319a4 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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. +$translation =unserialize('a:4557:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can\'t create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can\'t create folder
                            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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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:20:"Memory Limit >= 80MB";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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:19:"ID_TIMER_EVENT_DESC";s:50:"Executes timer start and intermediate timer events";s:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 050c27998..8127e236c 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -51920,3 +51920,15 @@ msgstr "Repeat on" #: LABEL/ID_CUSTOM_SETTINGS msgid "Custom settings" msgstr "Custom settings" + +# TRANSLATION +# LABEL/ID_TIMER_EVENT +#: LABEL/ID_TIMER_EVENT +msgid "Timer event" +msgstr "Timer event" + +# TRANSLATION +# LABEL/ID_TIMER_EVENT_DESC +#: LABEL/ID_TIMER_EVENT_DESC +msgid "Executes timer start and intermediate timer events" +msgstr "Executes timer start and intermediate timer events" diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 62afe30fe..c48bd7905 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61181,7 +61181,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_THREAD_INDEX','en','Thread Index','2014-01-15') , ( 'LABEL','ID_THREAD_STATUS_DOES_NOT_EXIST_FOR_THE_APPLICATION','en','Error: Thread status does not exist for the application {0}.','2016-06-15') , ( 'LABEL','ID_THU','en','Thu','2014-01-15') , -( 'LABEL','ID_TIMER_EVENT_ALREADY_REGISTERED','en','The Timer-Event with {0}: "{1}" already registered.','2015-06-26') , +( 'LABEL','ID_TIMER_EVENT','en','Timer event','2015-06-26') , +( 'LABEL','ID_TIMER_EVENT_DESC','en','Executes timer start and intermediate timer events','2015-06-26') , ( 'LABEL','ID_TIMER_EVENT_DOES_NOT_EXIST','en','The Timer-Event with {0}: "{1}" does not exist.','2015-06-26') , ( 'LABEL','ID_TIMER_EVENT_DOES_NOT_IS_REGISTERED','en','The Timer-Event with {0}: "{1}" does not is registered.','2015-06-26') , ( 'LABEL','ID_TIME_EXIST_IN_LIST','en','The day and time exist in the list','2014-01-15') , diff --git a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php index 574b78c44..7921a5bf2 100755 --- a/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php +++ b/workflow/engine/src/ProcessMaker/BusinessModel/TaskSchedulerBM.php @@ -166,6 +166,19 @@ class TaskSchedulerBM "interval" => "week", "expression" => "0 */1 * * 0,1,2,3,4,5,6", "description" => "ID_TASK_SCHEDULER_PM_PLUGINS_DESC" + ], + [ + "title" => "ID_TIMER_EVENT", + "enable" => "1", + "service" => "", + "category" => "case_actions", + "file" => "workflow/engine/bin/timereventcron.php", + "startingTime" => null, + "endingTime" => null, + "everyOn" => "1", + "interval" => "week", + "expression" => "*/1 * * * 0,1,2,3,4,5,6", + "description" => "ID_TIMER_EVENT_DESC" ] ]; /** From 59cf4761adfc0e3e3b7bded566f1658c14478a50 Mon Sep 17 00:00:00 2001 From: Henry Jordan Date: Fri, 26 Jun 2020 20:55:24 +0000 Subject: [PATCH 38/39] update update update --- .../engine/content/languages/translation.en | 6 +++-- .../translations/english/processmaker.en.po | 26 +++++++++---------- workflow/engine/data/mysql/insert.sql | 1 + 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/workflow/engine/content/languages/translation.en b/workflow/engine/content/languages/translation.en index 8d8898409..b951319a4 100755 --- a/workflow/engine/content/languages/translation.en +++ b/workflow/engine/content/languages/translation.en @@ -1,3 +1,5 @@ -'a:4557:{s:5:"ABOUT";s:5:"About";s:12:"ACCOUNT_FROM";s:12:"Account From";s:23:"ADD_USERS_TO_DEPARTMENT";s:23:"Add users to department";s:27:"APP_TITLE_CASE_LABEL_UPDATE";s:170:"The system has detected that changes to the case labels will affect more than 1000 records, so the changes will be performed by cron the next time it is scheduled to run.";s:9:"CANCELLED";s:8:"Canceled";s:20:"CANT_CREATE_FOLDER_A";s:21:"Can\'t create folder A";s:56:"CANT_CREATE_FOLDER_A_FOLDER_WITH_SAME_NAME_ALREADY_EXIST";s:69:"Can\'t create folder
                                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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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. + 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: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:22:"ID_ARE_YOU_SURE_RESEND";s:49:"Are you sure that you want to resend this message";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: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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:19:"ID_TIMER_EVENT_DESC";s:50:"Executes timer start and intermediate timer events";s:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 +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: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: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:8:"ID_EVERY";s:13:"every {0} {1}";s:23:"ID_EVERY_THIRTY_MINUTES";s:20:"Every thirty minutes";s:24:"ID_EVERY_FIFTEEN_MINUTES";s:21:"Every fifteen minutes";s:20:"ID_EVERY_TEN_MINUTES";s:17:"Every ten minutes";s:21:"ID_EVERY_FIVE_MINUTES";s:18:"Every five minutes";s:15:"ID_EVERY_MINUTE";s:12:"Every minute";s:13:"ID_EVERY_HOUR";s:10:"Every hour";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: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:8:"ID_HOURS";s:5:"Hours";s:13:"ID_HOUR_HOURS";s:7:"Hour(s)";s:12:"ID_HOURLY_AT";s:9:"Hourly at";s:9:"ID_HOURLY";s:6:"Hourly";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: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:13:"ID_LDAP_FIELD";s:10:"LDAP Field";s:16:"ID_LDAP_OPTIONAL";s:17:"LDAP is optional.";s:13:"ID_LDAP_USERS";s:10:"LDAP Users";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: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_03f19d0f58d54101572580443ada737a";s:75:"The value provided for the tab index property of the field "{0}" is invalid";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_10e0eeb727b72d964a13b8ba98b581a5";s:9:"tab index";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_2928f47504bd55cbdcef8fdda552fc2b";s:10:"is invalid";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_49ab28040dfa07f53544970c6d147e1e";s:7:"Connect";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_75ca5f0c3e8c26d880cf6735522fc5a1";s:17:"Available offline";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_85b8eaa72f475beeb3f909fd34967f63";s:18:"aria label visible";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_8f37b82f45c9822591223d6683977235";s:21:"Add a new row to grid";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_be89db81c408bc6fb7b02c6c4c977647";s:10:"aria label";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_ca66e7fe495e52dcf26d76a0e3fd3cd8";s:14:"Event messages";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:63:"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_dca93bce65f782477fb0ae42abbc3af8";s:62:"The value provided for the Results limit property of the field";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_f22cc12954f8a6326b87efac5ab3bbd4";s:10:"Remove row";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: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:17:"ID_MCRYPT_SUPPORT";s:14:"Mcrypt Support";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: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: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: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: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:10:"Set Online";s:24:"ID_OFFLINE_TABLES_ENABLE";s:11:"Set Offline";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: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: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.3, we maintain compatibility starting with PHP 7.1";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:21:"ID_PROCESS_NOCATEGORY";s:11:"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:23:"ID_REFRESH_TIME_SECONDS";s:22:"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: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: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: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: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:36:"ID_TASK_SCHEDULER_CALCULATE_APP_DESC";s:38:"Recalculate main KPI board information";s:31:"ID_TASK_SCHEDULER_CALCULATE_APP";s:17:"KPI Calculate app";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:27:"ID_TASK_SCHEDULER_REPORTING";s:37:"Recalculate KPI\'s information by user";s:36:"ID_TASK_SCHEDULER_SEND_NOTIFICATIONS";s:48:"Actions by email response account email revision";s:30:"ID_TASK_SCHEDULER_PM_SCHEDULER";s:46:"Unpauses any case whose pause time has expired";s:27:"ID_TASK_SCHEDULER_PM_EVENTS";s:19:"ProcessMaker events";s:30:"ID_TASK_SCHEDULER_UNPAUSE_DESC";s:46:"Unpauses any case whose pause time has expired";s:25:"ID_TASK_SCHEDULER_UNPAUSE";s:13:"Unpause cases";s:34:"ID_TASK_SCHEDULER_CASE_EMAILS_DESC";s:50:"Task, triggers, and actions by email notifications";s:29:"ID_TASK_SCHEDULER_CASE_EMAILS";s:11:"Case Emails";s:33:"ID_TASK_SCHEDULER_PM_PLUGINS_DESC";s:24:"Custom plugins execution";s:28:"ID_TASK_SCHEDULER_PM_PLUGINS";s:20:"ProcessMaker plugins";s:17:"ID_TASK_SCHEDULER";s:14:"Task Scheduler";s:30:"ID_TASK_SCHEDULER_CASE_ACTIONS";s:14:"Task Scheduler";s:25:"ID_TASK_SCHEDULER_PLUGINS";s:7:"Plugins";s:25:"ID_TASK_SCHEDULER_PM_SYNC";s:17:"ProcessMaker sync";s:38:"ID_TASK_SCHEDULER_EMAILS_NOTIFICATIONS";s:24:"Emails and notifications";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:26:"ID_TASK_SCHEDULER_SEND_NOT";s:18:"Send notifications";s:31:"ID_TASK_SCHEDULER_SEND_NOT_DESC";s:33:"ProcessMaker mobile 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: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: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: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: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: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: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: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:19:"ID_TIMER_EVENT_DESC";s:50:"Executes timer start and intermediate timer events";s:33:"ID_TIMER_EVENT_ALREADY_REGISTERED";s:51:"The Timer-Event with {0}: "{1}" already registered.";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: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:10:"ID_TIME_IN";s:12:"time in ${0}";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:6:"ID_TUE";s:3:"Tue";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:8:"ID_WEEKS";s:5:"Weeks";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:12:"ID_WELL_DONE";s:10:"Well Done!";s:6:"ID_WEN";s:3:"Wen";s:12:"ID_WESTPANEL";s:9:"westPanel";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: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: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 1fb960b8c..2a76a50b3 100755 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -25409,6 +25409,18 @@ msgstr "Error: Thread status does not exist for the application {0}." msgid "Thu" msgstr "Thu" +# TRANSLATION +# LABEL/ID_TIMER_EVENT +#: LABEL/ID_TIMER_EVENT +msgid "Timer event" +msgstr "Timer event" + +# TRANSLATION +# LABEL/ID_TIMER_EVENT_DESC +#: LABEL/ID_TIMER_EVENT_DESC +msgid "Executes timer start and intermediate timer events" +msgstr "Executes timer start and intermediate timer events" + # TRANSLATION # LABEL/ID_TIMER_EVENT_ALREADY_REGISTERED #: LABEL/ID_TIMER_EVENT_ALREADY_REGISTERED @@ -51919,16 +51931,4 @@ msgstr "Repeat on" # LABEL/ID_CUSTOM_SETTINGS #: LABEL/ID_CUSTOM_SETTINGS msgid "Custom settings" -msgstr "Custom settings" - -# TRANSLATION -# LABEL/ID_TIMER_EVENT -#: LABEL/ID_TIMER_EVENT -msgid "Timer event" -msgstr "Timer event" - -# TRANSLATION -# LABEL/ID_TIMER_EVENT_DESC -#: LABEL/ID_TIMER_EVENT_DESC -msgid "Executes timer start and intermediate timer events" -msgstr "Executes timer start and intermediate timer events" +msgstr "Custom settings" \ No newline at end of file diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index 0dafc85ab..5f0043ae1 100755 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -61183,6 +61183,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_THU','en','Thu','2014-01-15') , ( 'LABEL','ID_TIMER_EVENT','en','Timer event','2015-06-26') , ( 'LABEL','ID_TIMER_EVENT_DESC','en','Executes timer start and intermediate timer events','2015-06-26') , +( 'LABEL','ID_TIMER_EVENT_ALREADY_REGISTERED','en','The Timer-Event with {0}: "{1}" already registered.','2015-06-26') , ( 'LABEL','ID_TIMER_EVENT_DOES_NOT_EXIST','en','The Timer-Event with {0}: "{1}" does not exist.','2015-06-26') , ( 'LABEL','ID_TIMER_EVENT_DOES_NOT_IS_REGISTERED','en','The Timer-Event with {0}: "{1}" does not is registered.','2015-06-26') , ( 'LABEL','ID_TIME_EXIST_IN_LIST','en','The day and time exist in the list','2014-01-15') , From 16030ecbffd8969b688a8af360eb31944f04e78e Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Tue, 30 Jun 2020 18:28:47 -0400 Subject: [PATCH 39/39] PMCORE-1729 ABE > the "Use a field to generate actions links" option doesn't work. --- tests/resources/dynaform3.json | 553 ++++++++++++++++++ .../classes/ActionsByEmailCoreClassTest.php | 240 +++++++- .../classes/ActionsByEmailCoreClass.php | 2 +- 3 files changed, 782 insertions(+), 13 deletions(-) create mode 100644 tests/resources/dynaform3.json diff --git a/tests/resources/dynaform3.json b/tests/resources/dynaform3.json new file mode 100644 index 000000000..1110c4b8c --- /dev/null +++ b/tests/resources/dynaform3.json @@ -0,0 +1,553 @@ +{ + "name": "ABE-1", + "description": "", + "items": [{ + "type": "form", + "variable": "", + "var_uid": "", + "dataType": "", + "id": "1343723465efa2f79704dc4074804880", + "name": "ABE-1", + "description": "", + "mode": "edit", + "script": "", + "language": "en", + "externalLibs": "", + "printable": false, + "items": [[{ + "type": "dropdown", + "variable": "option", + "var_uid": "4882127935efa3853e6ef65004825919", + "dataType": "string", + "protectedValue": true, + "id": "option", + "name": "option", + "label": "Option", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "dataVariable": "", + "options": [{ + "value": "1", + "label": "Ok" + }, { + "value": "2", + "label": "Wrong" + }], + "var_name": "option", + "colSpan": 12 + }], [{ + "type": "text", + "variable": "textVar001", + "var_uid": "8024926815efa2f918c24d9048946760", + "dataType": "string", + "protectedValue": false, + "id": "textVar001", + "name": "textVar001", + "label": "Text Var 001", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "textTransform": "none", + "validate": "", + "validateMessage": "", + "maxLength": 1000, + "formula": "", + "mode": "parent", + "operation": "", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "var_name": "textVar001", + "colSpan": 12 + }], [{ + "type": "textarea", + "variable": "textareaVar001", + "var_uid": "3801812565efa2f938ffb27097904674", + "dataType": "string", + "protectedValue": false, + "id": "textareaVar001", + "name": "textareaVar001", + "label": "Textarea Var 001", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "validate": "", + "validateMessage": "", + "mode": "parent", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "rows": "5", + "var_name": "textareaVar001", + "colSpan": 12 + }], [{ + "type": "dropdown", + "variable": "dropdownVar001", + "var_uid": "4874759895efa2f95d73918073729404", + "dataType": "string", + "protectedValue": false, + "id": "dropdownVar001", + "name": "dropdownVar001", + "label": "Dropdown Var 001", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "SELECT IS_UID, IS_NAME FROM ISO_SUBDIVISION\nWHERE IC_UID = @@COUNTRIES ORDER BY IS_NAME", + "memoryCache": false, + "dataVariable": "", + "options": [], + "var_name": "dropdownVar001", + "colSpan": 12 + }], [{ + "type": "submit", + "id": "submit0000000001", + "name": "submit0000000001", + "label": "submit_1", + "tabIndex": "", + "ariaLabel": "", + "colSpan": 12 + }], [{ + "type": "checkbox", + "variable": "checkboxVar001", + "var_uid": "9875983355efa33fc428854020429594", + "dataType": "boolean", + "protectedValue": false, + "id": "checkboxVar001", + "name": "checkboxVar001", + "label": "Checkbox Var 001", + "tabIndex": "", + "defaultValue": "", + "hint": "", + "ariaLabel": "", + "ariaLabelVisible": true, + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "options": [{ + "value": "1", + "label": "true" + }, { + "value": "0", + "label": "false" + }], + "var_name": "checkboxVar001", + "colSpan": 12 + }], [{ + "type": "checkgroup", + "variable": "checkgroupVar001", + "var_uid": "7653533805efa34036b7696022819944", + "dataType": "array", + "protectedValue": false, + "id": "checkgroupVar001", + "name": "checkgroupVar001", + "label": "Checkgroup Var 001", + "tabIndex": "", + "defaultValue": "", + "hint": "", + "ariaLabel": "", + "ariaLabelVisible": true, + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "dataVariable": "", + "options": [], + "var_name": "checkgroupVar001", + "colSpan": 12 + }], [{ + "type": "yesno", + "variable": "radioVar001", + "var_uid": "5993816415efa340a234248023937839", + "dataType": "string", + "protectedValue": false, + "id": "radioVar001", + "name": "radioVar001", + "label": "Radio Var 001", + "tabIndex": "", + "defaultValue": "", + "hint": "", + "ariaLabel": "", + "ariaLabelVisible": true, + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "dataVariable": "", + "options": [{ + "value": "1", + "label": "true" + }, { + "value": "0", + "label": "false" + }], + "var_name": "radioVar001", + "colSpan": 12 + }], [{ + "type": "datetime", + "variable": "datetimeVar001", + "var_uid": "3905353965efa341314e278010404418", + "dataType": "datetime", + "protectedValue": false, + "id": "datetimeVar001", + "name": "datetimeVar001", + "label": "Datetime Var 001", + "tabIndex": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "format": "YYYY-MM-DD", + "dayViewHeaderFormat": "MMMM YYYY", + "extraFormats": false, + "stepping": 1, + "minDate": "", + "maxDate": "", + "useCurrent": "false", + "collapse": true, + "locale": "", + "defaultDate": "", + "disabledDates": false, + "enabledDates": false, + "icons": { + "time": "glyphicon glyphicon-time", + "date": "glyphicon glyphicon-calendar", + "up": "glyphicon glyphicon-chevron-up", + "down": "glyphicon glyphicon-chevron-down", + "previous": "glyphicon glyphicon-chevron-left", + "next": "glyphicon glyphicon-chevron-right", + "today": "glyphicon glyphicon-screenshot", + "clear": "glyphicon glyphicon-trash" + }, + "useStrict": false, + "sideBySide": false, + "daysOfWeekDisabled": false, + "calendarWeeks": false, + "viewMode": "days", + "toolbarPlacement": "default", + "showTodayButton": false, + "showClear": "false", + "widgetPositioning": { + "horizontal": "auto", + "vertical": "auto" + }, + "widgetParent": null, + "keepOpen": false, + "var_name": "datetimeVar001", + "colSpan": 12 + }], [{ + "type": "suggest", + "variable": "suggestVar001", + "var_uid": "3411734965efa341a7fbf93067272299", + "dataType": "string", + "protectedValue": false, + "id": "suggestVar001", + "name": "suggestVar001", + "label": "Suggest Var 001", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "dataVariable": "", + "options": [], + "delay": 0, + "resultsLimit": 10, + "forceSelection": false, + "var_name": "suggestVar001", + "colSpan": 12 + }], [{ + "type": "hidden", + "variable": "hiddenVar001", + "var_uid": "8671702965efa343d2cd636026494394", + "dataType": "string", + "protectedValue": false, + "id": "hiddenVar001", + "name": "hiddenVar001", + "defaultValue": "", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "var_name": "hiddenVar001", + "colSpan": 12 + }], [{ + "type": "grid", + "variable": "gridVar001", + "var_uid": "5728723745efa3449d8e314091553134", + "dataType": "grid", + "protectedValue": false, + "id": "gridVar001", + "name": "gridVar001", + "label": "grid_1", + "hint": "", + "required": false, + "requiredFieldErrorMessage": "", + "columns": [{ + "type": "suggest", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "suggest0000000002", + "name": "suggest0000000002", + "label": "suggest_2", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "mode": "parent", + "datasource": "database", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "dataVariable": "", + "options": [], + "delay": 0, + "resultsLimit": 10, + "forceSelection": false, + "columnWidth": "10", + "width": 100, + "title": "suggest_2", + "var_name": "gridVar001" + }], + "data": [], + "mode": "parent", + "layout": "responsive", + "pageSize": "0", + "addRow": true, + "deleteRow": true, + "title": "grid_1", + "colSpan": 12 + }], [{ + "type": "textarea", + "variable": "", + "var_uid": "", + "dataType": "", + "protectedValue": false, + "id": "textarea0000000002", + "name": "textarea0000000002", + "label": "textarea_2", + "tabIndex": "", + "defaultValue": "", + "placeholder": "", + "hint": "", + "ariaLabel": "", + "required": false, + "requiredFieldErrorMessage": "", + "validate": "", + "validateMessage": "", + "mode": "parent", + "dbConnection": "workflow", + "dbConnectionLabel": "PM Database", + "sql": "", + "memoryCache": false, + "rows": "5", + "colSpan": 12 + }]], + "variables": [{ + "var_uid": "4882127935efa3853e6ef65004825919", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "option", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "8024926815efa2f918c24d9048946760", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "textVar001", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "3801812565efa2f938ffb27097904674", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "textareaVar001", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "4874759895efa2f95d73918073729404", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "dropdownVar001", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "9875983355efa33fc428854020429594", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "checkboxVar001", + "var_field_type": "boolean", + "var_field_size": 10, + "var_label": "boolean", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[{\"value\":\"1\",\"label\":\"true\"},{\"value\":\"0\",\"label\":\"false\"}]", + "inp_doc_uid": "" + }, { + "var_uid": "7653533805efa34036b7696022819944", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "checkgroupVar001", + "var_field_type": "array", + "var_field_size": 10, + "var_label": "array", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "5993816415efa340a234248023937839", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "radioVar001", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "3905353965efa341314e278010404418", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "datetimeVar001", + "var_field_type": "datetime", + "var_field_size": 10, + "var_label": "datetime", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "3411734965efa341a7fbf93067272299", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "suggestVar001", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "8671702965efa343d2cd636026494394", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "hiddenVar001", + "var_field_type": "string", + "var_field_size": 10, + "var_label": "string", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }, { + "var_uid": "5728723745efa3449d8e314091553134", + "prj_uid": "4599678715ef9e601cb8413049734226", + "var_name": "gridVar001", + "var_field_type": "grid", + "var_field_size": 10, + "var_label": "grid", + "var_dbconnection": "workflow", + "var_dbconnection_label": "PM Database", + "var_sql": "", + "var_null": 0, + "var_default": "", + "var_accepted_values": "[]", + "inp_doc_uid": "" + }] + }] +} \ No newline at end of file diff --git a/tests/unit/workflow/engine/classes/ActionsByEmailCoreClassTest.php b/tests/unit/workflow/engine/classes/ActionsByEmailCoreClassTest.php index f3ff0dd3a..2a66c92e3 100644 --- a/tests/unit/workflow/engine/classes/ActionsByEmailCoreClassTest.php +++ b/tests/unit/workflow/engine/classes/ActionsByEmailCoreClassTest.php @@ -37,7 +37,8 @@ class ActionsByEmailCoreClassTest extends TestCase } $path = $path . PATH_SEP . 'pmdynaform.html'; if (!file_exists($path)) { - file_put_contents($path, ''); + $template = file_get_contents(PATH_TPL . 'cases/pmdynaform.html'); + file_put_contents($path, $template); } } @@ -46,7 +47,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_with_exception() + public function it_should_test_sendActionsByEmail_method_with_exception() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -85,7 +86,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_if_abe_configuration_is_undefined() + public function it_should_test_sendActionsByEmail_method_if_abe_configuration_is_undefined() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -127,7 +128,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_with_exception_if_task_property_is_undefined() + public function it_should_test_sendActionsByEmail_method_with_exception_if_task_property_is_undefined() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -183,7 +184,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_with_exception_if_email_to_is_empty() + public function it_should_test_sendActionsByEmail_method_with_exception_if_email_to_is_empty() { $user = factory(User::class)->create([ 'USR_EMAIL' => '' @@ -242,7 +243,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_with_exception_if_email_type_is_empty() + public function it_should_test_sendActionsByEmail_method_with_exception_if_email_type_is_empty() { $user = factory(User::class)->create(); @@ -298,7 +299,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_custom() + public function it_should_test_sendActionsByEmail_method_custom() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -357,7 +358,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_response() + public function it_should_test_sendActionsByEmail_method_response() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -413,11 +414,11 @@ class ActionsByEmailCoreClassTest extends TestCase } /** - * This test verifies if the sendActionsByEmail method supports the 'FIELD' setting. + * This test verifies if the sendActionsByEmail method supports the 'LINK' setting. * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_link() + public function it_should_test_sendActionsByEmail_method_link() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -477,7 +478,7 @@ class ActionsByEmailCoreClassTest extends TestCase * @test * @covers \ActionsByEmailCoreClass::sendActionsByEmail */ - public function it_should_test_send_actions_by_email_field() + public function it_should_test_sendActionsByEmail_method_field() { $user = User::where('USR_UID', '=', '00000000000000000000000000000001') ->get() @@ -487,7 +488,8 @@ class ActionsByEmailCoreClassTest extends TestCase 'PRO_UID' => $process->PRO_UID ]); $dynaform = factory(Dynaform::class)->create([ - 'PRO_UID' => $process->PRO_UID + 'PRO_UID' => $process->PRO_UID, + 'DYN_CONTENT' => file_get_contents(PATH_TRUNK . "/tests/resources/dynaform2.json") ]); $emailServer = factory(ProcessMaker\Model\EmailServerModel::class)->create(); $abeConfiguration = factory(AbeConfiguration::class)->create([ @@ -531,4 +533,218 @@ class ActionsByEmailCoreClassTest extends TestCase $this->assertArrayHasKey('ABE_REQ_UID', $result); } + + /** + * This test verifies if the getFieldTemplate method supports the 'dropdown' control. + * @test + * @covers \ActionsByEmailCoreClass::getFieldTemplate + */ + public function it_should_test_getFieldTemplate_method_dropdown_control() + { + $user = User::where('USR_UID', '=', '00000000000000000000000000000001') + ->get() + ->first(); + $process = factory(Process::class)->create(); + $task = factory(Task::class)->create([ + 'PRO_UID' => $process->PRO_UID + ]); + $dynaform = factory(Dynaform::class)->create([ + 'PRO_UID' => $process->PRO_UID, + 'DYN_CONTENT' => file_get_contents(PATH_TRUNK . "/tests/resources/dynaform3.json") + ]); + $emailServer = factory(ProcessMaker\Model\EmailServerModel::class)->create(); + $abeConfiguration = factory(AbeConfiguration::class)->create([ + 'PRO_UID' => $process->PRO_UID, + 'TAS_UID' => $task->TAS_UID, + 'DYN_UID' => $dynaform->DYN_UID, + 'ABE_EMAIL_SERVER_UID' => $emailServer->MESS_UID, + 'ABE_TYPE' => 'LINK', + 'ABE_CUSTOM_GRID' => serialize([]), + 'ABE_EMAIL_SERVER_RECEIVER_UID' => $emailServer->MESS_UID, + 'ABE_ACTION_FIELD' => '@@option' + ]); + $abeConfiguration = $abeConfiguration->toArray(); + + $application = factory(Application::class)->create([ + 'PRO_UID' => $process->PRO_UID + ]); + + $delegation = factory(Delegation::class)->create([ + 'APP_UID' => $application->APP_UID, + 'PRO_UID' => $process->PRO_UID, + 'TAS_UID' => $task->TAS_UID, + 'USR_UID' => $user->USR_UID + ]); + + $data = [ + 'TAS_UID' => $task->TAS_UID, + 'APP_UID' => $application->APP_UID, + 'DEL_INDEX' => $delegation->DEL_INDEX, + 'USR_UID' => $user->USR_UID, + 'PREVIOUS_USR_UID' => $user->USR_UID + ]; + $data = (object) $data; + + $_SERVER["REQUEST_URI"] = ''; + + $this->actionsByEmailCoreClass = new ActionsByEmailCoreClass(); + $this->actionsByEmailCoreClass->setUser($user->USR_UID); + $this->actionsByEmailCoreClass->setIndex($delegation->DEL_INDEX); + $this->actionsByEmailCoreClass->sendActionsByEmail($data, $abeConfiguration); + + $reflection = new ReflectionClass($this->actionsByEmailCoreClass); + $reflectionMethod = $reflection->getMethod('getFieldTemplate'); + $reflectionMethod->setAccessible(true); + + $result = $reflectionMethod->invokeArgs($this->actionsByEmailCoreClass, []); + + $this->assertContains('jsondata', $result); + $this->assertContains('httpServerHostname', $result); + $this->assertContains('pm_run_outside_main_app', $result); + $this->assertContains('pathRTLCss', $result); + $this->assertContains('fieldsRequired', $result); + } + + /** + * This test verifies if the getFieldTemplate method supports the 'checkbox' control. + * @test + * @covers \ActionsByEmailCoreClass::getFieldTemplate + */ + public function it_should_test_getFieldTemplate_method_checkbox_control() + { + $user = User::where('USR_UID', '=', '00000000000000000000000000000001') + ->get() + ->first(); + $process = factory(Process::class)->create(); + $task = factory(Task::class)->create([ + 'PRO_UID' => $process->PRO_UID + ]); + $dynaform = factory(Dynaform::class)->create([ + 'PRO_UID' => $process->PRO_UID, + 'DYN_CONTENT' => file_get_contents(PATH_TRUNK . "/tests/resources/dynaform3.json") + ]); + $emailServer = factory(ProcessMaker\Model\EmailServerModel::class)->create(); + $abeConfiguration = factory(AbeConfiguration::class)->create([ + 'PRO_UID' => $process->PRO_UID, + 'TAS_UID' => $task->TAS_UID, + 'DYN_UID' => $dynaform->DYN_UID, + 'ABE_EMAIL_SERVER_UID' => $emailServer->MESS_UID, + 'ABE_TYPE' => 'LINK', + 'ABE_CUSTOM_GRID' => serialize([]), + 'ABE_EMAIL_SERVER_RECEIVER_UID' => $emailServer->MESS_UID, + 'ABE_ACTION_FIELD' => '@@checkboxVar001' + ]); + $abeConfiguration = $abeConfiguration->toArray(); + + $application = factory(Application::class)->create([ + 'PRO_UID' => $process->PRO_UID + ]); + + $delegation = factory(Delegation::class)->create([ + 'APP_UID' => $application->APP_UID, + 'PRO_UID' => $process->PRO_UID, + 'TAS_UID' => $task->TAS_UID, + 'USR_UID' => $user->USR_UID + ]); + + $data = [ + 'TAS_UID' => $task->TAS_UID, + 'APP_UID' => $application->APP_UID, + 'DEL_INDEX' => $delegation->DEL_INDEX, + 'USR_UID' => $user->USR_UID, + 'PREVIOUS_USR_UID' => $user->USR_UID + ]; + $data = (object) $data; + + $_SERVER["REQUEST_URI"] = ''; + + $this->actionsByEmailCoreClass = new ActionsByEmailCoreClass(); + $this->actionsByEmailCoreClass->setUser($user->USR_UID); + $this->actionsByEmailCoreClass->setIndex($delegation->DEL_INDEX); + $this->actionsByEmailCoreClass->sendActionsByEmail($data, $abeConfiguration); + + $reflection = new ReflectionClass($this->actionsByEmailCoreClass); + $reflectionMethod = $reflection->getMethod('getFieldTemplate'); + $reflectionMethod->setAccessible(true); + + $result = $reflectionMethod->invokeArgs($this->actionsByEmailCoreClass, []); + + $this->assertContains('jsondata', $result); + $this->assertContains('httpServerHostname', $result); + $this->assertContains('pm_run_outside_main_app', $result); + $this->assertContains('pathRTLCss', $result); + $this->assertContains('fieldsRequired', $result); + } + + /** + * This test verifies if the getFieldTemplate method supports the 'yesno' control. + * The 'yesno' control is obsolete and not used in pmdynaform. + * @test + * @covers \ActionsByEmailCoreClass::getFieldTemplate + */ + public function it_should_test_getFieldTemplate_method_yesno_control() + { + $user = User::where('USR_UID', '=', '00000000000000000000000000000001') + ->get() + ->first(); + $process = factory(Process::class)->create(); + $task = factory(Task::class)->create([ + 'PRO_UID' => $process->PRO_UID + ]); + $dynaform = factory(Dynaform::class)->create([ + 'PRO_UID' => $process->PRO_UID, + 'DYN_CONTENT' => file_get_contents(PATH_TRUNK . "/tests/resources/dynaform3.json") + ]); + $emailServer = factory(ProcessMaker\Model\EmailServerModel::class)->create(); + $abeConfiguration = factory(AbeConfiguration::class)->create([ + 'PRO_UID' => $process->PRO_UID, + 'TAS_UID' => $task->TAS_UID, + 'DYN_UID' => $dynaform->DYN_UID, + 'ABE_EMAIL_SERVER_UID' => $emailServer->MESS_UID, + 'ABE_TYPE' => 'LINK', + 'ABE_CUSTOM_GRID' => serialize([]), + 'ABE_EMAIL_SERVER_RECEIVER_UID' => $emailServer->MESS_UID, + 'ABE_ACTION_FIELD' => '@@radioVar001' + ]); + $abeConfiguration = $abeConfiguration->toArray(); + + $application = factory(Application::class)->create([ + 'PRO_UID' => $process->PRO_UID + ]); + + $delegation = factory(Delegation::class)->create([ + 'APP_UID' => $application->APP_UID, + 'PRO_UID' => $process->PRO_UID, + 'TAS_UID' => $task->TAS_UID, + 'USR_UID' => $user->USR_UID + ]); + + $data = [ + 'TAS_UID' => $task->TAS_UID, + 'APP_UID' => $application->APP_UID, + 'DEL_INDEX' => $delegation->DEL_INDEX, + 'USR_UID' => $user->USR_UID, + 'PREVIOUS_USR_UID' => $user->USR_UID + ]; + $data = (object) $data; + + $_SERVER["REQUEST_URI"] = ''; + + $this->actionsByEmailCoreClass = new ActionsByEmailCoreClass(); + $this->actionsByEmailCoreClass->setUser($user->USR_UID); + $this->actionsByEmailCoreClass->setIndex($delegation->DEL_INDEX); + $this->actionsByEmailCoreClass->sendActionsByEmail($data, $abeConfiguration); + + $reflection = new ReflectionClass($this->actionsByEmailCoreClass); + $reflectionMethod = $reflection->getMethod('getFieldTemplate'); + $reflectionMethod->setAccessible(true); + + $result = $reflectionMethod->invokeArgs($this->actionsByEmailCoreClass, []); + + $this->assertContains('jsondata', $result); + $this->assertContains('httpServerHostname', $result); + $this->assertContains('pm_run_outside_main_app', $result); + $this->assertContains('pathRTLCss', $result); + $this->assertContains('fieldsRequired', $result); + } } diff --git a/workflow/engine/classes/ActionsByEmailCoreClass.php b/workflow/engine/classes/ActionsByEmailCoreClass.php index 6c17e0266..3aadddeff 100644 --- a/workflow/engine/classes/ActionsByEmailCoreClass.php +++ b/workflow/engine/classes/ActionsByEmailCoreClass.php @@ -882,7 +882,7 @@ class ActionsByEmailCoreClass extends PMPlugin } } - $obj = new PmDynaform($dynUid); + $obj = new PmDynaform(["CURRENT_DYNAFORM" => $dynUid]); $this->addItemAbeProperties(['CURRENT_DYNAFORM' => $dynUid]); $file = $obj->printPmDynaformAbe($this->getTaskAbeProperties()); $html = $file;