Merge remote branch 'origin/master' into speedy
This commit is contained in:
307
workflow/engine/bin/tasks/Rakefile
Normal file
307
workflow/engine/bin/tasks/Rakefile
Normal file
@@ -0,0 +1,307 @@
|
||||
require 'rubygems'
|
||||
|
||||
desc "Generate JS libraries"
|
||||
task :buildjs do
|
||||
begin
|
||||
require 'json'
|
||||
rescue LoadError
|
||||
puts "JSON not found.\nInstall it by running 'gem install json'"
|
||||
exit
|
||||
end
|
||||
puts "Starting libraries generation..."
|
||||
|
||||
#system "rm -rf gulliver/js-min/"
|
||||
#system "rm -rf gulliver/css-min/"
|
||||
#Dir.mkdir('gulliver/css-min') unless File.exists?('gulliver/css-min')
|
||||
#Dir.mkdir('gulliver/js-min') unless File.exists?('gulliver/js-min')
|
||||
|
||||
lib_file = File.read 'workflow/engine/bin/tasks/libraries.json'
|
||||
libraries = JSON.parse(lib_file);
|
||||
libraries.each do |library|
|
||||
build = library['build']
|
||||
if build
|
||||
begin
|
||||
require 'closure-compiler'
|
||||
rescue LoadError
|
||||
puts "closure-compiler not found.\nInstall it by running 'gem install closure-compiler'"
|
||||
exit
|
||||
end
|
||||
buffer_full = ""
|
||||
buffer_mini = ""
|
||||
buffer_css = ""
|
||||
lib_name = library['name']
|
||||
files = library['libraries']
|
||||
js_path = library['build_js_to']
|
||||
css_path = library['build_css_to']
|
||||
puts "Processing #{lib_name} file."
|
||||
files.each do |lbry|
|
||||
puts "Processing library: " + lbry['name']
|
||||
buffer_full += File.read lbry['full']
|
||||
buffer_mini += File.read lbry['mini']
|
||||
if lbry['css']
|
||||
buffer_css += File.read lbry['css']
|
||||
end
|
||||
if lbry['css_images']
|
||||
Dir.mkdir(lbry['copy_css_images_to']) unless File.exists?(lbry['copy_css_images_to'])
|
||||
system "cp -r " + lbry['css_images'] + " " + lbry['copy_css_images_to'] + "."
|
||||
end
|
||||
end
|
||||
|
||||
fileName = lib_name + "-" + getVersion
|
||||
|
||||
#File.open(js_path + fileName + ".js", 'w+') do |file_full|
|
||||
# file_full.write buffer_full
|
||||
#end
|
||||
#puts "File '#{js_path}#{fileName}.js' has been generated correctly."
|
||||
|
||||
File.open(js_path + lib_name + '.js', 'w+') do |file_mini|
|
||||
file_mini.write Closure::Compiler.new.compress(buffer_mini)
|
||||
end
|
||||
puts "File '#{js_path}#{fileName}.js' has been generated correctly."
|
||||
#puts "File '#{js_path}#{fileName}.min.js' has been generated correctly."
|
||||
|
||||
#File.open(css_path + fileName + '.css', 'w+') do |file_css|
|
||||
# file_css.write buffer_css
|
||||
#end
|
||||
#puts "File '#{css_path}#{fileName}.css' has been generated correctly."
|
||||
end
|
||||
end
|
||||
|
||||
#puts "Copying VERSION.txt"
|
||||
#system "cp workflow/engine/bin/tasks/VERSION.js.txt gulliver/js-min/VERSION.txt"
|
||||
|
||||
puts "Libraries generation DONE"
|
||||
end
|
||||
|
||||
desc "Run Jasmine BDD tests"
|
||||
task :jasmine do
|
||||
system "jasmine-node --matchall --verbose spec"
|
||||
end
|
||||
|
||||
desc "Create skeleton pages"
|
||||
task :skeleton do
|
||||
begin
|
||||
require 'json'
|
||||
rescue LoadError
|
||||
puts "JSON not found.\nInstall it by running 'gem install json'"
|
||||
exit
|
||||
end
|
||||
version = getVersion
|
||||
template = "<!DOCTYPE html>\n<html>\n<head>\n"
|
||||
template += "<title>jCore #{version}</title>\n"
|
||||
template += "<link type=\"text/css\" href=\"css/jcore.utils-#{version}.css\" rel=\"stylesheet\" />\n"
|
||||
template += "<script type=\"text/javascript\" src=\"js/jcore.utils-#{version}.min.js\" ></script>\n"
|
||||
build_file = File.read 'src/build.json'
|
||||
sources = JSON.parse(build_file)
|
||||
sources.each do |source|
|
||||
if source['css']
|
||||
template += "<link type=\"text/css\" href=\"css/" + source['name'] + "-#{version}.css\" rel=\"stylesheet\" />\n"
|
||||
end
|
||||
template += "<script type=\"text/javascript\" src=\"js/" + source['name'] + "-#{version}.min.js\" ></script>\n"
|
||||
end
|
||||
template += "</head>\n<body>\n"
|
||||
template += "<h1>Welcome to jCore FE #{version}</h1>\n"
|
||||
template += "</body>\n</html>"
|
||||
File.open('index.html', 'w+') do |file|
|
||||
file.write template
|
||||
end
|
||||
puts "File 'index.html' has been generated correctly."
|
||||
template = "<!DOCTYPE html>\n<html>\n<head>\n"
|
||||
template += "<title>jCore #{version}</title>\n"
|
||||
lib_file = File.read 'lib/libraries.json'
|
||||
libraries = JSON.parse(lib_file)
|
||||
libraries.each do |library|
|
||||
if library['build']
|
||||
template += "<!--Including " + library['name'] + " files -->\n"
|
||||
buffer_js = ""
|
||||
buffer_css = ""
|
||||
files = library['libraries']
|
||||
files.each do |lbry|
|
||||
if lbry['full']
|
||||
buffer_js += "<script type=\"text/javascript\" src=\"" + lbry['full'] + "\" ></script>\n"
|
||||
end
|
||||
if lbry['css']
|
||||
buffer_css += "<link type=\"text/css\" href=\"" + lbry['css'] + "\" rel=\"stylesheet\" />\n"
|
||||
end
|
||||
end
|
||||
template += buffer_css
|
||||
template += buffer_js
|
||||
end
|
||||
end
|
||||
src_file = File.read 'src/build.json'
|
||||
sources = JSON.parse(src_file)
|
||||
sources.each do |source|
|
||||
if source['build']
|
||||
template += "<!--Including " + source['name'] + " files -->\n"
|
||||
styles = source['css']
|
||||
styles.each do |style|
|
||||
template += "<link type=\"text/css\" href=\"" + style + "\" rel=\"stylesheet\" />\n"
|
||||
end
|
||||
files = source['files']
|
||||
files.each do |file|
|
||||
template += "<script type=\"text/javascript\" src=\"" + file + "\" ></script>\n"
|
||||
end
|
||||
end
|
||||
end
|
||||
template += "</head>\n<body>\n"
|
||||
template += "<h1>Welcome to jCore FE #{version}</h1>\n"
|
||||
template += "</body>\n</html>"
|
||||
File.open('devel.html', 'w+') do |file|
|
||||
file.write template
|
||||
end
|
||||
puts "File 'devel.html' has been generated correctly."
|
||||
end
|
||||
|
||||
desc "Set the library's version"
|
||||
task :version, :version do |t,args|
|
||||
if (args['version'])
|
||||
File.open('VERSION.txt', 'w+') do |file|
|
||||
file.write args['version']
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
desc "Create a package for distribution"
|
||||
task :package do
|
||||
begin
|
||||
require 'zip/zip'
|
||||
require 'zip/zipfilesystem'
|
||||
rescue LoadError
|
||||
puts "Zip Tools not found.\nInstall it by running 'gem install rubyzip'"
|
||||
exit
|
||||
end
|
||||
begin
|
||||
require 'json'
|
||||
rescue LoadError
|
||||
puts "JSON not found.\nInstall it by running 'gem install json'"
|
||||
exit
|
||||
end
|
||||
system "rm -rf dist/"
|
||||
Dir.mkdir('dist') unless File.exists?('dist')
|
||||
zip_config = File.read 'dist.json'
|
||||
zips = JSON.parse(zip_config)
|
||||
zips.each do |zip|
|
||||
zip_path = zip['copy_to']
|
||||
fileName = zip['fileName']
|
||||
type = zip['type']
|
||||
version = getVersion
|
||||
archive = zip_path + fileName + "-" + version + "-" + type + ".zip";
|
||||
FileUtils.rm archive, :force=>true
|
||||
Zip::ZipFile.open(archive, 'w') do |zipfile|
|
||||
files = zip['files']
|
||||
files.each do |file|
|
||||
add_files = FileList.new(file)
|
||||
add_files.each do |afile|
|
||||
zipfile.add(afile,afile)
|
||||
end
|
||||
end
|
||||
puts "File: " + archive + " has been created correctly!"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
desc "Run JSHint Javascript sniffer"
|
||||
task :sniffer do
|
||||
system "find src/ -name \"*.js\" -print0 | xargs -0 jslint --sloppy"
|
||||
system "jshint src/"
|
||||
end
|
||||
|
||||
desc "Run JSLint tests"
|
||||
task :jslint, :file do |t, args|
|
||||
if args['file']
|
||||
system "find src/ -name \"" + args['file'] + "\" -print0 | xargs -0 jslint --sloppy"
|
||||
else
|
||||
system "find src/ -name \"*.js\" -print0 | xargs -0 jslint --sloppy"
|
||||
end
|
||||
end
|
||||
|
||||
desc "Run JSHint tests"
|
||||
task :jshint, :file do |t, args|
|
||||
if args['file']
|
||||
system "find src/ -name \"" + args['file'] + "\" -print0 | xargs -0 jshint"
|
||||
else
|
||||
system "jshint src/"
|
||||
end
|
||||
end
|
||||
|
||||
desc "Run JSLint for CI Server"
|
||||
task :jslint_ci do
|
||||
puts "Starting JSLINT test for CI Server"
|
||||
failed_files = []
|
||||
Dir['src/**/*.js'].each do |name|
|
||||
cmd = "jslint --sloppy #{name}"
|
||||
results = %x{#{cmd}}
|
||||
unless results == name + " is OK"
|
||||
failed_files << name
|
||||
else
|
||||
puts "File: " + name + " ...OK"
|
||||
end
|
||||
end
|
||||
if failed_files.size > 0
|
||||
exit 0
|
||||
else
|
||||
puts "JSLINT testing...DONE"
|
||||
end
|
||||
end
|
||||
|
||||
desc "Run Jasmine Test for CI Server"
|
||||
task :jasmine_ci do
|
||||
puts "Starting JASMINE testing..."
|
||||
system "jasmine-node spec/ --junitreport"
|
||||
puts "JASMINE testing...DONE"
|
||||
end
|
||||
|
||||
desc "Compile Documentation with JSDoc 3"
|
||||
task :docs do
|
||||
begin
|
||||
require 'json'
|
||||
rescue LoadError
|
||||
puts "JSON not found.\nInstall it by running 'gem install json'"
|
||||
exit
|
||||
end
|
||||
doc_config = File.read 'docs.json'
|
||||
docs = JSON.parse(doc_config)
|
||||
docs.each do |doc_file|
|
||||
doc_list = ""
|
||||
doc_target = doc_file['build_dir']
|
||||
files = doc_file['files']
|
||||
files.each do |file|
|
||||
doc_list += " " + file
|
||||
end
|
||||
system "jsduck -o " + doc_target + doc_list
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
desc "Build jCore library"
|
||||
task :build, :version do |t, args|
|
||||
if args['version']
|
||||
Rake::Task['version'].invoke(args['version'])
|
||||
end
|
||||
Rake::Task['buildjs'].execute
|
||||
#Rake::Task['skeleton'].execute
|
||||
#Rake::Task['docs'].execute
|
||||
#Rake::Task['package'].execute
|
||||
puts "jCore " + getVersion + " has been build correctly."
|
||||
end
|
||||
|
||||
desc "Default Task - Build Library"
|
||||
task :default do
|
||||
Rake::Task['build'].execute
|
||||
end
|
||||
|
||||
desc "Run Violations Test for CI Server"
|
||||
task :violations do
|
||||
Dir.mkdir('violations') unless File.exists?('violations')
|
||||
Dir.mkdir('violations/js') unless File.exists?('violations/js')
|
||||
Dir.mkdir('violations/css') unless File.exists?('violations/css')
|
||||
system "nodelint src --config config/jslint.js --reporter=xml > violations/js/jslint.xml"
|
||||
system "csslint src --format=checkstyle-xml > violations/css/checkstyle.xml"
|
||||
system "csslint src --format=lint-xml > violations/css/csslint.xml"
|
||||
end
|
||||
|
||||
def getVersion
|
||||
version = File.read 'workflow/engine/bin/tasks/VERSION.js.txt'
|
||||
return version
|
||||
exit
|
||||
end
|
||||
1
workflow/engine/bin/tasks/VERSION.js.txt
Normal file
1
workflow/engine/bin/tasks/VERSION.js.txt
Normal file
@@ -0,0 +1 @@
|
||||
0.1
|
||||
90
workflow/engine/bin/tasks/cliRake.php
Normal file
90
workflow/engine/bin/tasks/cliRake.php
Normal file
@@ -0,0 +1,90 @@
|
||||
<?php
|
||||
/**
|
||||
* cliUpgrade.php
|
||||
*
|
||||
* ProcessMaker Open Source Edition
|
||||
* Copyright (C) 2011 Colosa Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
|
||||
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
|
||||
*
|
||||
* @author Alexandre Rosenfeld <alexandre@colosa.com>
|
||||
* @package workflow-engine-bin-tasks
|
||||
*/
|
||||
|
||||
CLI::taskName('build-js');
|
||||
CLI::taskDescription(<<<EOT
|
||||
Generate Javascript Files
|
||||
|
||||
This command should be run after any modification of javascript files in
|
||||
folder gulliver/js/*.
|
||||
EOT
|
||||
);
|
||||
//CLI::taskOpt("minify", "If the option is enabled, performs the build only with minified files", "min", "buildmin");
|
||||
CLI::taskRun(minify_javascript);
|
||||
|
||||
function minify_javascript($command, $args)
|
||||
{
|
||||
CLI::logging("BUILD-JS\n");
|
||||
//disabling the rakefile version, until we have updated the dev environment
|
||||
//CLI::logging("Checking if rake is installed...\n");
|
||||
//$rakeFile = PROCESSMAKER_PATH . "workflow/engine/bin/tasks/Rakefile";
|
||||
//system('rake -f ' . $rakeFile);
|
||||
|
||||
require_once (PATH_THIRDPARTY . 'jsmin/jsmin.php');
|
||||
|
||||
$libraries = json_decode( file_get_contents ( PATH_HOME . 'engine/bin/tasks/libraries.json' ));
|
||||
//print_r($libraries);
|
||||
|
||||
foreach ($libraries as $k=>$library ) {
|
||||
$build = $library->build;
|
||||
if ($build) {
|
||||
$bufferMini = "";
|
||||
$sum1 = 0;
|
||||
$sum2 = 0;
|
||||
$libName = $library->name;
|
||||
$files = $library->libraries;
|
||||
$js_path = $library->build_js_to;
|
||||
printf ("Processing %s library:\n", $libName );
|
||||
foreach ( $files as $file ) {
|
||||
printf ( " %-20s ", $file->name );
|
||||
$fileNameMini = PATH_TRUNK . $file->mini;
|
||||
if ($file->minify) {
|
||||
$minify = JSMin::minify( file_get_contents( $fileNameMini ) );
|
||||
} else {
|
||||
$minify = file_get_contents( $fileNameMini );
|
||||
}
|
||||
$bufferMini .= $minify;
|
||||
$size1 = filesize($fileNameMini);
|
||||
$size2 = strlen($minify);
|
||||
$sum1 += $size1;
|
||||
$sum2 += $size2;
|
||||
printf ("%7d -> %7d %5.2f%%\n", $size1, $size2, 100 - $size2/$size1*100) ;
|
||||
}
|
||||
if (substr($library->build_js_to ,-1) != '/') {
|
||||
$library->build_js_to .= '/';
|
||||
}
|
||||
$outputMiniFile = PATH_TRUNK . $library->build_js_to . $libName . ".js";
|
||||
file_put_contents ( $outputMiniFile, $bufferMini );
|
||||
printf (" -------------------- ------- ------- ------\n");
|
||||
printf (" %-20s %7d -> %7d %6.2f%%\n", $libName.'.js', $sum1, $sum2, 100-$sum2/$sum1*100) ;
|
||||
print " $outputMiniFile\n";
|
||||
|
||||
}
|
||||
}
|
||||
CLI::logging("BUILD-JS DONE\n");
|
||||
}
|
||||
|
||||
209
workflow/engine/bin/tasks/libraries.json
Normal file
209
workflow/engine/bin/tasks/libraries.json
Normal file
@@ -0,0 +1,209 @@
|
||||
[
|
||||
{
|
||||
"name": "maborak",
|
||||
"libraries": [
|
||||
{
|
||||
"name": "maborak",
|
||||
"full": "gulliver/js/maborak/core/maborak.old.js",
|
||||
"mini": "gulliver/js/maborak/core/maborak.old.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "common",
|
||||
"full": "gulliver/js/common/core/common.js",
|
||||
"mini": "gulliver/js/common/core/common.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "effects",
|
||||
"full": "gulliver/js/common/core/effects.js",
|
||||
"mini": "gulliver/js/common/core/effects.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "webResource",
|
||||
"full": "gulliver/js/common/core/webResource.js",
|
||||
"mini": "gulliver/js/common/core/webResource.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "dveditor",
|
||||
"full": "gulliver/js/dveditor/core/dveditor.js",
|
||||
"mini": "gulliver/js/dveditor/core/dveditor.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "tree",
|
||||
"full": "gulliver/js/common/tree/tree.js",
|
||||
"mini": "gulliver/js/common/tree/tree.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "json",
|
||||
"full": "gulliver/js/json/core/json.js",
|
||||
"mini": "gulliver/js/json/core/json.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "form",
|
||||
"full": "gulliver/js/form/core/form.js",
|
||||
"mini": "gulliver/js/form/core/form.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "pagedTable",
|
||||
"full": "gulliver/js/form/core/pagedTable.js",
|
||||
"mini": "gulliver/js/form/core/pagedTable.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "grid",
|
||||
"full": "gulliver/js/grid/core/grid.js",
|
||||
"mini": "gulliver/js/grid/core/grid.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "js-calendar",
|
||||
"full": "gulliver/js/widgets/js-calendar/js-calendar.js",
|
||||
"mini": "gulliver/js/widgets/js-calendar/js-calendar.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "bsn.AutoSuggest",
|
||||
"full": "gulliver/js/widgets/suggest/bsn.AutoSuggest_2.1.3.js",
|
||||
"mini": "gulliver/js/widgets/suggest/bsn.AutoSuggest_2.1.3.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "pmtooltip",
|
||||
"full": "gulliver/js/widgets/tooltip/pmtooltip.js",
|
||||
"mini": "gulliver/js/widgets/tooltip/pmtooltip.js",
|
||||
"minify": true
|
||||
}
|
||||
],
|
||||
"build" : true,
|
||||
"build_js_to" : "gulliver/js/maborak/core/"
|
||||
},
|
||||
{
|
||||
"name": "maborak.loader",
|
||||
"libraries": [
|
||||
{
|
||||
"name": "module.panel",
|
||||
"full": "gulliver/js/maborak/core/module.panel.js",
|
||||
"mini": "gulliver/js/maborak/core/module.panel.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.validator",
|
||||
"full": "gulliver/js/maborak/core/module.validator.js",
|
||||
"mini": "gulliver/js/maborak/core/module.validator.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.app",
|
||||
"full": "gulliver/js/maborak/core/module.app.js",
|
||||
"mini": "gulliver/js/maborak/core/module.app.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.rpc",
|
||||
"full": "gulliver/js/maborak/core/module.rpc.js",
|
||||
"mini": "gulliver/js/maborak/core/module.rpc.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.fx",
|
||||
"full": "gulliver/js/maborak/core/module.fx.js",
|
||||
"mini": "gulliver/js/maborak/core/module.fx.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.drag",
|
||||
"full": "gulliver/js/maborak/core/module.drag.js",
|
||||
"mini": "gulliver/js/maborak/core/module.drag.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.drop",
|
||||
"full": "gulliver/js/maborak/core/module.drop.js",
|
||||
"mini": "gulliver/js/maborak/core/module.drop.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.dom",
|
||||
"full": "gulliver/js/maborak/core/module.dom.js",
|
||||
"mini": "gulliver/js/maborak/core/module.dom.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "module.dashboard",
|
||||
"full": "gulliver/js/maborak/core/module.dashboard.js",
|
||||
"mini": "gulliver/js/maborak/core/module.dashboard.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "cases",
|
||||
"full": "workflow/engine/js/cases/core/cases.js",
|
||||
"mini": "workflow/engine/js/cases/core/cases.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "cases_Step",
|
||||
"full": "workflow/engine/js/cases/core/cases_Step.js",
|
||||
"mini": "workflow/engine/js/cases/core/cases_Step.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "processmap",
|
||||
"full": "workflow/engine/js/processmap/core/processmap.js",
|
||||
"mini": "workflow/engine/js/processmap/core/processmap.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "appFolderList",
|
||||
"full": "workflow/engine/js/appFolder/core/appFolderList.js",
|
||||
"mini": "workflow/engine/js/appFolder/core/appFolderList.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "editor",
|
||||
"full": "gulliver/thirdparty/htmlarea/editor.js",
|
||||
"mini": "gulliver/thirdparty/htmlarea/editor.js",
|
||||
"minify": true
|
||||
}
|
||||
],
|
||||
"build" : true,
|
||||
"build_js_to" : "gulliver/js/maborak/core/"
|
||||
},
|
||||
{
|
||||
"name": "draw2d",
|
||||
"libraries": [
|
||||
{
|
||||
"name": "wz_jsgraphics",
|
||||
"full": "gulliver/js/ext/wz_jsgraphics.js",
|
||||
"mini": "gulliver/js/ext/wz_jsgraphics.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "mootools",
|
||||
"full": "gulliver/js/ext/mootools.js",
|
||||
"mini": "gulliver/js/ext/mootools.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "moocanvas",
|
||||
"full": "gulliver/js/ext/moocanvas.js",
|
||||
"mini": "gulliver/js/ext/moocanvas.js",
|
||||
"minify": true
|
||||
},
|
||||
{
|
||||
"name": "draw2d",
|
||||
"full": "gulliver/js/ext/draw2d.old.js",
|
||||
"mini": "gulliver/js/ext/draw2d.old.js",
|
||||
"minify": true
|
||||
}
|
||||
],
|
||||
"build" : false,
|
||||
"build_js_to" : "gulliver/js/ext/"
|
||||
}
|
||||
]
|
||||
@@ -792,7 +792,7 @@ class processMap
|
||||
$externalSteps = $oPluginRegistry->getSteps();
|
||||
|
||||
$aSteps = array ();
|
||||
$aSteps[] = array ('STEP_TITLE' => 'char','STEP_UID' => 'char','STEP_TYPE_OBJ' => 'char','STEP_CONDITION' => 'char','STEP_POSITION' => 'integer'
|
||||
$aSteps[] = array ('STEP_TITLE' => 'char','STEP_UID' => 'char','STEP_TYPE_OBJ' => 'char','STEP_MODE' => 'char','STEP_CONDITION' => 'char','STEP_POSITION' => 'integer'
|
||||
);
|
||||
$oCriteria = new Criteria( 'workflow' );
|
||||
$oCriteria->add( StepPeer::TAS_UID, $sTaskUID );
|
||||
@@ -850,7 +850,8 @@ class processMap
|
||||
}
|
||||
break;
|
||||
}
|
||||
$aSteps[] = array ('STEP_TITLE' => $sTitle,'STEP_UID' => $aRow['STEP_UID'],'STEP_TYPE_OBJ' => $aRow['STEP_TYPE_OBJ'],'STEP_CONDITION' => $aRow['STEP_CONDITION'],'STEP_POSITION' => $aRow['STEP_POSITION'],'urlEdit' => $urlEdit,'linkEditValue' => $linkEditValue,'PRO_UID' => $aRow['PRO_UID']
|
||||
|
||||
$aSteps[] = array ('STEP_TITLE' => $sTitle,'STEP_UID' => $aRow['STEP_UID'],'STEP_TYPE_OBJ' => $aRow['STEP_TYPE_OBJ'],'STEP_MODE' => $aRow['STEP_MODE'],'STEP_CONDITION' => $aRow['STEP_CONDITION'],'STEP_POSITION' => $aRow['STEP_POSITION'],'urlEdit' => $urlEdit,'linkEditValue' => $linkEditValue,'PRO_UID' => $aRow['PRO_UID']
|
||||
);
|
||||
$oDataset->next();
|
||||
}
|
||||
|
||||
@@ -218,6 +218,53 @@ class Home extends Controller
|
||||
$this->render();
|
||||
}
|
||||
|
||||
public function appAdvancedSearch ($httpData)
|
||||
{
|
||||
$title = G::LoadTranslation("ID_ADVANCEDSEARCH");
|
||||
$httpData->t = 'search';
|
||||
|
||||
// settings html template
|
||||
$this->setView( $this->userUxBaseTemplate . PATH_SEP . 'appListSearch' );
|
||||
|
||||
$process = (isset($httpData->process)) ? $httpData->process : null;
|
||||
$status = (isset($httpData->status)) ? $httpData->status : null;
|
||||
$search = (isset($httpData->search)) ? $httpData->search : null;
|
||||
$category = (isset($httpData->category)) ? $httpData->category : null;
|
||||
$user = (isset($httpData->user)) ? $httpData->user : null;
|
||||
$dateFrom = (isset($httpData->dateFrom)) ? $httpData->dateFrom : null;
|
||||
$dateTo = (isset($httpData->dateTo)) ? $httpData->dateTo : null;
|
||||
|
||||
$cases = $this->getAppsData( $httpData->t, null, null, $user, null, $search, $process, $status, $dateFrom, $dateTo, null, null, 'APP_CACHE_VIEW.APP_NUMBER', $category);
|
||||
$arraySearch = array($process, $status, $search, $category, $user, $dateFrom, $dateTo );
|
||||
|
||||
// settings vars and rendering
|
||||
$processes = array();
|
||||
$processes = $this->getProcessArray($httpData->t, $this->userID );
|
||||
$this->setVar( 'statusValues', $this->getStatusArray( $httpData->t, $this->userID ) );
|
||||
$this->setVar( 'processValues', $processes );
|
||||
$this->setVar( 'categoryValues', $this->getCategoryArray() );
|
||||
$this->setVar( 'userValues', $this->getUserArray( $httpData->t, $this->userID ) );
|
||||
$this->setVar( 'allUsersValues', $this->getAllUsersArray( 'search' ) );
|
||||
$this->setVar( 'categoryTitle', G::LoadTranslation("ID_CATEGORY") );
|
||||
$this->setVar( 'processTitle', G::LoadTranslation("ID_PROCESS") );
|
||||
$this->setVar( 'statusTitle', G::LoadTranslation("ID_STATUS") );
|
||||
$this->setVar( 'searchTitle', G::LoadTranslation("ID_SEARCH") );
|
||||
$this->setVar( 'userTitle', G::LoadTranslation("ID_USER") );
|
||||
$this->setVar( 'fromTitle', G::LoadTranslation("ID_DELEGATE_DATE_FROM") );
|
||||
$this->setVar( 'toTitle', G::LoadTranslation("ID_DELEGATE_DATE_TO") );
|
||||
$this->setVar( 'filterTitle', G::LoadTranslation("ID_FILTER") );
|
||||
$this->setVar( 'arraySearch', $arraySearch );
|
||||
|
||||
$this->setVar( 'cases', $cases['data'] );
|
||||
$this->setVar( 'cases_count', $cases['totalCount'] );
|
||||
$this->setVar( 'title', $title );
|
||||
$this->setVar( 'appListStart', $this->appListLimit );
|
||||
$this->setVar( 'appListLimit', 10 );
|
||||
$this->setVar( 'listType', $httpData->t );
|
||||
|
||||
$this->render();
|
||||
}
|
||||
|
||||
public function getApps ($httpData)
|
||||
{
|
||||
$cases = $this->getAppsData( $httpData->t, $httpData->start, $httpData->limit );
|
||||
@@ -227,7 +274,21 @@ class Home extends Controller
|
||||
$this->render();
|
||||
}
|
||||
|
||||
public function getAppsData ($type, $start = null, $limit = null)
|
||||
public function getAppsData (
|
||||
$type,
|
||||
$start = null,
|
||||
$limit = null,
|
||||
$user = null,
|
||||
$filter = null,
|
||||
$search = null,
|
||||
$process = null,
|
||||
$status = null,
|
||||
$dateFrom = null,
|
||||
$dateTo = null,
|
||||
$callback = null,
|
||||
$dir = null,
|
||||
$sort = "APP_CACHE_VIEW.APP_NUMBER",
|
||||
$category = null)
|
||||
{
|
||||
require_once ("classes/model/AppNotes.php");
|
||||
G::LoadClass( 'applications' );
|
||||
@@ -240,10 +301,22 @@ class Home extends Controller
|
||||
|
||||
$notesStart = 0;
|
||||
$notesLimit = 4;
|
||||
switch ($user) {
|
||||
case 'CURRENT_USER':
|
||||
$user = $this->userID;
|
||||
break;
|
||||
case 'ALL':
|
||||
$user = null;
|
||||
break;
|
||||
case null:
|
||||
$user = $this->userID;
|
||||
break;
|
||||
default:
|
||||
//$user = $this->userID;
|
||||
break;
|
||||
}
|
||||
|
||||
$cases = $apps->getAll( $this->userID, $start, $limit, $type );
|
||||
//g::pr($cases['data']); die;
|
||||
|
||||
$cases = $apps->getAll( $user, $start, $limit, $type, $filter, $search, $process, $status, $type, $dateFrom, $dateTo, $callback, $dir, $sort, $category);
|
||||
|
||||
// formating & complitting apps data with 'Notes'
|
||||
foreach ($cases['data'] as $i => $row) {
|
||||
@@ -312,5 +385,216 @@ class Home extends Controller
|
||||
$this->setView( $tpl );
|
||||
$this->render();
|
||||
}
|
||||
|
||||
function getUserArray ($action, $userUid)
|
||||
{
|
||||
global $oAppCache;
|
||||
$status = array ();
|
||||
$users[] = array ("CURRENT_USER",G::LoadTranslation( "ID_CURRENT_USER" ));
|
||||
$users[] = array ("ALL",G::LoadTranslation( "ID_ALL_USERS" ));
|
||||
|
||||
//now get users, just for the Search action
|
||||
switch ($action) {
|
||||
case 'search_simple':
|
||||
case 'search':
|
||||
$cUsers = new Criteria( 'workflow' );
|
||||
$cUsers->clearSelectColumns();
|
||||
$cUsers->addSelectColumn( UsersPeer::USR_UID );
|
||||
$cUsers->addSelectColumn( UsersPeer::USR_FIRSTNAME );
|
||||
$cUsers->addSelectColumn( UsersPeer::USR_LASTNAME );
|
||||
$oDataset = UsersPeer::doSelectRS( $cUsers );
|
||||
$oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$oDataset->next();
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
$users[] = array ($aRow['USR_UID'], htmlentities($aRow['USR_LASTNAME'] . ' ' . $aRow['USR_FIRSTNAME'], ENT_QUOTES, "UTF-8"));
|
||||
$oDataset->next();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return $users;
|
||||
break;
|
||||
}
|
||||
return $users;
|
||||
}
|
||||
|
||||
function getCategoryArray ()
|
||||
{
|
||||
global $oAppCache;
|
||||
require_once 'classes/model/ProcessCategory.php';
|
||||
$category[] = array ("",G::LoadTranslation( "ID_ALL_CATEGORIES" )
|
||||
);
|
||||
|
||||
$criteria = new Criteria( 'workflow' );
|
||||
$criteria->addSelectColumn( ProcessCategoryPeer::CATEGORY_UID );
|
||||
$criteria->addSelectColumn( ProcessCategoryPeer::CATEGORY_NAME );
|
||||
$dataset = ProcessCategoryPeer::doSelectRS( $criteria );
|
||||
$dataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$dataset->next();
|
||||
|
||||
while ($row = $dataset->getRow()) {
|
||||
$category[] = array ($row['CATEGORY_UID'],$row['CATEGORY_NAME']);
|
||||
$dataset->next();
|
||||
}
|
||||
return $category;
|
||||
}
|
||||
|
||||
function getAllUsersArray ($action)
|
||||
{
|
||||
global $oAppCache;
|
||||
$status = array ();
|
||||
$users[] = array ("CURRENT_USER",G::LoadTranslation( "ID_CURRENT_USER" )
|
||||
);
|
||||
$users[] = array ("",G::LoadTranslation( "ID_ALL_USERS" )
|
||||
);
|
||||
|
||||
if ($action == 'to_reassign') {
|
||||
//now get users, just for the Search action
|
||||
$cUsers = $oAppCache->getToReassignListCriteria(null);
|
||||
$cUsers->addSelectColumn( AppCacheViewPeer::USR_UID );
|
||||
|
||||
if (g::MySQLSintaxis()) {
|
||||
$cUsers->addGroupByColumn( AppCacheViewPeer::USR_UID );
|
||||
}
|
||||
|
||||
$cUsers->addAscendingOrderByColumn( AppCacheViewPeer::APP_CURRENT_USER );
|
||||
$oDataset = AppCacheViewPeer::doSelectRS( $cUsers );
|
||||
$oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$oDataset->next();
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
$users[] = array ($aRow['USR_UID'],$aRow['APP_CURRENT_USER']);
|
||||
$oDataset->next();
|
||||
}
|
||||
}
|
||||
return $users;
|
||||
}
|
||||
|
||||
function getStatusArray ($action, $userUid)
|
||||
{
|
||||
global $oAppCache;
|
||||
$status = array ();
|
||||
$status[] = array ('',G::LoadTranslation( 'ID_ALL_STATUS' ));
|
||||
//get the list based in the action provided
|
||||
switch ($action) {
|
||||
case 'sent':
|
||||
$cStatus = $oAppCache->getSentListProcessCriteria( $userUid ); // a little slow
|
||||
break;
|
||||
case 'simple_search':
|
||||
case 'search':
|
||||
$cStatus = new Criteria( 'workflow' );
|
||||
$cStatus->clearSelectColumns();
|
||||
$cStatus->setDistinct();
|
||||
$cStatus->addSelectColumn( ApplicationPeer::APP_STATUS );
|
||||
$oDataset = ApplicationPeer::doSelectRS( $cStatus );
|
||||
$oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$oDataset->next();
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
$status[] = array ($aRow['APP_STATUS'],G::LoadTranslation( 'ID_CASES_STATUS_' . $aRow['APP_STATUS'] )
|
||||
); //here we can have a translation for the status ( the second param)
|
||||
$oDataset->next();
|
||||
}
|
||||
return $status;
|
||||
break;
|
||||
case 'selfservice':
|
||||
$cStatus = $oAppCache->getUnassignedListCriteria( $userUid );
|
||||
break;
|
||||
case 'paused':
|
||||
$cStatus = $oAppCache->getPausedListCriteria( $userUid );
|
||||
break;
|
||||
case 'to_revise':
|
||||
$cStatus = $oAppCache->getToReviseListCriteria( $userUid );
|
||||
// $cStatus = $oAppCache->getPausedListCriteria($userUid);
|
||||
break;
|
||||
case 'to_reassign':
|
||||
$cStatus = $oAppCache->getToReassignListCriteria($userUid);
|
||||
break;
|
||||
case 'todo':
|
||||
case 'draft':
|
||||
case 'gral':
|
||||
// case 'to_revise' :
|
||||
default:
|
||||
return $status;
|
||||
break;
|
||||
}
|
||||
|
||||
//get the status for this user in this action only for participated, unassigned, paused
|
||||
// if ( $action != 'todo' && $action != 'draft' && $action != 'to_revise') {
|
||||
if ($action != 'todo' && $action != 'draft') {
|
||||
//$cStatus = new Criteria('workflow');
|
||||
$cStatus->clearSelectColumns();
|
||||
$cStatus->setDistinct();
|
||||
$cStatus->addSelectColumn( AppCacheViewPeer::APP_STATUS );
|
||||
$oDataset = AppCacheViewPeer::doSelectRS( $cStatus );
|
||||
$oDataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
||||
$oDataset->next();
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
$status[] = array ($aRow['APP_STATUS'],G::LoadTranslation( 'ID_CASES_STATUS_' . $aRow['APP_STATUS'] ));
|
||||
//here we can have a translation for the status ( the second param)
|
||||
$oDataset->next();
|
||||
}
|
||||
}
|
||||
return $status;
|
||||
}
|
||||
function getProcessArray($action, $userUid)
|
||||
{
|
||||
global $oAppCache;
|
||||
|
||||
$processes = array();
|
||||
$processes[] = array("", G::LoadTranslation("ID_ALL_PROCESS"));
|
||||
|
||||
switch ($action) {
|
||||
case "simple_search":
|
||||
case "search":
|
||||
//In search action, the query to obtain all process is too slow, so we need to query directly to
|
||||
//process and content tables, and for that reason we need the current language in AppCacheView.
|
||||
G::loadClass("configuration");
|
||||
$oConf = new Configurations;
|
||||
$oConf->loadConfig($x, "APP_CACHE_VIEW_ENGINE", "", "", "", "");
|
||||
$appCacheViewEngine = $oConf->aConfig;
|
||||
$lang = isset($appCacheViewEngine["LANG"])? $appCacheViewEngine["LANG"] : "en";
|
||||
|
||||
$cProcess = new Criteria("workflow");
|
||||
$cProcess->clearSelectColumns();
|
||||
$cProcess->addSelectColumn(ProcessPeer::PRO_UID);
|
||||
$cProcess->addSelectColumn(ContentPeer::CON_VALUE);
|
||||
|
||||
$del = DBAdapter::getStringDelimiter();
|
||||
|
||||
$conds = array();
|
||||
$conds[] = array(ProcessPeer::PRO_UID, ContentPeer::CON_ID);
|
||||
$conds[] = array(ContentPeer::CON_CATEGORY, $del . "PRO_TITLE" . $del);
|
||||
$conds[] = array(ContentPeer::CON_LANG, $del . $lang . $del);
|
||||
$cProcess->addJoinMC($conds, Criteria::LEFT_JOIN);
|
||||
$cProcess->add(ProcessPeer::PRO_STATUS, "ACTIVE");
|
||||
$oDataset = ProcessPeer::doSelectRS($cProcess);
|
||||
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
|
||||
$oDataset->next();
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
$processes[] = array($aRow["PRO_UID"], $aRow["CON_VALUE"]);
|
||||
$oDataset->next();
|
||||
}
|
||||
|
||||
return ($processes);
|
||||
break;
|
||||
case "consolidated":
|
||||
default:
|
||||
$cProcess = $oAppCache->getToDoListCriteria($userUid); //fast enough
|
||||
break;
|
||||
}
|
||||
|
||||
$cProcess->clearSelectColumns();
|
||||
$cProcess->setDistinct();
|
||||
$cProcess->addSelectColumn(AppCacheViewPeer::PRO_UID);
|
||||
$cProcess->addSelectColumn(AppCacheViewPeer::APP_PRO_TITLE);
|
||||
$oDataset = AppCacheViewPeer::doSelectRS($cProcess);
|
||||
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
||||
$oDataset->next();
|
||||
|
||||
while ($aRow = $oDataset->getRow()) {
|
||||
$processes[] = array($aRow["PRO_UID"], $aRow["APP_PRO_TITLE"]);
|
||||
$oDataset->next();
|
||||
}
|
||||
return ($processes);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1463,7 +1463,7 @@ SELECT 'LABEL','ID_MSG_ERROR_USR_USERNAME','en','User name required!','2012-06-0
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_ERROR_DUE_DATE','en','Due date required!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NEW_PASS_SAME_OLD_PASS','en','The confirm Password fields must be the same!','2012-06-01'
|
||||
SELECT 'LABEL','ID_NEW_PASS_SAME_OLD_PASS','en','The confirm Password fields must be the same!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NEW_INPUTDOCS','en','New Input Document','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -1543,7 +1543,7 @@ SELECT 'LABEL','ID_PROCESSMAP_DYNAFORMS','en','DynaForms','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ATTACH','en','Attach','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_CASES','en','Are you sure you want to delete all selected cases?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_CASES','en','Are you sure you want to delete all selected cases?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ALL','en','All','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -1713,7 +1713,7 @@ SELECT 'LABEL','ID_WITHOUT_RESUME','en','Without resume!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NO_RESUME','en','The user doesn''t have a resume.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NO_DERIVATION_RULE','en','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.','2012-06-01'
|
||||
SELECT 'LABEL','ID_NO_DERIVATION_RULE','en','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.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NO_USERS','en','The task doesn''t have any users.','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -1897,7 +1897,7 @@ SELECT 'LABEL','ID_FOLDERS','en','Documents','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_ROLES_MSG1','en','You must specify a role code!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01'
|
||||
SELECT 'LABEL','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_SUPERVISOR_DYNAFORM','en','Do you want to remove this DynaForm?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -1917,7 +1917,7 @@ SELECT 'LABEL','ID_MESS_ENGINE_TYPE_3','en','SMTP (OpenMail)','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MESS_TEST_MESSAGE_ERROR_PHP_MAIL','en','Test message send failed, error:','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','IMPORT_LANGUAGE_ERR_NO_WRITABLE2','en','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.','2012-06-01'
|
||||
SELECT 'LABEL','IMPORT_LANGUAGE_ERR_NO_WRITABLE2','en','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.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MESS_ENGINE_TYPE_2','en','SMTP (PHPMailer)','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -1931,7 +1931,7 @@ SELECT 'JAVASCRIPT','ID_MESS_TEST_FROM_EMAIL','en','The ''From Email'' field is
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MESS_TEST_TO','en','The ''To'' field is required','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MESS_SEND_MAX_REQUIRED','en','The maximum number of attempts to send mail is a required field.','2012-06-01'
|
||||
SELECT 'LABEL','ID_MESS_SEND_MAX_REQUIRED','en','The maximum number of attempts to send mail is a required field.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MESS_EXECUTE_EVERY_REQUIRED','en','The ''Execute Every'' field is required','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2043,15 +2043,15 @@ SELECT 'LABEL','ID_REACTIVATE','en','Reactivate','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_USER_GROUPS','en','Groups for','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_FUNCTION','en','@function() It evaluates the value, then executes a PHP function','2012-06-01'
|
||||
SELECT 'LABEL','ID_FUNCTION','en','@function() It evaluates the value, then executes a PHP function','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MSG_CONFIRM_REACTIVATE_CASES','en','Are you sure you want to reactivate this case?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CONFIRM_REACTIVATE_CASE','en','Are you sure you want to reactivate this case?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ESCSJS','en','@@ It replaces the value in single quotation marks to use it in JavaScript sentences.','2012-06-01'
|
||||
SELECT 'LABEL','ID_ESCSJS','en','@@ It replaces the value in single quotation marks to use it in JavaScript sentences.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ESCJS','en','@@ It replaces the value in quotation marks to use it in JavaScript sentences','2012-06-01'
|
||||
SELECT 'LABEL','ID_ESCJS','en','@@ It replaces the value in quotation marks to use it in JavaScript sentences','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ESC','en','@@ Replace the value in quotes','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2319,7 +2319,7 @@ SELECT 'LABEL','ID_DYNAFORM_HISTORY','en','Change Log','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CASEDEMO','en','Case Demo','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NEED_REGISTER','en','You need to be registered to download this process. Register NOW!','2012-06-01'
|
||||
SELECT 'LABEL','ID_NEED_REGISTER','en','You need to be registered to download this process. Register NOW!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_INCORRECT_USER_OR_PASS','en','Incorrect username or password','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2369,7 +2369,7 @@ SELECT 'JAVASCRIPT','CONDITIONAL_NOFIELDS_IN_CONDITION','en','No records found f
|
||||
UNION ALL
|
||||
SELECT 'LABEL','IMPORT_LANGUAGE_ERR_NO_WRITABLE','en','The XML forms directory is not writable','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_ALERT2','en','You should select at least one event (OnChange or OnLoad )','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_ALERT2','en','You should select at least one event (OnChange or OnLoad )','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_TITLE','en','CONDITIONAL SHOW/HIDE EDITOR','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2389,11 +2389,11 @@ SELECT 'LABEL','ID_FULL_NAME','en','Full Name','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ROLE','en','Role','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CANNOT_DELETE_USER','en','User cannot be deleted while has assigned cases.','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CANNOT_DELETE_USER','en','User cannot be deleted while has assigned cases.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','USERS_REASSIGN','en','This user cannot be deleted because he/she still has some pending tasks. <br/><br/>Do you want to reassign these tasks to another user now?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','USERS_REASSIGN','en','This user cannot be deleted because he/she still has some pending tasks. <br/><br/>Do you want to reassign these tasks to another user now?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','LOGIN_VERIFY_MSG','en','Verifying...','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2419,7 +2419,7 @@ SELECT 'LABEL','ID_DEBUG','en','Debugger','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_EVENT','en','Do you want to delete this event?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MSG_CONFIRM_RESENDMSG','en','Are you sure that you want to resend this message?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_MSG_CONFIRM_RESENDMSG','en','Are you sure that you want to resend this message?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_RESEND','en','Resend','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2453,7 +2453,7 @@ SELECT 'LABEL','ID_AUTHENTICATION_SOURCE_INVALID','en','Authentication Source fo
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_USER_INACTIVE_BY_DATE','en','User not allowed access past due date','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_AUTH_SOURCE','en','Do you want to delete this authentication source?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_AUTH_SOURCE','en','Do you want to delete this authentication source?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ERROR_OBJECT_NOT_EXISTS','en','Error: Object does not exist.','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2465,7 +2465,7 @@ SELECT 'JAVASCRIPT','ID_PROCESSMAP_SUPERVISORS_INPUTS','en','Input Documents','2
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_ASSIGN_INPUT_DOCUMENT','en','Assign Input Document','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NOT_DERIVATED','en','The case couldn''t be routed. Consult the system administrator','2012-06-01'
|
||||
SELECT 'LABEL','ID_NOT_DERIVATED','en','The case couldn''t be routed. Consult the system administrator','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_SUPERVISOR_INPUT','en','Do you want to remove this Input Document?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2497,19 +2497,19 @@ SELECT 'LABEL','ID_ACCOUNT_DISABLED_CONTACT_ADMIN','en','disabled, please contac
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_WORKSPACE_USING','en','Using workspace','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_REASSIGN_BYUSER_CONFIRM','en','Are you sure that you want to reassign the cases?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_REASSIGN_BYUSER_CONFIRM','en','Are you sure that you want to reassign the cases?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_REASSIGN_BYUSER','en','At least one item from the list must be selected.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_REASSIGN_BYUSER','en','At least one item from the list must be selected.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MSG_RESSIGN_BYUSER_PANEL','en','Users selection interface','2012-06-01'
|
||||
;
|
||||
INSERT INTO [TRANSLATION] ([TRN_CATEGORY],[TRN_ID],[TRN_LANG],[TRN_VALUE],[TRN_UPDATE_DATE])
|
||||
|
||||
SELECT 'JAVASCRIPT','ID_MSG_RESSIGN_B','en','At least one item from the list must be selected.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_MSG_RESSIGN_B','en','At least one item from the list must be selected.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DETAILS_WEBSERVICES','en','Details','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ERROR_STREAMING_FILE','en','doesn''t exist. It should be saved by a plugin to a different place. Please review the configuration','2012-06-01'
|
||||
SELECT 'LABEL','ID_ERROR_STREAMING_FILE','en','doesn''t exist. It should be saved by a plugin to a different place. Please review the configuration','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_UPLOAD_ERR_UNKNOWN','en','Unknown upload error','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2523,9 +2523,9 @@ SELECT 'LABEL','ID_UPLOAD_ERR_NO_FILE','en','No file was uploaded','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_UPLOAD_ERR_PARTIAL','en','The uploaded file was only partially uploaded','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_UPLOAD_ERR_FORM_SIZE','en','The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form','2012-06-01'
|
||||
SELECT 'LABEL','ID_UPLOAD_ERR_FORM_SIZE','en','The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_UPLOAD_ERR_INI_SIZE','en','The uploaded file exceeds the upload_max_filesize directive in php.ini','2012-06-01'
|
||||
SELECT 'LABEL','ID_UPLOAD_ERR_INI_SIZE','en','The uploaded file exceeds the upload_max_filesize directive in php.ini','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NOT_PROCESS_RELATED','en','Not from a Process','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2533,9 +2533,9 @@ SELECT 'LABEL','ID_EXTERNAL_FILE','en','External','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INFO','en','Info','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This action will delete the current document and all its versions','2012-06-01'
|
||||
SELECT 'LABEL','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This action will delete the current document and all its versions','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This will delete the current document and its past versions.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This will delete the current document and its past versions.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SETUP_MAILCONF_TITLE','en','Test SMTP Connection','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2571,7 +2571,7 @@ SELECT 'LABEL','ID_FIELD_HANDLER_HELP1','en','About the feature','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_FIELD_HANDLER_HELP2','en','Drag & Drop to move and reorder the fields.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_FIELD_HANDLER_HELP3','en','Bring the mouse pointer near tool icon and the corresponding options (Edit, Delete) will be shown.','2012-06-01'
|
||||
SELECT 'LABEL','ID_FIELD_HANDLER_HELP3','en','Bring the mouse pointer near tool icon and the corresponding options (Edit, Delete) will be shown.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_CONFIRM_WEBENTRY_DELETE','en','Are you sure you want to delete this web entry?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2587,29 +2587,29 @@ SELECT 'LABEL','ID_LABEL','en','Label','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NAME','en','Name','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','WEBEN_ONLY_BALANCED','en','Web Entry only works with tasks which have Cyclical Assignment.<br/> Please change the Assignment Rules','2012-06-01'
|
||||
SELECT 'LABEL','WEBEN_ONLY_BALANCED','en','Web Entry only works with tasks which have Cyclical Assignment.<br/> Please change the Assignment Rules','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DETAIL','en','Detail','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','HTML_FILES','en','You can open only files with the .html extension','2012-06-01'
|
||||
SELECT 'LABEL','HTML_FILES','en','You can open only files with the .html extension','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','WEBEN_ONLY_BALANCEDJS','en','Web Entry only works with tasks which have Cyclical Assignment. Please change the Assignment Rules','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','WEBEN_ONLY_BALANCEDJS','en','Web Entry only works with tasks which have Cyclical Assignment. Please change the Assignment Rules','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','HTML_FILES','en','Make sure your uploaded file has extension html or txt','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','HTML_FILES','en','Make sure your uploaded file has extension html or txt','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SEARCH_RESULT','en','Search results','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_REMOVE_PLUGIN_SUCCESS','en','Plugin successfully removed!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','CANT_DEL_LANGUAGE','en','This language cannot be deleted because it is currently being used.','2012-06-01'
|
||||
SELECT 'LABEL','CANT_DEL_LANGUAGE','en','This language cannot be deleted because it is currently being used.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_ADD','en','Add','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_ALERT3','en','You have not tested the condition, do you want save anyway?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_ALERT3','en','You have not tested the condition, do you want save anyway?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_ALERT4','en','You have an error in the condition, do you want save anyway?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','CONDITIONAL_ALERT4','en','You have an error in the condition, do you want save anyway?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ERROR','en','ERROR','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2631,7 +2631,7 @@ SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_DEPARTMENT','en','Do you want to delete th
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MSJ_DEPTO','en','Department name already exists!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSJ_REPORSTO','en','The current user does not have a valid Reports To user. Please contact the administrator.','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSJ_REPORSTO','en','The current user does not have a valid Reports To user. Please contact the administrator.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_REMOVE_LOGO','en','Are you sure you want to delete this Logo?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2655,13 +2655,13 @@ SELECT 'LABEL','ID_SENT','en','Participated','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CALENDAR','en','Calendar','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_CASE_SCHEDULER','en','Are you sure you want to delete this scheduled case?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_CASE_SCHEDULER','en','Are you sure you want to delete this scheduled case?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SCHEDULER_LIST','en','New cases scheduler','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SCHEDULER_LOG','en','Cases Scheduler Logs','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_IDOCUMENT','en','This object is being used in some steps. Are you sure you want to delete it?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_IDOCUMENT','en','This object is being used in some steps. Are you sure you want to delete it?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_FIELD_FOREIGN_TABLE','en','Field "table" is required','2012-06-01'
|
||||
;
|
||||
@@ -2677,19 +2677,19 @@ SELECT 'LABEL','ID_SAVED','en','Saved','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ASSIGN_RULES','en','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 subprocesses','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SELECT_OPTION_TABLE','en','Select a option to export schema or data from the selected table(s).','2012-06-01'
|
||||
SELECT 'LABEL','ID_SELECT_OPTION_TABLE','en','Select a option to export schema or data from the selected table(s).','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SELECT_TABLE','en','Please select a table to export.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TASK_WAS_ASSIGNED_TO_USER','en','Manual assignment shouldn''t be used with subprocesses.<br>The task "{0}" from case {1} was assigned to user <b>{2}</b> ( {3} {4} )','2012-06-01'
|
||||
SELECT 'LABEL','ID_TASK_WAS_ASSIGNED_TO_USER','en','Manual assignment shouldn''t be used with subprocesses.<br>The task "{0}" from case {1} was assigned to user <b>{2}</b> ( {3} {4} )','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_USER_ONVACATION','en','User on vacation! Contact to your System Administrator if you want to login. please','2012-06-01'
|
||||
SELECT 'LABEL','ID_USER_ONVACATION','en','User on vacation! Contact to your System Administrator if you want to login. please','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','PASSWORD_HISTORY','en','Password history','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EMAIL_REQUIRED','en','The mail to is required, or uncheck the send a test mail','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_EMAIL_REQUIRED','en','The mail to is required, or uncheck the send a test mail','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_PASSWORD_REQUIRED','en','The password is required, or uncheck the option Require Authentication','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_PASSWORD_REQUIRED','en','The password is required, or uncheck the option Require Authentication','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_SERVER_REQUIRED','en','You must specify a server!','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2711,7 +2711,7 @@ SELECT 'LABEL','ID_CLAIM','en','Claim','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TABLE_INVALID_SYNTAX','en','Invalid syntax','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED','en','You do not have permission to see this case or you have not participated in it.','2012-06-01'
|
||||
SELECT 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED','en','You do not have permission to see this case or you have not participated in it.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EMPTY_NODENAME','en','The field name contains spaces or it''s empty!','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2719,7 +2719,7 @@ SELECT 'JAVASCRIPT','ID_SUGGEST_NEW_ENTRIES_ALERT','en','You should set all opti
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ISNT_LICENSE','en','This isn''t the correct license.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_TABLE_RESERVED_WORDS','en','This table name is reserved. Please set another for','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_TABLE_RESERVED_WORDS','en','This table name is reserved. Please set another for','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_START_NEW_CASE','en','Start a new case','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2729,7 +2729,7 @@ SELECT 'LABEL','ID_PLEASE_SELECT_LOGO','en','Please Select Logo','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TASK_NO_STEPS','en','The task doesn''t have any steps','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_FIELDS_RESERVED_WORDS','en','The following fields cannot have these names because they are reserved words','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_FIELDS_RESERVED_WORDS','en','The following fields cannot have these names because they are reserved words','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_PROCESS_CATEGORY','en','Process Categories','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2765,11 +2765,11 @@ SELECT 'JAVASCRIPT','DBCONNECTIONS_ALERT','en','You forgot to fill a required fi
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DISABLE_WORKSPACE','en','Disable Workspace','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','NEW_SITE_SUCCESS_CONFIRM','en','Do you want open the new site?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','DBCONNECTIONS_MSGR','en','Server Response','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2783,11 +2783,11 @@ SELECT 'LABEL','ID_CUSTOM_TRIGGER','en','Custom Trigger','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TRIGGERS_VALIDATION_ERR3','en','* The {Object} {Description} depends.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TRIGGERS_VALIDATION_ERR2','en','({N}) Dependencies were found for this trigger in {Object} objects','2012-06-01'
|
||||
SELECT 'LABEL','ID_TRIGGERS_VALIDATION_ERR2','en','({N}) Dependencies were found for this trigger in {Object} objects','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TRIGGERS_VALIDATION','en','No Dependencies were found for this trigger in {Object} definitions','2012-06-01'
|
||||
SELECT 'LABEL','ID_TRIGGERS_VALIDATION','en','No Dependencies were found for this trigger in {Object} definitions','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_TRIGGERS_VALIDATE_EERR1','en','This trigger can''t be deleted due to dependencies.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_TRIGGERS_VALIDATE_EERR1','en','This trigger can''t be deleted due to dependencies.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CONTACT_ADMIN','en','Please contact your system administrator','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2843,7 +2843,7 @@ SELECT 'LABEL','OPEN_NEW_WS','en','Open new site','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ERROR_NEW_WS','en','You have some mistakes, please try again','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_ASSIGN_CASE_TO_USER','en','You have to select one employee. Select one from the dropdown list please.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_ASSIGN_CASE_TO_USER','en','You have to select one employee. Select one from the dropdown list please.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','DBCONNECTIONS_MSGT','en','The test has','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2935,7 +2935,7 @@ SELECT 'LABEL','ID_TRIGGERS_VALIDATE_EERR1','en','* The {Object} {Description} d
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CASES_STATUS_TO_DO','en','To Do','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_DONT_SAVE_XMLFORM','en','This form has not a submit action. Do you want to continue anyway?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_DONT_SAVE_XMLFORM','en','This form has not a submit action. Do you want to continue anyway?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CASES_STATUS_COMPLETED','en','Completed','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -2997,7 +2997,7 @@ SELECT 'LABEL','ID_EMPTY_CASE','en','Search Case...','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_OPT_JUMP','en','Jump To','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DISPLAY_ITEMS','en','Display Items {0} - {1} of {2}','2012-06-01'
|
||||
SELECT 'LABEL','ID_DISPLAY_ITEMS','en','Display Items {0} - {1} of {2}','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DISPLAY_EMPTY','en','Displaying Empty','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3061,7 +3061,7 @@ SELECT 'LABEL','ID_PRO_TITLE','en','Process Title','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DISPLAY_OF','en','of','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DELETE_LANGUAGE_WARNING','en','To delete a language you should select a item from the list first.','2012-06-01'
|
||||
SELECT 'LABEL','ID_DELETE_LANGUAGE_WARNING','en','To delete a language you should select a item from the list first.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DELETE_LANGUAGE_CONFIRM','en','Do you want remove the language "{0}" ?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3069,7 +3069,7 @@ SELECT 'LABEL','ID_DELETE_LANGUAGE','en','Remove','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_LANGUAGE_DELETED_SUCCESSFULLY','en','Language deleted successfully!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_LANGUAGE_CANT_DELETE','en','There is {0} cases started with this language, delete action canceled!','2012-06-01'
|
||||
SELECT 'LABEL','ID_LANGUAGE_CANT_DELETE','en','There is {0} cases started with this language, delete action canceled!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_TOTAL_CASES','en','Total Cases','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3085,7 +3085,7 @@ SELECT 'JAVASCRIPT','ID_MAIL_SUCESSFULLY','en','Test message sent successfully',
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_MAIL_FAILED','en','The test failure, you must configure yourrnserver to send messages','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CACHE_DIR_ISNOT_WRITABLE','en','The cache directory is not writable, change permissions please!','2012-06-01'
|
||||
SELECT 'LABEL','ID_CACHE_DIR_ISNOT_WRITABLE','en','The cache directory is not writable, change permissions please!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CACHE_DELETED_SUCCESS','en','All cache data was deleted successfully','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3135,15 +3135,15 @@ SELECT 'LABEL','ID_NO_SELECTION_WARNING','en','Select a item from the list pleas
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_REQUIRED_NAME_TRIGGERS','en','You forgot the title of the trigger','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_PROCESS','en','There is a process with the same name. this process will not save','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_PROCESS','en','There is a process with the same name. this process will not save','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CLASS_TABLE_DOESNT_EXIST','en','This Class Table doesn''t exist!','2012-07-25'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_INPUTDOCUMENT','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_INPUTDOCUMENT','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_OUTPUTDOCUMENT','en','There is an Output Document with the same name in this process. It is not saving','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_OUTPUTDOCUMENT','en','There is an Output Document with the same name in this process. It is not saving','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CASE_SCHEDULER_VALIDATE_ALERT','en','User or password are empty.','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3189,9 +3189,9 @@ SELECT 'LABEL','PENTAHO_LABEL_SHOW_JNDI_INFORMATION','en','Show JNDI Info','2012
|
||||
UNION ALL
|
||||
SELECT 'LABEL','PENTAHO_LABEL_SYNC','en','Sync to Pentaho Solution','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','PENTAHO_LABEL_TABLE_ALREADY_SYNCH','en','Workspace already synchronized with Pentaho Solution','2012-06-01'
|
||||
SELECT 'LABEL','PENTAHO_LABEL_TABLE_ALREADY_SYNCH','en','Workspace already synchronized with Pentaho Solution','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','PENTAHO_LABEL_TABLE_SUCCESS','en','Table APP_CACHE_VIEW and triggers are installed successfully','2012-06-01'
|
||||
SELECT 'LABEL','PENTAHO_LABEL_TABLE_SUCCESS','en','Table APP_CACHE_VIEW and triggers are installed successfully','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','PENTAHO_LABEL_TABLE_SYNCHED','en','Workspace synchronized with Pentaho Solution','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3215,7 +3215,7 @@ SELECT 'LABEL','PENTAHO_LABEL_WS_USER_PASSWORD','en','Pentaho Workspace User and
|
||||
UNION ALL
|
||||
SELECT 'LABEL','PENTAHO_TABLES_TRIGGERS','en','Database tables and triggers','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_TRIGGERS','en','There is a triggers with the same name in this process.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_EXIST_TRIGGERS','en','There is a triggers with the same name in this process.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SELECT_ONE_AT_LEAST','en','Select at least one item from the list','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3227,7 +3227,7 @@ SELECT 'LABEL','ID_DELETING_ELEMENTS','en','Deleting elements, please wait...','
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_DELETE_CASE','en','Are you sure you want to delete this case?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_CANCEL_CASES','en','Are you sure you want to cancel all selected cases?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_CANCEL_CASES','en','Are you sure you want to cancel all selected cases?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_PAUSE_CASE','en','Pause Case','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3309,7 +3309,7 @@ SELECT 'LABEL','ID_USERNAME_FORMAT_6','en','@lastName, @firstName','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_USERNAME_FORMAT_7','en','@lastName, @firstName (@userName)','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DISCARD_CHANGES','en','Discard Changes','2012-06-01'
|
||||
;
|
||||
@@ -3325,7 +3325,7 @@ SELECT 'LABEL','ID_CONFIGURE','en','Configure','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_VERSION','en','Version','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MESSAGE_ROOT_CHANGE_SUCESS','en','The root password has been updated successfully!','2012-06-01'
|
||||
SELECT 'LABEL','ID_MESSAGE_ROOT_CHANGE_SUCESS','en','The root password has been updated successfully!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MESSAGE_ROOT_CHANGE_FAILURE','en','The root password can''t be updated!','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3341,7 +3341,7 @@ SELECT 'LABEL','ID_LAN_LOCALE','en','Locale','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SUBMIT','en','submit','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_PLUGIN_CANT_DELETE','en','The plugin is activated, please deactivate first to remove it.','2012-06-01'
|
||||
SELECT 'LABEL','ID_PLUGIN_CANT_DELETE','en','The plugin is activated, please deactivate first to remove it.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CACHE_LANGUAGE','en','Language','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3583,7 +3583,7 @@ SELECT 'LABEL','ID_AVAILABLE_USERS','en','AVAILABLE USERS','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ASSIGNED_USERS','en','ASSIGNED USERS','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_ASSIGN_ALL_USERS','en','Do you want to assign all available users to this role?','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CONFIRM_ASSIGN_ALL_USERS','en','Do you want to assign all available users to this role?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_AJAX_FAILURE','en','Some error has happened. Please retry later.','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3593,7 +3593,7 @@ SELECT 'LABEL','ID_USERS_SUCCESS_DELETE','en','User has been deleted correctly.'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ASSIGN_ALL_GROUPS','en','Assign All Groups','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01'
|
||||
SELECT 'LABEL','ID_USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_REMOVE_ALL_GROUPS','en','Remove All Groups','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3643,7 +3643,7 @@ SELECT 'LABEL','ID_ASSIGNED_MEMBERS','en','MEMBERS','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_AVAILABLE_MEMBERS','en','AVAILABLE MEMBERS','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CREATE_ROLE_TITLE','en','Create New Role','2012-06-01'
|
||||
SELECT 'LABEL','ID_CREATE_ROLE_TITLE','en','Create New Role','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_EDIT_ROLE_TITLE','en','Edit Role','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3657,7 +3657,7 @@ SELECT 'LABEL','ID_FIRSTNAME','en','First Name','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_LASTNAME','en','Last Name','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_REASSIGNMENT_SUCCESS','en','The case #{APP_NUMBER} was reassigned to user {USER} successfully!','2012-06-01'
|
||||
SELECT 'LABEL','ID_REASSIGNMENT_SUCCESS','en','The case #{APP_NUMBER} was reassigned to user {USER} successfully!','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_REASSIGN_CONFIRM','en','Are you sure to reassign the current case?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3665,7 +3665,7 @@ SELECT 'LABEL','ID_CASE_PAUSED_SUCCESSFULLY','en','The Case {APP_NUMBER} was pau
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_VACATION','en','Vacation','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_DB_CONNECTION_ASSIGN','en','You can not delete this data base connection. This is assigned in some step.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_DB_CONNECTION_ASSIGN','en','You can not delete this data base connection. This is assigned in some step.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_LAST_LOGIN','en','Last Login','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3823,7 +3823,7 @@ SELECT 'LABEL','ID_CONFIRM_DELETE_DEPARTMENT','en','Do you want to delete select
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DEPARTMENT_SUCCESS_DELETE','en','Department has been deleted correctly.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CANNOT_DELETE_DEPARTMENT','en','Department cannot be deleted while has assigned users.','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CANNOT_DELETE_DEPARTMENT','en','Department cannot be deleted while has assigned users.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MANAGER','en','Manager','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3847,7 +3847,7 @@ SELECT 'LABEL','ID_CATEGORY_SUCCESS_UPDATE','en','Process category has been upda
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CATEGORY_SUCCESS_DELETE','en','Process category has been deleted correctly.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MSG_CANNOT_DELETE_CATEGORY','en','Category cannot be deleted while has assigned processes.','2012-06-01'
|
||||
SELECT 'LABEL','ID_MSG_CANNOT_DELETE_CATEGORY','en','Category cannot be deleted while has assigned processes.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CONFIRM_DELETE_CATEGORY','en','Do you want to delete selected category?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3865,7 +3865,7 @@ SELECT 'LABEL','ID_SAMPLES','en','Samples','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_PROCESSNAME_ALREADY_EXISTS','en','The Process Name already exists!','2012-09-18'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01'
|
||||
SELECT 'JAVASCRIPT','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'JAVASCRIPT','ID_REMOVE_ROLE','en','Are you sure you want to delete this role?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3929,7 +3929,7 @@ SELECT 'LABEL','ID_DBS_CONNECTION_EDIT','en','Connection Edited Successfully','2
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_GRID_PAGE_NO_AUTHENTICATION_MESSAGE','en','No authentication sources to display','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INPUT_REMOVE','en','Input Document has been removed successfully from Process','2012-06-01'
|
||||
SELECT 'LABEL','ID_INPUT_REMOVE','en','Input Document has been removed successfully from Process','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INPUT_WARNING','en','Input document assigned to a process supervisors cannot be deleted','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3945,7 +3945,7 @@ SELECT 'LABEL','ID_TAGS','en','Tags','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INPUT_CREATE','en','Input document has been created successfully','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INPUT_NOT_SAVE','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01'
|
||||
SELECT 'LABEL','ID_INPUT_NOT_SAVE','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INPUT_UPDATE','en','Input document has been updated successfully','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -3971,7 +3971,7 @@ SELECT 'LABEL','ID_OUTPUT_GENERATE','en','Output Document to Generate','2012-06-
|
||||
UNION ALL
|
||||
SELECT 'LABEL','OUTPUT_CREATE','en','Output document has been created successfully','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_OUTPUT_NOT_SAVE','en','There is an Output Document with the same name in this process. It is not saving.','2012-06-01'
|
||||
SELECT 'LABEL','ID_OUTPUT_NOT_SAVE','en','There is an Output Document with the same name in this process. It is not saving.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_OUTPUT_UPDATE','en','Output document has been updated successfully.','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -4023,7 +4023,7 @@ SELECT 'LABEL','ID_PERMISSION_NEW','en','New specific Permission','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SUPERVISOR_UNAVAILABLE','en','No supervisors are available. All supervisors have been already assigned.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SUPERVISOR_REMOVED','en','Supervisor has been removed successfully from Process','2012-06-01'
|
||||
SELECT 'LABEL','ID_SUPERVISOR_REMOVED','en','Supervisor has been removed successfully from Process','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SUPERVISOR_ASSIGNED','en','Supervisor has been successfully assigned to a Process','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -4031,7 +4031,7 @@ SELECT 'LABEL','ID_SUPERVISOR_FAILED','en','Failed saving Supervisor Assigned to
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SUPERVISOR','en','Supervisor','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DYANFORM_REMOVE','en','Dynaform has been removed successfully from Process','2012-06-01'
|
||||
SELECT 'LABEL','ID_DYANFORM_REMOVE','en','Dynaform has been removed successfully from Process','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DYNAFORM_ASSIGN','en','Dynaform has been successfully assigned to a Process','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -4525,7 +4525,7 @@ SELECT 'LABEL','ID_GROUPS_ACTORS','en','Groups Actors','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ADHOC_GROUPS_ACTORS','en','Ad Hoc Groups Actors','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01'
|
||||
SELECT 'LABEL','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_INPUT_DOC_SUCCESS_NEW','en','Input Document has been created correctly.','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -4623,7 +4623,7 @@ SELECT 'LABEL','ID_HOME_SETTINGS','en','Home Settings','2012-07-19'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_ENVIRONMENT','en','Environment','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_CURLFUN_ISUNDEFINED','en','The process was not downloaded, because the curl extension for php is not installed','2012-06-01'
|
||||
SELECT 'LABEL','ID_CURLFUN_ISUNDEFINED','en','The process was not downloaded, because the curl extension for php is not installed','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_RATING','en','Rating','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -4779,9 +4779,9 @@ SELECT 'LABEL','ID_PREFERENCES','en','Preferences','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_PERSONAL_INFORMATION','en','Personal information','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01'
|
||||
SELECT 'LABEL','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01'
|
||||
SELECT 'LABEL','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','NEW_SITE_SUCCESS_CONFIRM','en','Do you want open the new site?','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -5115,7 +5115,7 @@ SELECT 'LABEL','ID_UPDATED_SUCCESSFULLY','en','Updated Successfully','2012-06-01
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_UPDATE_FAILED','en','Updated Failed','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DONT_MODIFY_PK_VALUE','en','You can not modify the primary key value for "{0}" field.','2012-06-01'
|
||||
SELECT 'LABEL','ID_DONT_MODIFY_PK_VALUE','en','You can not modify the primary key value for "{0}" field.','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_DELETED_SUCCESSFULLY','en','Deleted Successfully','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -5423,7 +5423,7 @@ INSERT INTO [TRANSLATION] ([TRN_CATEGORY],[TRN_ID],[TRN_LANG],[TRN_VALUE],[TRN_U
|
||||
|
||||
SELECT 'LABEL','ID_TIME_ZONE','en','Time Zone','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_MEMORY_LIMIT','en','Memory Limit (Mb)','2012-06-01'
|
||||
SELECT 'LABEL','ID_MEMORY_LIMIT','en','Memory Limit (Mb)','2012-06-01'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_SYSTEM_SETTINGS','en','System Settings','2012-06-01'
|
||||
UNION ALL
|
||||
@@ -5705,7 +5705,7 @@ SELECT 'LABEL','ID_USER_CASES_NOT_START','en','User can''t start a case because
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_USERS_HAS_ASSIGNED_CASES','en','The user has assigned cases, Do you like to continue anyway?','2012-09-07'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_GRID_PAGE_DISPLAYING_REPORT_PERMISSIONS_MESSAGE','en','Displaying Permissions Simple Reports {0} - {1} of {2}','2012-09-07'
|
||||
SELECT 'LABEL','ID_GRID_PAGE_DISPLAYING_REPORT_PERMISSIONS_MESSAGE','en','Displaying Permissions Simple Reports {0} - {1} of {2}','2012-09-07'
|
||||
UNION ALL
|
||||
SELECT 'LABEL','ID_GRID_PAGE_NO_PERMISSIONS_MESSAGE','en','No Permissions to display','2012-09-07'
|
||||
UNION ALL
|
||||
|
||||
@@ -1417,7 +1417,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_USER_REGISTERED','en','User name already exists','2012-09-18') ,
|
||||
( 'LABEL','ID_MSG_ERROR_USR_USERNAME','en','User name required!','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_ERROR_DUE_DATE','en','Due date required!','2012-06-01') ,
|
||||
( 'LABEL','ID_NEW_PASS_SAME_OLD_PASS','en','The confirm Password fields must be the same!','2012-06-01') ,
|
||||
( 'LABEL','ID_NEW_PASS_SAME_OLD_PASS','en','The confirm Password fields must be the same!','2012-06-01') ,
|
||||
( 'LABEL','ID_NEW_INPUTDOCS','en','New Input Document','2012-06-01') ,
|
||||
( 'LABEL','ID_EDIT_INPUTDOCS','en','Edit Input Document','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_DOCUMENT','en','Do you want to delete this document ?','2012-06-01') ,
|
||||
@@ -1458,7 +1458,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','DRAFT','en','High','2012-06-01') ,
|
||||
( 'LABEL','ID_PROCESSMAP_DYNAFORMS','en','DynaForms','2012-06-01') ,
|
||||
( 'LABEL','ID_ATTACH','en','Attach','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_CASES','en','Are you sure you want to delete all selected cases?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_CASES','en','Are you sure you want to delete all selected cases?','2012-06-01') ,
|
||||
( 'LABEL','ID_ALL','en','All','2012-06-01') ,
|
||||
( 'LABEL','ID_CANCELLED','en','Cancelled','2012-10-29') ,
|
||||
( 'LABEL','ID_FINISHED','en','Finished','2012-06-01') ,
|
||||
@@ -1544,7 +1544,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_GROUP_CHART','en','Group Chart','2012-06-01') ,
|
||||
( 'LABEL','ID_WITHOUT_RESUME','en','Without resume!','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_RESUME','en','The user doesn''t have a resume.','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_DERIVATION_RULE','en','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.','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_DERIVATION_RULE','en','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.','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_USERS','en','The task doesn''t have any users.','2012-06-01') ,
|
||||
( 'LABEL','ID_CANCEL','en','Cancel','2012-06-01') ,
|
||||
( 'LABEL','ID_PROCESS_MAP','en','Process Map','2012-06-01') ,
|
||||
@@ -1637,7 +1637,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'JAVASCRIPT','ID_ROLES_MSG2','en','Role already exists! Please choose another.','2012-06-01') ,
|
||||
( 'LABEL','ID_FOLDERS','en','Documents','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ROLES_MSG1','en','You must specify a role code!','2012-06-01') ,
|
||||
( 'LABEL','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01') ,
|
||||
( 'LABEL','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_SUPERVISOR_DYNAFORM','en','Do you want to remove this DynaForm?','2012-06-01') ,
|
||||
( 'LABEL','VIEW_ROLE_USERS','en','Users','2012-06-01') ,
|
||||
( 'LABEL','ID_ROLES','en','Roles','2012-06-01') ,
|
||||
@@ -1647,14 +1647,14 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_TO_REVISE','en','Review','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_ENGINE_TYPE_3','en','SMTP (OpenMail)','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_TEST_MESSAGE_ERROR_PHP_MAIL','en','Test message send failed, error:','2012-06-01') ,
|
||||
( 'LABEL','IMPORT_LANGUAGE_ERR_NO_WRITABLE2','en','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.','2012-06-01') ,
|
||||
( 'LABEL','IMPORT_LANGUAGE_ERR_NO_WRITABLE2','en','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.','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_ENGINE_TYPE_2','en','SMTP (PHPMailer)','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_ENGINE_TYPE_1','en','Mail (PHP)','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_TEST_BODY','en','ProcessMaker Test Email','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_TEST_SUBJECT','en','Test Email','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MESS_TEST_FROM_EMAIL','en','The ''From Email'' field is required','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MESS_TEST_TO','en','The ''To'' field is required','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_SEND_MAX_REQUIRED','en','The maximum number of attempts to send mail is a required field.','2012-06-01') ,
|
||||
( 'LABEL','ID_MESS_SEND_MAX_REQUIRED','en','The maximum number of attempts to send mail is a required field.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MESS_EXECUTE_EVERY_REQUIRED','en','The ''Execute Every'' field is required','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MESS_ACCOUNT_REQUIRED','en','The email account is required','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_DBS_EDIT','en','Edit the current Database Source','2012-06-01') ,
|
||||
@@ -1711,11 +1711,11 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_GROUPS_SUCCESS_NEW','en','Group has been created correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_REACTIVATE','en','Reactivate','2012-06-01') ,
|
||||
( 'LABEL','ID_USER_GROUPS','en','Groups for','2012-06-01') ,
|
||||
( 'LABEL','ID_FUNCTION','en','@function() It evaluates the value, then executes a PHP function','2012-06-01') ,
|
||||
( 'LABEL','ID_FUNCTION','en','@function() It evaluates the value, then executes a PHP function','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_CONFIRM_REACTIVATE_CASES','en','Are you sure you want to reactivate this case?','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIRM_REACTIVATE_CASE','en','Are you sure you want to reactivate this case?','2012-06-01') ,
|
||||
( 'LABEL','ID_ESCSJS','en','@@ It replaces the value in single quotation marks to use it in JavaScript sentences.','2012-06-01') ,
|
||||
( 'LABEL','ID_ESCJS','en','@@ It replaces the value in quotation marks to use it in JavaScript sentences','2012-06-01') ,
|
||||
( 'LABEL','ID_ESCSJS','en','@@ It replaces the value in single quotation marks to use it in JavaScript sentences.','2012-06-01') ,
|
||||
( 'LABEL','ID_ESCJS','en','@@ It replaces the value in quotation marks to use it in JavaScript sentences','2012-06-01') ,
|
||||
( 'LABEL','ID_ESC','en','@@ Replace the value in quotes','2012-06-01') ,
|
||||
( 'LABEL','ID_NONEC','en','@# Replace the value with no change','2012-06-01') ,
|
||||
( 'LABEL','ID_EURL','en','@% It replaces the value for the assignment with a GET variable in the URL','2012-06-01') ,
|
||||
@@ -1850,7 +1850,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'JAVASCRIPT','DYNAFIELD_ALREADY_EXIST','en','The field name already exists!','2012-06-01') ,
|
||||
( 'LABEL','ID_DYNAFORM_HISTORY','en','Change Log','2012-06-01') ,
|
||||
( 'LABEL','ID_CASEDEMO','en','Case Demo','2012-06-01') ,
|
||||
( 'LABEL','ID_NEED_REGISTER','en','You need to be registered to download this process. Register NOW!','2012-06-01') ,
|
||||
( 'LABEL','ID_NEED_REGISTER','en','You need to be registered to download this process. Register NOW!','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_INCORRECT_USER_OR_PASS','en','Incorrect username or password','2012-06-01') ,
|
||||
( 'LABEL','ID_CASESREASSIGN','en','You still have cases to reassign.','2012-06-01') ,
|
||||
( 'LABEL','ID_TO_REASSIGN','en','Reassign','2012-06-01') ,
|
||||
@@ -1876,7 +1876,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT1','en','Some fields have not been filled.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_NOFIELDS_IN_CONDITION','en','No records found for conditions setup','2012-06-01') ,
|
||||
( 'LABEL','IMPORT_LANGUAGE_ERR_NO_WRITABLE','en','The XML forms directory is not writable','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT2','en','You should select at least one event (OnChange or OnLoad )','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT2','en','You should select at least one event (OnChange or OnLoad )','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_TITLE','en','CONDITIONAL SHOW/HIDE EDITOR','2012-06-01') ,
|
||||
( 'LABEL','ID_DISB_WORKSPACE','en','This site is disabled','2012-06-01') ,
|
||||
( 'LABEL','ID_WORKSPACES','en','WORKSPACES','2012-06-01') ,
|
||||
@@ -1886,9 +1886,9 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_PENDING','en','Pending','2012-06-01') ,
|
||||
( 'LABEL','ID_FULL_NAME','en','Full Name','2012-06-01') ,
|
||||
( 'LABEL','ID_ROLE','en','Role','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CANNOT_DELETE_USER','en','User cannot be deleted while has assigned cases.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','USERS_REASSIGN','en','This user cannot be deleted because he/she still has some pending tasks. <br/><br/>Do you want to reassign these tasks to another user now?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CANNOT_DELETE_USER','en','User cannot be deleted while has assigned cases.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','USERS_REASSIGN','en','This user cannot be deleted because he/she still has some pending tasks. <br/><br/>Do you want to reassign these tasks to another user now?','2012-06-01') ,
|
||||
( 'LABEL','LOGIN_VERIFY_MSG','en','Verifying...','2012-06-01') ,
|
||||
( 'LABEL','ID_ACTION','en','Action','2012-06-01') ,
|
||||
( 'LABEL','ID_EDIT_ACTION','en','Edit Action','2012-06-01') ,
|
||||
@@ -1901,7 +1901,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'JAVASCRIPT','ID_MSG_GROUPS_ADDCONFIRM','en','At least one user must be selected.','2012-06-01') ,
|
||||
( 'LABEL','ID_DEBUG','en','Debugger','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_EVENT','en','Do you want to delete this event?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_CONFIRM_RESENDMSG','en','Are you sure that you want to resend this message?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_CONFIRM_RESENDMSG','en','Are you sure that you want to resend this message?','2012-06-01') ,
|
||||
( 'LABEL','ID_RESEND','en','Resend','2012-06-01') ,
|
||||
( 'LABEL','ID_EDIT_EVENT','en','Edit Event','2012-06-01') ,
|
||||
( 'LABEL','ID_NEW_EVENT','en','New Event','2012-06-01') ,
|
||||
@@ -1918,13 +1918,13 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_AUTHENTICATION','en','Authentication','2012-06-01') ,
|
||||
( 'LABEL','ID_AUTHENTICATION_SOURCE_INVALID','en','Authentication Source for this user is invalid','2012-06-01') ,
|
||||
( 'LABEL','ID_USER_INACTIVE_BY_DATE','en','User not allowed access past due date','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_AUTH_SOURCE','en','Do you want to delete this authentication source?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_AUTH_SOURCE','en','Do you want to delete this authentication source?','2012-06-01') ,
|
||||
( 'LABEL','ID_ERROR_OBJECT_NOT_EXISTS','en','Error: Object does not exist.','2012-06-01') ,
|
||||
( 'LABEL','ID_AUTH_SOURCES','en','Authentication Sources','2012-06-01') ,
|
||||
( 'LABEL','ID_ROLES_SUCCESS_NEW','en','Role has been created correctly.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_PROCESSMAP_SUPERVISORS_INPUTS','en','Input Documents','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ASSIGN_INPUT_DOCUMENT','en','Assign Input Document','2012-06-01') ,
|
||||
( 'LABEL','ID_NOT_DERIVATED','en','The case couldn''t be routed. Consult the system administrator','2012-06-01') ,
|
||||
( 'LABEL','ID_NOT_DERIVATED','en','The case couldn''t be routed. Consult the system administrator','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_SUPERVISOR_INPUT','en','Do you want to remove this Input Document?','2012-06-01') ,
|
||||
( 'LABEL','ID_ADVANCEDSEARCH','en','Advanced Search','2012-06-01') ,
|
||||
( 'LABEL','ID_POLICY_ALERT','en','Your password does not meet the following password policies','2012-06-01') ,
|
||||
@@ -1940,27 +1940,27 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_ACCOUNT','en','Account','2012-06-01') ,
|
||||
( 'LABEL','ID_ACCOUNT_DISABLED_CONTACT_ADMIN','en','disabled, please contact with the system administrator','2012-06-01') ,
|
||||
( 'LABEL','ID_WORKSPACE_USING','en','Using workspace','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REASSIGN_BYUSER_CONFIRM','en','Are you sure that you want to reassign the cases?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REASSIGN_BYUSER','en','At least one item from the list must be selected.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REASSIGN_BYUSER_CONFIRM','en','Are you sure that you want to reassign the cases?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REASSIGN_BYUSER','en','At least one item from the list must be selected.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_RESSIGN_BYUSER_PANEL','en','Users selection interface','2012-06-01') ;
|
||||
INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES
|
||||
|
||||
( 'JAVASCRIPT','ID_MSG_RESSIGN_B','en','At least one item from the list must be selected.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_RESSIGN_B','en','At least one item from the list must be selected.','2012-06-01') ,
|
||||
( 'LABEL','ID_DETAILS_WEBSERVICES','en','Details','2012-06-01') ,
|
||||
( 'LABEL','ID_ERROR_STREAMING_FILE','en','doesn''t exist. It should be saved by a plugin to a different place. Please review the configuration','2012-06-01') ,
|
||||
( 'LABEL','ID_ERROR_STREAMING_FILE','en','doesn''t exist. It should be saved by a plugin to a different place. Please review the configuration','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_UNKNOWN','en','Unknown upload error','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_EXTENSION','en','File upload stopped by extension','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_CANT_WRITE','en','Failed to write file to disk','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_NO_TMP_DIR','en','Missing a temporary folder','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_NO_FILE','en','No file was uploaded','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_PARTIAL','en','The uploaded file was only partially uploaded','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_FORM_SIZE','en','The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_INI_SIZE','en','The uploaded file exceeds the upload_max_filesize directive in php.ini','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_FORM_SIZE','en','The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form','2012-06-01') ,
|
||||
( 'LABEL','ID_UPLOAD_ERR_INI_SIZE','en','The uploaded file exceeds the upload_max_filesize directive in php.ini','2012-06-01') ,
|
||||
( 'LABEL','ID_NOT_PROCESS_RELATED','en','Not from a Process','2012-06-01') ,
|
||||
( 'LABEL','ID_EXTERNAL_FILE','en','External','2012-06-01') ,
|
||||
( 'LABEL','ID_INFO','en','Info','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This action will delete the current document and all its versions','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This will delete the current document and its past versions.','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This action will delete the current document and all its versions','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_CONFIRM_DELETE_INPUT_AND_HISTORY','en','This will delete the current document and its past versions.','2012-06-01') ,
|
||||
( 'LABEL','ID_SETUP_MAILCONF_TITLE','en','Test SMTP Connection','2012-06-01') ,
|
||||
( 'LABEL','DBCONNECTIONS_TITLE','en','Testing database server configuration','2012-06-01') ,
|
||||
( 'LABEL','ID_DBCNN_TITLE','en','Checking server configuration','2012-06-01') ,
|
||||
@@ -1978,7 +1978,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'JAVASCRIPT','ID_PROCESSMAP_DELETE_LINE','en','Delete line','2012-06-01') ,
|
||||
( 'LABEL','ID_FIELD_HANDLER_HELP1','en','About the feature','2012-06-01') ,
|
||||
( 'LABEL','ID_FIELD_HANDLER_HELP2','en','Drag & Drop to move and reorder the fields.','2012-06-01') ,
|
||||
( 'LABEL','ID_FIELD_HANDLER_HELP3','en','Bring the mouse pointer near tool icon and the corresponding options (Edit, Delete) will be shown.','2012-06-01') ,
|
||||
( 'LABEL','ID_FIELD_HANDLER_HELP3','en','Bring the mouse pointer near tool icon and the corresponding options (Edit, Delete) will be shown.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_CONFIRM_WEBENTRY_DELETE','en','Are you sure you want to delete this web entry?','2012-06-01') ,
|
||||
( 'LABEL','ID_CHANGE_VIEW','en','Change view','2012-06-01') ,
|
||||
( 'LABEL','ID_REMOVE_FIELD','en','Remove field','2012-06-01') ,
|
||||
@@ -1986,18 +1986,18 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_TYPE','en','Type','2012-06-01') ,
|
||||
( 'LABEL','ID_LABEL','en','Label','2012-06-01') ,
|
||||
( 'LABEL','ID_NAME','en','Name','2012-06-01') ,
|
||||
( 'LABEL','WEBEN_ONLY_BALANCED','en','Web Entry only works with tasks which have Cyclical Assignment.<br/> Please change the Assignment Rules','2012-06-01') ,
|
||||
( 'LABEL','WEBEN_ONLY_BALANCED','en','Web Entry only works with tasks which have Cyclical Assignment.<br/> Please change the Assignment Rules','2012-06-01') ,
|
||||
( 'LABEL','ID_DETAIL','en','Detail','2012-06-01') ,
|
||||
( 'LABEL','HTML_FILES','en','You can open only files with the .html extension','2012-06-01') ,
|
||||
( 'JAVASCRIPT','WEBEN_ONLY_BALANCEDJS','en','Web Entry only works with tasks which have Cyclical Assignment. Please change the Assignment Rules','2012-06-01') ,
|
||||
( 'JAVASCRIPT','HTML_FILES','en','Make sure your uploaded file has extension html or txt','2012-06-01') ,
|
||||
( 'LABEL','HTML_FILES','en','You can open only files with the .html extension','2012-06-01') ,
|
||||
( 'JAVASCRIPT','WEBEN_ONLY_BALANCEDJS','en','Web Entry only works with tasks which have Cyclical Assignment. Please change the Assignment Rules','2012-06-01') ,
|
||||
( 'JAVASCRIPT','HTML_FILES','en','Make sure your uploaded file has extension html or txt','2012-06-01') ,
|
||||
( 'LABEL','ID_SEARCH_RESULT','en','Search results','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSG_REMOVE_PLUGIN','en','Are you sure that you want to remove this plugin?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_REMOVE_PLUGIN_SUCCESS','en','Plugin successfully removed!','2012-06-01') ,
|
||||
( 'LABEL','CANT_DEL_LANGUAGE','en','This language cannot be deleted because it is currently being used.','2012-06-01') ,
|
||||
( 'LABEL','CANT_DEL_LANGUAGE','en','This language cannot be deleted because it is currently being used.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ADD','en','Add','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT3','en','You have not tested the condition, do you want save anyway?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT4','en','You have an error in the condition, do you want save anyway?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT3','en','You have not tested the condition, do you want save anyway?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','CONDITIONAL_ALERT4','en','You have an error in the condition, do you want save anyway?','2012-06-01') ,
|
||||
( 'LABEL','ID_ERROR','en','ERROR','2012-06-01') ,
|
||||
( 'LABEL','ID_REQUIRED_FIELDS_ERROR','en','Some required fields were not filled','2012-06-01') ,
|
||||
( 'LABEL','IMPORT_LANGUAGE_SUCCESS','en','The translation file was successfully imported.','2012-06-01') ,
|
||||
@@ -2008,7 +2008,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_NEW_DEPARTMENT','en','New','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_DEPARTMENT','en','Do you want to delete this department?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MSJ_DEPTO','en','Department name already exists!','2012-06-01') ,
|
||||
( 'LABEL','ID_MSJ_REPORSTO','en','The current user does not have a valid Reports To user. Please contact the administrator.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSJ_REPORSTO','en','The current user does not have a valid Reports To user. Please contact the administrator.','2012-06-01') ,
|
||||
( 'LABEL','ID_REMOVE_LOGO','en','Are you sure you want to delete this Logo?','2012-06-01') ,
|
||||
( 'LABEL','ID_REPLACED_LOGO','en','The logo was replaced','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REMOVE_LOGO','en','Are you sure you want to delete this Logo?','2012-06-01') ,
|
||||
@@ -2020,10 +2020,10 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_CASES_MENU_ADMIN','en','Process Supervisor','2012-06-01') ,
|
||||
( 'LABEL','ID_SENT','en','Participated','2012-06-01') ,
|
||||
( 'LABEL','ID_CALENDAR','en','Calendar','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_CASE_SCHEDULER','en','Are you sure you want to delete this scheduled case?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_CASE_SCHEDULER','en','Are you sure you want to delete this scheduled case?','2012-06-01') ,
|
||||
( 'LABEL','ID_SCHEDULER_LIST','en','New cases scheduler','2012-06-01') ,
|
||||
( 'LABEL','ID_SCHEDULER_LOG','en','Cases Scheduler Logs','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_IDOCUMENT','en','This object is being used in some steps. Are you sure you want to delete it?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_IDOCUMENT','en','This object is being used in some steps. Are you sure you want to delete it?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_FIELD_FOREIGN_TABLE','en','Field "table" is required','2012-06-01') ;
|
||||
INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES
|
||||
|
||||
@@ -2032,13 +2032,13 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_WARNING','en','WARNING','2012-06-01') ,
|
||||
( 'LABEL','ID_SAVED','en','Saved','2012-06-01') ,
|
||||
( 'LABEL','ID_ASSIGN_RULES','en','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 subprocesses','2012-06-01') ,
|
||||
( 'LABEL','ID_SELECT_OPTION_TABLE','en','Select a option to export schema or data from the selected table(s).','2012-06-01') ,
|
||||
( 'LABEL','ID_SELECT_OPTION_TABLE','en','Select a option to export schema or data from the selected table(s).','2012-06-01') ,
|
||||
( 'LABEL','ID_SELECT_TABLE','en','Please select a table to export.','2012-06-01') ,
|
||||
( 'LABEL','ID_TASK_WAS_ASSIGNED_TO_USER','en','Manual assignment shouldn''t be used with subprocesses.<br>The task "{0}" from case {1} was assigned to user <b>{2}</b> ( {3} {4} )','2012-06-01') ,
|
||||
( 'LABEL','ID_USER_ONVACATION','en','User on vacation! Contact to your System Administrator if you want to login. please','2012-06-01') ,
|
||||
( 'LABEL','ID_TASK_WAS_ASSIGNED_TO_USER','en','Manual assignment shouldn''t be used with subprocesses.<br>The task "{0}" from case {1} was assigned to user <b>{2}</b> ( {3} {4} )','2012-06-01') ,
|
||||
( 'LABEL','ID_USER_ONVACATION','en','User on vacation! Contact to your System Administrator if you want to login. please','2012-06-01') ,
|
||||
( 'LABEL','PASSWORD_HISTORY','en','Password history','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EMAIL_REQUIRED','en','The mail to is required, or uncheck the send a test mail','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_PASSWORD_REQUIRED','en','The password is required, or uncheck the option Require Authentication','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EMAIL_REQUIRED','en','The mail to is required, or uncheck the send a test mail','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_PASSWORD_REQUIRED','en','The password is required, or uncheck the option Require Authentication','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_SERVER_REQUIRED','en','You must specify a server!','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_FILL_SERVER','en','You must specify a server!','2012-06-01') ,
|
||||
( 'LABEL','ID_CONDITIONS_EDITOR','en','Conditions editor','2012-06-01') ,
|
||||
@@ -2049,16 +2049,16 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_UNASSIGNED','en','Unassigned','2012-06-01') ,
|
||||
( 'LABEL','ID_CLAIM','en','Claim','2012-06-01') ,
|
||||
( 'LABEL','ID_TABLE_INVALID_SYNTAX','en','Invalid syntax','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED','en','You do not have permission to see this case or you have not participated in it.','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_PERMISSION_NO_PARTICIPATED','en','You do not have permission to see this case or you have not participated in it.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EMPTY_NODENAME','en','The field name contains spaces or it''s empty!','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_SUGGEST_NEW_ENTRIES_ALERT','en','You should set all options for new entries.','2012-06-01') ,
|
||||
( 'LABEL','ID_ISNT_LICENSE','en','This isn''t the correct license.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_TABLE_RESERVED_WORDS','en','This table name is reserved. Please set another for','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_TABLE_RESERVED_WORDS','en','This table name is reserved. Please set another for','2012-06-01') ,
|
||||
( 'LABEL','ID_START_NEW_CASE','en','Start a new case','2012-06-01') ,
|
||||
( 'LABEL','ID_PROCESS_NOCATEGORY','en','No Category','2012-06-01') ,
|
||||
( 'LABEL','ID_PLEASE_SELECT_LOGO','en','Please Select Logo','2012-06-01') ,
|
||||
( 'LABEL','ID_TASK_NO_STEPS','en','The task doesn''t have any steps','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_FIELDS_RESERVED_WORDS','en','The following fields cannot have these names because they are reserved words','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_FIELDS_RESERVED_WORDS','en','The following fields cannot have these names because they are reserved words','2012-06-01') ,
|
||||
( 'LABEL','ID_PROCESS_CATEGORY','en','Process Categories','2012-06-01') ,
|
||||
( 'LABEL','ID_LOCATION','en','Location','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_GROUP','en','Group','2012-06-01') ,
|
||||
@@ -2076,18 +2076,18 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_ENABLE_WORKSPACE','en','Enable Workspace','2012-06-01') ,
|
||||
( 'JAVASCRIPT','DBCONNECTIONS_ALERT','en','You forgot to fill a required field!','2012-06-01') ,
|
||||
( 'LABEL','ID_DISABLE_WORKSPACE','en','Disable Workspace','2012-06-01') ,
|
||||
( 'JAVASCRIPT','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','NEW_SITE_SUCCESS_CONFIRM','en','Do you want open the new site?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01') ,
|
||||
( 'JAVASCRIPT','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01') ,
|
||||
( 'LABEL','DBCONNECTIONS_MSGR','en','Server Response','2012-06-01') ,
|
||||
( 'JAVASCRIPT','DBCONNECTIONS_MSGR','en','Server Response','2012-06-01') ,
|
||||
( 'LABEL','ID_CUSTOM_TRIGGER_DESCRIPTION','en','Custom Trigger','2012-06-01') ,
|
||||
( 'JAVASCRIPT','DBCONNECTIONS_MSGA','en','Database Connections Test was aborted','2012-06-01') ,
|
||||
( 'LABEL','ID_CUSTOM_TRIGGER','en','Custom Trigger','2012-06-01') ,
|
||||
( 'LABEL','ID_TRIGGERS_VALIDATION_ERR3','en','* The {Object} {Description} depends.','2012-06-01') ,
|
||||
( 'LABEL','ID_TRIGGERS_VALIDATION_ERR2','en','({N}) Dependencies were found for this trigger in {Object} objects','2012-06-01') ,
|
||||
( 'LABEL','ID_TRIGGERS_VALIDATION','en','No Dependencies were found for this trigger in {Object} definitions','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_TRIGGERS_VALIDATE_EERR1','en','This trigger can''t be deleted due to dependencies.','2012-06-01') ,
|
||||
( 'LABEL','ID_TRIGGERS_VALIDATION_ERR2','en','({N}) Dependencies were found for this trigger in {Object} objects','2012-06-01') ,
|
||||
( 'LABEL','ID_TRIGGERS_VALIDATION','en','No Dependencies were found for this trigger in {Object} definitions','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_TRIGGERS_VALIDATE_EERR1','en','This trigger can''t be deleted due to dependencies.','2012-06-01') ,
|
||||
( 'LABEL','ID_CONTACT_ADMIN','en','Please contact your system administrator','2012-06-01') ,
|
||||
( 'LABEL','ID_USER_ON_VACATIONS','en','User on vacation was replaced','2012-06-01') ,
|
||||
( 'LABEL','ID_PROCESS_DEF_PROBLEM','en','There is a problem in the process definition and/or an exception error occurred.','2012-06-01') ,
|
||||
@@ -2116,7 +2116,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_NEW_CASE','en','New case','2012-06-01') ,
|
||||
( 'LABEL','OPEN_NEW_WS','en','Open new site','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ERROR_NEW_WS','en','You have some mistakes, please try again','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ASSIGN_CASE_TO_USER','en','You have to select one employee. Select one from the dropdown list please.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ASSIGN_CASE_TO_USER','en','You have to select one employee. Select one from the dropdown list please.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','DBCONNECTIONS_MSGT','en','The test has','2012-06-01') ,
|
||||
( 'JAVASCRIPT','DBCONNECTIONS_MSGS','en','Successful','2012-06-01') ,
|
||||
( 'JAVASCRIPT','DBCONNECTIONS_TEST','en','TESTING SERVER CONNECTION','2012-06-01') ,
|
||||
@@ -2162,7 +2162,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_CASESLIST_APP_DEL_INDEX','en','Del Index','2012-06-01') ,
|
||||
( 'LABEL','ID_TRIGGERS_VALIDATE_EERR1','en','* The {Object} {Description} depends.','2012-06-01') ,
|
||||
( 'LABEL','ID_CASES_STATUS_TO_DO','en','To Do','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_DONT_SAVE_XMLFORM','en','This form has not a submit action. Do you want to continue anyway?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_DONT_SAVE_XMLFORM','en','This form has not a submit action. Do you want to continue anyway?','2012-06-01') ,
|
||||
( 'LABEL','ID_CASES_STATUS_COMPLETED','en','Completed','2012-06-01') ,
|
||||
( 'LABEL','ID_CASES_STATUS_DRAFT','en','Draft','2012-06-01') ,
|
||||
( 'LABEL','ID_PM_ENV_SETTINGS_TITLE','en','Processmaker Environment Settings','2012-06-01') ,
|
||||
@@ -2194,7 +2194,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_EMPTY_SEARCH','en','Search ...','2012-06-01') ,
|
||||
( 'LABEL','ID_EMPTY_CASE','en','Search Case...','2012-06-01') ,
|
||||
( 'LABEL','ID_OPT_JUMP','en','Jump To','2012-06-01') ,
|
||||
( 'LABEL','ID_DISPLAY_ITEMS','en','Display Items {0} - {1} of {2}','2012-06-01') ,
|
||||
( 'LABEL','ID_DISPLAY_ITEMS','en','Display Items {0} - {1} of {2}','2012-06-01') ,
|
||||
( 'LABEL','ID_DISPLAY_EMPTY','en','Displaying Empty','2012-06-01') ,
|
||||
( 'LABEL','ID_EMPTY_PMTABLE','en','Select a PM Table...','2012-06-01') ,
|
||||
( 'LABEL','ID_HEADER_NUMBER','en','#','2012-06-01') ,
|
||||
@@ -2226,11 +2226,11 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_IMPORT','en','Import','2012-06-01') ,
|
||||
( 'LABEL','ID_PRO_TITLE','en','Process Title','2012-06-01') ,
|
||||
( 'LABEL','ID_DISPLAY_OF','en','of','2012-06-01') ,
|
||||
( 'LABEL','ID_DELETE_LANGUAGE_WARNING','en','To delete a language you should select a item from the list first.','2012-06-01') ,
|
||||
( 'LABEL','ID_DELETE_LANGUAGE_WARNING','en','To delete a language you should select a item from the list first.','2012-06-01') ,
|
||||
( 'LABEL','ID_DELETE_LANGUAGE_CONFIRM','en','Do you want remove the language "{0}" ?','2012-06-01') ,
|
||||
( 'LABEL','ID_DELETE_LANGUAGE','en','Remove','2012-06-01') ,
|
||||
( 'LABEL','ID_LANGUAGE_DELETED_SUCCESSFULLY','en','Language deleted successfully!','2012-06-01') ,
|
||||
( 'LABEL','ID_LANGUAGE_CANT_DELETE','en','There is {0} cases started with this language, delete action canceled!','2012-06-01') ,
|
||||
( 'LABEL','ID_LANGUAGE_CANT_DELETE','en','There is {0} cases started with this language, delete action canceled!','2012-06-01') ,
|
||||
( 'LABEL','ID_TOTAL_CASES','en','Total Cases','2012-06-01') ,
|
||||
( 'LABEL','ID_HEARTBEAT_CONFIG','en','Heart Beat','2012-06-01') ,
|
||||
( 'LABEL','ID_PM_HEARTBEAT_SETTINGS_TITLE','en','Heart Beat Configuration','2012-06-01') ,
|
||||
@@ -2238,7 +2238,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_HEARTBEAT_DISPLAY','en','Heart Beat','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MAIL_SUCESSFULLY','en','Test message sent successfully','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_MAIL_FAILED','en','The test failure, you must configure yourrnserver to send messages','2012-06-01') ,
|
||||
( 'LABEL','ID_CACHE_DIR_ISNOT_WRITABLE','en','The cache directory is not writable, change permissions please!','2012-06-01') ,
|
||||
( 'LABEL','ID_CACHE_DIR_ISNOT_WRITABLE','en','The cache directory is not writable, change permissions please!','2012-06-01') ,
|
||||
( 'LABEL','ID_CACHE_DELETED_SUCCESS','en','All cache data was deleted successfully','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EMAIL_INVALID','en','The mail is invalid','2012-06-01') ,
|
||||
( 'LABEL','MSG_CONDITION_NOT_DEFINED','en','Condition variable not defined','2012-06-01') ,
|
||||
@@ -2263,11 +2263,11 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_OFF','en','Off','2012-06-01') ,
|
||||
( 'LABEL','ID_NO_SELECTION_WARNING','en','Select a item from the list please.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REQUIRED_NAME_TRIGGERS','en','You forgot the title of the trigger','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_PROCESS','en','There is a process with the same name. this process will not save','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_PROCESS','en','There is a process with the same name. this process will not save','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'LABEL','ID_CLASS_TABLE_DOESNT_EXIST','en','This Class Table doesn''t exist!','2012-07-25') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_INPUTDOCUMENT','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_OUTPUTDOCUMENT','en','There is an Output Document with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_INPUTDOCUMENT','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_OUTPUTDOCUMENT','en','There is an Output Document with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'LABEL','ID_CASE_SCHEDULER_VALIDATE_ALERT','en','User or password are empty.','2012-06-01') ,
|
||||
( 'LABEL','ID_DELEGATE_DATE_FROM','en','Delegated date from','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_DUPLICATE_CATEGORY_NAME','en','Duplicate category name.','2012-06-01') ;
|
||||
@@ -2291,8 +2291,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','PENTAHO_LABEL_SERVER','en','Pentaho Server (URL)','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_SHOW_JNDI_INFORMATION','en','Show JNDI Info','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_SYNC','en','Sync to Pentaho Solution','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_TABLE_ALREADY_SYNCH','en','Workspace already synchronized with Pentaho Solution','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_TABLE_SUCCESS','en','Table APP_CACHE_VIEW and triggers are installed successfully','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_TABLE_ALREADY_SYNCH','en','Workspace already synchronized with Pentaho Solution','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_TABLE_SUCCESS','en','Table APP_CACHE_VIEW and triggers are installed successfully','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_TABLE_SYNCHED','en','Workspace synchronized with Pentaho Solution','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_TABLE_TRIGGERS','en','Database tables and triggers','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_URL','en','URL','2012-06-01') ,
|
||||
@@ -2304,13 +2304,13 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','PENTAHO_LABEL_WS_SYNCHED','en','Workspace synchronized with Pentaho Solution','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_LABEL_WS_USER_PASSWORD','en','Pentaho Workspace User and Password','2012-06-01') ,
|
||||
( 'LABEL','PENTAHO_TABLES_TRIGGERS','en','Database tables and triggers','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_TRIGGERS','en','There is a triggers with the same name in this process.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_EXIST_TRIGGERS','en','There is a triggers with the same name in this process.','2012-06-01') ,
|
||||
( 'LABEL','ID_SELECT_ONE_AT_LEAST','en','Select at least one item from the list','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_CANCEL_CASE','en','Are you sure you want to cancel this case?','2012-06-01') ,
|
||||
( 'LABEL','ID_PAUSE_CASE_TO_DATE','en','Do you want to pause the case until','2012-06-01') ,
|
||||
( 'LABEL','ID_DELETING_ELEMENTS','en','Deleting elements, please wait...','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_DELETE_CASE','en','Are you sure you want to delete this case?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_CANCEL_CASES','en','Are you sure you want to cancel all selected cases?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_CANCEL_CASES','en','Are you sure you want to cancel all selected cases?','2012-06-01') ,
|
||||
( 'LABEL','ID_PAUSE_CASE','en','Pause Case','2012-06-01') ,
|
||||
( 'LABEL','ID_PAUSE','en','Pause','2012-06-01') ,
|
||||
( 'LABEL','ID_UNPAUSE_CASE','en','Unpause','2012-06-01') ,
|
||||
@@ -2351,7 +2351,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_USERNAME_FORMAT_5','en','@lastName @firstName','2012-06-01') ,
|
||||
( 'LABEL','ID_USERNAME_FORMAT_6','en','@lastName, @firstName','2012-06-01') ,
|
||||
( 'LABEL','ID_USERNAME_FORMAT_7','en','@lastName, @firstName (@userName)','2012-06-01') ,
|
||||
( 'JAVASCRIPT','USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01') ,
|
||||
( 'LABEL','ID_DISCARD_CHANGES','en','Discard Changes','2012-06-01') ;
|
||||
INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES
|
||||
|
||||
@@ -2360,7 +2360,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_INVALID_FILE','en','Invalid FIle','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIGURE','en','Configure','2012-06-01') ,
|
||||
( 'LABEL','ID_VERSION','en','Version','2012-06-01') ,
|
||||
( 'LABEL','ID_MESSAGE_ROOT_CHANGE_SUCESS','en','The root password has been updated successfully!','2012-06-01') ,
|
||||
( 'LABEL','ID_MESSAGE_ROOT_CHANGE_SUCESS','en','The root password has been updated successfully!','2012-06-01') ,
|
||||
( 'LABEL','ID_MESSAGE_ROOT_CHANGE_FAILURE','en','The root password can''t be updated!','2012-06-01') ,
|
||||
( 'LABEL','ID_LAN_TRANSLATOR','en','Translator','2012-06-01') ,
|
||||
( 'LABEL','ID_LOCALE','en','Locale','2012-06-01') ,
|
||||
@@ -2368,7 +2368,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_LAN_NUM_RECORDS','en','# Records','2012-06-01') ,
|
||||
( 'LABEL','ID_LAN_LOCALE','en','Locale','2012-06-01') ,
|
||||
( 'LABEL','ID_SUBMIT','en','submit','2012-06-01') ,
|
||||
( 'LABEL','ID_PLUGIN_CANT_DELETE','en','The plugin is activated, please deactivate first to remove it.','2012-06-01') ,
|
||||
( 'LABEL','ID_PLUGIN_CANT_DELETE','en','The plugin is activated, please deactivate first to remove it.','2012-06-01') ,
|
||||
( 'LABEL','ID_CACHE_LANGUAGE','en','Language','2012-06-01') ,
|
||||
( 'LABEL','ID_CACHE_HOST','en','Host','2012-06-01') ,
|
||||
( 'LABEL','ID_CACHE_USER','en','User','2012-06-01') ,
|
||||
@@ -2490,12 +2490,12 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_LAST_NAME','en','Last Name','2012-06-01') ,
|
||||
( 'LABEL','ID_AVAILABLE_USERS','en','AVAILABLE USERS','2012-06-01') ,
|
||||
( 'LABEL','ID_ASSIGNED_USERS','en','ASSIGNED USERS','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_ASSIGN_ALL_USERS','en','Do you want to assign all available users to this role?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CONFIRM_ASSIGN_ALL_USERS','en','Do you want to assign all available users to this role?','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_AJAX_FAILURE','en','Some error has happened. Please retry later.','2012-06-01') ,
|
||||
( 'LABEL','ID_FINISH','en','Finish','2012-06-01') ,
|
||||
( 'LABEL','ID_USERS_SUCCESS_DELETE','en','User has been deleted correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_ASSIGN_ALL_GROUPS','en','Assign All Groups','2012-06-01') ,
|
||||
( 'LABEL','ID_USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01') ,
|
||||
( 'LABEL','ID_USERS_DELETE_WITH_HISTORY','en','The user has some completed or canceled tasks (which may be useful for historical records). Do you want to delete this user anyway?','2012-06-01') ,
|
||||
( 'LABEL','ID_REMOVE_ALL_GROUPS','en','Remove All Groups','2012-06-01') ,
|
||||
( 'LABEL','ID_ASSIGNED_GROUPS','en','ASSIGNED GROUPS','2012-06-01') ,
|
||||
( 'LABEL','ID_AVAILABLE_GROUPS','en','AVAILABLE GROUPS','2012-06-01') ,
|
||||
@@ -2521,18 +2521,18 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
|
||||
( 'LABEL','ID_ASSIGNED_MEMBERS','en','MEMBERS','2012-06-01') ,
|
||||
( 'LABEL','ID_AVAILABLE_MEMBERS','en','AVAILABLE MEMBERS','2012-06-01') ,
|
||||
( 'LABEL','ID_CREATE_ROLE_TITLE','en','Create New Role','2012-06-01') ,
|
||||
( 'LABEL','ID_CREATE_ROLE_TITLE','en','Create New Role','2012-06-01') ,
|
||||
( 'LABEL','ID_EDIT_ROLE_TITLE','en','Edit Role','2012-06-01') ,
|
||||
( 'LABEL','ID_DEPARTMENTS','en','Departments','2012-06-01') ,
|
||||
( 'LABEL','ID_DEPARTMENT_NAME','en','Department Name','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIRM_CANCEL_CASE','en','Are you sure you want to cancel this case?','2012-06-01') ,
|
||||
( 'LABEL','ID_FIRSTNAME','en','First Name','2012-06-01') ,
|
||||
( 'LABEL','ID_LASTNAME','en','Last Name','2012-06-01') ,
|
||||
( 'LABEL','ID_REASSIGNMENT_SUCCESS','en','The case #{APP_NUMBER} was reassigned to user {USER} successfully!','2012-06-01') ,
|
||||
( 'LABEL','ID_REASSIGNMENT_SUCCESS','en','The case #{APP_NUMBER} was reassigned to user {USER} successfully!','2012-06-01') ,
|
||||
( 'LABEL','ID_REASSIGN_CONFIRM','en','Are you sure to reassign the current case?','2012-06-01') ,
|
||||
( 'LABEL','ID_CASE_PAUSED_SUCCESSFULLY','en','The Case {APP_NUMBER} was paused successfully and it will be unpaused on date {UNPAUSE_DATE}','2012-07-26') ,
|
||||
( 'LABEL','ID_VACATION','en','Vacation','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_DB_CONNECTION_ASSIGN','en','You can not delete this data base connection. This is assigned in some step.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_DB_CONNECTION_ASSIGN','en','You can not delete this data base connection. This is assigned in some step.','2012-06-01') ,
|
||||
( 'LABEL','ID_LAST_LOGIN','en','Last Login','2012-06-01') ,
|
||||
( 'LABEL','ID_PAGE_SIZE','en','Page Size','2012-06-01') ,
|
||||
( 'LABEL','ID_GRID_PAGE_DISPLAYING_USERS_MESSAGE','en','Displaying users {0} - {1} of {2}','2012-06-01') ,
|
||||
@@ -2612,7 +2612,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_EDIT_DEPARTMENT','en','Edit Department','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIRM_DELETE_DEPARTMENT','en','Do you want to delete selected department?','2012-06-01') ,
|
||||
( 'LABEL','ID_DEPARTMENT_SUCCESS_DELETE','en','Department has been deleted correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CANNOT_DELETE_DEPARTMENT','en','Department cannot be deleted while has assigned users.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CANNOT_DELETE_DEPARTMENT','en','Department cannot be deleted while has assigned users.','2012-06-01') ,
|
||||
( 'LABEL','ID_MANAGER','en','Manager','2012-06-01') ,
|
||||
( 'LABEL','ID_CATEGORY_NAME','en','Category Name','2012-06-01') ,
|
||||
( 'LABEL','ID_GRID_PAGE_NO_CATEGORY_MESSAGE','en','No categories to display','2012-06-01') ,
|
||||
@@ -2624,7 +2624,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_CATEGORY_EXISTS','en','Category name already exists.','2012-07-25') ,
|
||||
( 'LABEL','ID_CATEGORY_SUCCESS_UPDATE','en','Process category has been updated correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_CATEGORY_SUCCESS_DELETE','en','Process category has been deleted correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CANNOT_DELETE_CATEGORY','en','Category cannot be deleted while has assigned processes.','2012-06-01') ,
|
||||
( 'LABEL','ID_MSG_CANNOT_DELETE_CATEGORY','en','Category cannot be deleted while has assigned processes.','2012-06-01') ,
|
||||
( 'LABEL','ID_CONFIRM_DELETE_CATEGORY','en','Do you want to delete selected category?','2012-06-01') ,
|
||||
( 'LABEL','ID_GROUP_USERS','en','Group or Users','2012-06-01') ,
|
||||
( 'LABEL','ID_DOWNLOADING_FILE','en','Downloading file','2012-06-01') ,
|
||||
@@ -2633,7 +2633,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_CASE_LIST','en','Case List','2012-06-01') ,
|
||||
( 'LABEL','ID_SAMPLES','en','Samples','2012-06-01') ,
|
||||
( 'LABEL','ID_PROCESSNAME_ALREADY_EXISTS','en','The Process Name already exists!','2012-09-18') ,
|
||||
( 'JAVASCRIPT','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ROLES_CAN_NOT_DELETE','en','This role cannot be deleted while it still has some assigned users.','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_REMOVE_ROLE','en','Are you sure you want to delete this role?','2012-06-01') ,
|
||||
( 'JAVASCRIPT','ID_ROLES_MSG','en','You cannot modify this role.','2012-06-01') ,
|
||||
( 'LABEL','ID_GRID_PAGE_DISPLAYING_AUTHENTICATION_MESSAGE','en','Displaying authentication sources {0} - {1} of {2}','2012-06-01') ,
|
||||
@@ -2665,7 +2665,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_DBS_CONNECTION_SAVE','en','Connection Saved Successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_DBS_CONNECTION_EDIT','en','Connection Edited Successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_GRID_PAGE_NO_AUTHENTICATION_MESSAGE','en','No authentication sources to display','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_REMOVE','en','Input Document has been removed successfully from Process','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_REMOVE','en','Input Document has been removed successfully from Process','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_WARNING','en','Input document assigned to a process supervisors cannot be deleted','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_INFO','en','Input Document Information','2012-06-01') ,
|
||||
( 'LABEL','ID_FORMAT','en','Format','2012-06-01') ,
|
||||
@@ -2673,7 +2673,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_DESTINATION_PATH','en','Destination Path','2012-06-01') ,
|
||||
( 'LABEL','ID_TAGS','en','Tags','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_CREATE','en','Input document has been created successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_NOT_SAVE','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_NOT_SAVE','en','There is an Input Document with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_UPDATE','en','Input document has been updated successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_VERSIONING','en','Versioning','2012-06-01') ,
|
||||
( 'LABEL','ID_OUTPUT_INFO','en','Output Document Information','2012-06-01') ,
|
||||
@@ -2687,7 +2687,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_BOTTOM_MARGIN','en','Bottom Margin','2012-06-01') ,
|
||||
( 'LABEL','ID_OUTPUT_GENERATE','en','Output Document to Generate','2012-06-01') ,
|
||||
( 'LABEL','OUTPUT_CREATE','en','Output document has been created successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_OUTPUT_NOT_SAVE','en','There is an Output Document with the same name in this process. It is not saving.','2012-06-01') ,
|
||||
( 'LABEL','ID_OUTPUT_NOT_SAVE','en','There is an Output Document with the same name in this process. It is not saving.','2012-06-01') ,
|
||||
( 'LABEL','ID_OUTPUT_UPDATE','en','Output document has been updated successfully.','2012-06-01') ,
|
||||
( 'LABEL','ID_TABLE_NAME','en','Table Name','2012-06-01') ,
|
||||
( 'LABEL','ID_FIELDS','en','Fields','2012-06-01') ,
|
||||
@@ -2713,11 +2713,11 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_PROCESS_PERMISSIONS_EDIT','en','Process Permission edited successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_PERMISSION_NEW','en','New specific Permission','2012-06-01') ,
|
||||
( 'LABEL','ID_SUPERVISOR_UNAVAILABLE','en','No supervisors are available. All supervisors have been already assigned.','2012-06-01') ,
|
||||
( 'LABEL','ID_SUPERVISOR_REMOVED','en','Supervisor has been removed successfully from Process','2012-06-01') ,
|
||||
( 'LABEL','ID_SUPERVISOR_REMOVED','en','Supervisor has been removed successfully from Process','2012-06-01') ,
|
||||
( 'LABEL','ID_SUPERVISOR_ASSIGNED','en','Supervisor has been successfully assigned to a Process','2012-06-01') ,
|
||||
( 'LABEL','ID_SUPERVISOR_FAILED','en','Failed saving Supervisor Assigned to process','2012-06-01') ,
|
||||
( 'LABEL','ID_SUPERVISOR','en','Supervisor','2012-06-01') ,
|
||||
( 'LABEL','ID_DYANFORM_REMOVE','en','Dynaform has been removed successfully from Process','2012-06-01') ,
|
||||
( 'LABEL','ID_DYANFORM_REMOVE','en','Dynaform has been removed successfully from Process','2012-06-01') ,
|
||||
( 'LABEL','ID_DYNAFORM_ASSIGN','en','Dynaform has been successfully assigned to a Process','2012-06-01') ,
|
||||
( 'LABEL','ID_DYNAFORM_ASSIGN_FAILED','en','Failed saving Dynaform Assigned to process','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_UNAVAILABLE','en','No Input Document are available. All Input Document have been already assigned.','2012-06-01') ,
|
||||
@@ -2967,7 +2967,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_ADHOC_USERS_ACTORS','en','Ad hoc Users Actors','2012-06-01') ,
|
||||
( 'LABEL','ID_GROUPS_ACTORS','en','Groups Actors','2012-06-01') ,
|
||||
( 'LABEL','ID_ADHOC_GROUPS_ACTORS','en','Ad Hoc Groups Actors','2012-06-01') ,
|
||||
( 'LABEL','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'LABEL','ID_EXIST_DYNAFORM','en','There is a Dynaform with the same name in this process. It is not saving','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_DOC_SUCCESS_NEW','en','Input Document has been created correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_DOC_SUCCESS_UPDATE','en','Input Document has been updated correctly.','2012-06-01') ,
|
||||
( 'LABEL','ID_INPUT_DOC_SUCCESS_DELETE','en','Input Document has been deleted correctly.','2012-06-01') ,
|
||||
@@ -3017,7 +3017,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_HOME_COLLAPSE_RIGHT_PANEL','en','Collapse right panel when a Case is open','2012-06-01') ,
|
||||
( 'LABEL','ID_HOME_SETTINGS','en','Home Settings','2012-07-19') ,
|
||||
( 'LABEL','ID_ENVIRONMENT','en','Environment','2012-06-01') ,
|
||||
( 'LABEL','ID_CURLFUN_ISUNDEFINED','en','The process was not downloaded, because the curl extension for php is not installed','2012-06-01') ,
|
||||
( 'LABEL','ID_CURLFUN_ISUNDEFINED','en','The process was not downloaded, because the curl extension for php is not installed','2012-06-01') ,
|
||||
( 'LABEL','ID_RATING','en','Rating','2012-06-01') ,
|
||||
( 'LABEL','ID_SUBSCRIPTIONS','en','Subscriptions','2012-06-01') ,
|
||||
( 'LABEL','ID_AUTHOR','en','Author','2012-06-01') ,
|
||||
@@ -3096,8 +3096,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_INFORMATION_WAS_STORED_SUCCESSFULLY','en','information was stored successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_PREFERENCES','en','Preferences','2012-06-01') ,
|
||||
( 'LABEL','ID_PERSONAL_INFORMATION','en','Personal information','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_SUCCESS','en','Your new site was successfully created with name:','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_SUCCESS_CONFIRMNOTE','en','Note.- If you open the new site your current session will be closed.','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_SUCCESS_CONFIRM','en','Do you want open the new site?','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_NOT_AVAILABLE','en','This site is not available','2012-06-01') ,
|
||||
( 'LABEL','NEW_SITE_CONFIRM_TO_CREATE','en','Are you sure to create this site?','2012-06-01') ,
|
||||
@@ -3266,7 +3266,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','DBS_NAME','en','Connection Name','2012-06-01') ,
|
||||
( 'LABEL','ID_UPDATED_SUCCESSFULLY','en','Updated Successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_UPDATE_FAILED','en','Updated Failed','2012-06-01') ,
|
||||
( 'LABEL','ID_DONT_MODIFY_PK_VALUE','en','You can not modify the primary key value for "{0}" field.','2012-06-01') ,
|
||||
( 'LABEL','ID_DONT_MODIFY_PK_VALUE','en','You can not modify the primary key value for "{0}" field.','2012-06-01') ,
|
||||
( 'LABEL','ID_DELETED_SUCCESSFULLY','en','Deleted Successfully','2012-06-01') ,
|
||||
( 'LABEL','ID_FILE_IMPORTED_SUCCESSFULLY','en','File "{0}" imported successfully.','2012-06-01') ,
|
||||
( 'LABEL','ID_CALENDAR_DEFINITION','en','Calendar Definition','2012-06-01') ,
|
||||
@@ -3422,7 +3422,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES
|
||||
|
||||
( 'LABEL','ID_TIME_ZONE','en','Time Zone','2012-06-01') ,
|
||||
( 'LABEL','ID_MEMORY_LIMIT','en','Memory Limit (Mb)','2012-06-01') ,
|
||||
( 'LABEL','ID_MEMORY_LIMIT','en','Memory Limit (Mb)','2012-06-01') ,
|
||||
( 'LABEL','ID_SYSTEM_SETTINGS','en','System Settings','2012-06-01') ,
|
||||
( 'LABEL','ID_SYSTEM_REDIRECT_CONFIRM','en','You must login again to view the changes, do you want do it now?','2012-06-01') ,
|
||||
( 'LABEL','ID_TASK_CANT_DELETE','en','You can''t delete the task "{0}" because it has {1} cases.','2012-06-01') ,
|
||||
@@ -3564,7 +3564,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_PMTABLE_INVALID_FIELD_NAME','en','The following fields cannot have these names because the are reserved words "{0}"','2012-09-03') ,
|
||||
( 'LABEL','ID_USER_CASES_NOT_START','en','User can''t start a case because doesn''t have a starting task assigned','2012-09-05') ,
|
||||
( 'LABEL','ID_USERS_HAS_ASSIGNED_CASES','en','The user has assigned cases, Do you like to continue anyway?','2012-09-07') ,
|
||||
( 'LABEL','ID_GRID_PAGE_DISPLAYING_REPORT_PERMISSIONS_MESSAGE','en','Displaying Permissions Simple Reports {0} - {1} of {2}','2012-09-07') ,
|
||||
( 'LABEL','ID_GRID_PAGE_DISPLAYING_REPORT_PERMISSIONS_MESSAGE','en','Displaying Permissions Simple Reports {0} - {1} of {2}','2012-09-07') ,
|
||||
( 'LABEL','ID_GRID_PAGE_NO_PERMISSIONS_MESSAGE','en','No Permissions to display','2012-09-07') ,
|
||||
( 'LABEL','ID_ASSIGNED_PERMISSIONS_FOR','en','ASSIGNED PERMISSIONS FOR','2012-09-07') ,
|
||||
( 'LABEL','ID_DELETE_PERMISSION','en','Do you want to deleted the permission of {0}?','2012-09-07') ,
|
||||
|
||||
@@ -1399,7 +1399,7 @@ var processmap=function(){
|
||||
}
|
||||
panel.options={
|
||||
limit:true,
|
||||
size:{w:670,h:450},
|
||||
size:{w:770,h:450},
|
||||
position:{x:50,y:50,center:true},
|
||||
title: G_STRINGS.ID_PROCESSMAP_TASK_STEPS+" "+data.label.substr(0,82) + (data.label.length>=82 ? "..." : "") ,
|
||||
theme:this.options.theme,
|
||||
|
||||
@@ -12,5 +12,7 @@ if ($RBAC->userCanAccess("PM_CASES") == 1) {
|
||||
"/images/simplified/folder-grey3.png", null, null, null);
|
||||
$G_TMP_MENU->AddIdRawOption("S_NEW_CASE", "#", G::LoadTranslation("ID_NEW_CASE"),
|
||||
"/images/simplified/plus-set-grey.png", null, null, null);
|
||||
$G_TMP_MENU->AddIdRawOption("S_ADVANCED_SEARCH", "home/appAdvancedSearch", G::LoadTranslation("ID_ADVANCEDSEARCH"),
|
||||
"/images/simplified/advancedSearch.png", null, null, null);
|
||||
}
|
||||
|
||||
|
||||
@@ -37,6 +37,14 @@ pre {
|
||||
height: 40px;
|
||||
background-color: #252525;
|
||||
background-position: 0 0;
|
||||
background: #007eb5; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #007eb5 0%, #003d5a 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007eb5), color-stop(100%,#003d5a)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #007eb5 0%,#003d5a 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007eb5', endColorstr='#003d5a',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
/* background-image: url("/images/twitter_web_sprite_bgs.png");
|
||||
background-repeat: repeat-x;*/
|
||||
|
||||
@@ -592,7 +592,8 @@ div.topbar ul li ul li span {
|
||||
div#corpBar div.topbar-bg {
|
||||
background-color: #142F3C;
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#142F3C), to(#307190)); /* Webkit */
|
||||
background-image: -moz-linear-gradient(#142F3C, #1D4558); /* FF3.6 */
|
||||
background-image: -moz-linear-gradient(top, #0085bf 0%, #003954 100%); /* FF3.6 */
|
||||
/*background-image: -moz-linear-gradient(#677C89 , #1D4558); *//* FF3.6 */
|
||||
/*erik: modified backgournd colors in topbar, but just for FF, we need todo for others;
|
||||
original: #00a0d1, #008db8 */
|
||||
|
||||
|
||||
@@ -0,0 +1,353 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" />
|
||||
|
||||
<link rel="stylesheet" href="/css/simplified.css" media="screen" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" href="/js/jquery/css/smoothness/jquery-ui-1.8.17.custom.css" type="text/css">
|
||||
<!--<link rel="stylesheet" href="/js/jquery/css/redmond/jquery-ui-1.7.2.custom.css" type="text/css">-->
|
||||
|
||||
<script type="text/javascript" src="/js/jquery/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="/js/jquery/jquery-ui-1.8.17.min.js"></script>
|
||||
|
||||
{literal}
|
||||
<style>
|
||||
body {
|
||||
/*width: 500px;*/
|
||||
margin: 10px auto;
|
||||
/*color: #999;*/
|
||||
font: 90%/150% Arial, Helvetica, sans-serif;
|
||||
/*margin : 0px;*/
|
||||
color : #808080;
|
||||
/*font : normal 8pt sans-serif,Tahoma,MiscFixed;*/
|
||||
background-color:#ECECEC;
|
||||
}
|
||||
|
||||
#note_text {
|
||||
width:100%;
|
||||
height:52px;
|
||||
}
|
||||
|
||||
.postitem:hover{
|
||||
/*background:#EFEFEF;*/
|
||||
}
|
||||
.fontText {
|
||||
color: #565656;
|
||||
font: bold 10px/15px Helvetica,Sans-Serif;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 1px 2px #FFFFFF;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#btn {
|
||||
background: #ffffff; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #dbdbdb 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#dbdbdb)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dbdbdb',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border: 1px solid #FFFFFF;
|
||||
color: #565656;
|
||||
text-decoration: none;
|
||||
text-shadow: 1px 1px 1px #FFFFFF;
|
||||
font: 10px/25px Helvetica,Sans-Serif;
|
||||
border-radius: 10px 10px 10px 10px;
|
||||
box-shadow: 0 0 6px #FFFFFF inset;
|
||||
text-decoration: none;
|
||||
padding: 5px 0 0;
|
||||
}
|
||||
a.btn:hover {
|
||||
color: #145675;
|
||||
-moz-transition: color 0.25s ease-in-out;
|
||||
-webkit-transition: color 0.25s ease-in-out;
|
||||
transition: color 0.25s ease-in-out;
|
||||
}
|
||||
.global-nav{
|
||||
background: #007eb5; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #007eb5 0%, #003d5a 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007eb5), color-stop(100%,#003d5a)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #007eb5 0%,#003d5a 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007eb5', endColorstr='#003d5a',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function resize()
|
||||
{
|
||||
var h = $(document.body).height() - 52;
|
||||
var w = $(document.body).width();
|
||||
if (w > 600) {
|
||||
w = 600;
|
||||
}
|
||||
|
||||
$('.content-header').width(w-50);
|
||||
}
|
||||
function setTextSearch()
|
||||
{
|
||||
$("#searchText").val(null);
|
||||
redirect();
|
||||
}
|
||||
|
||||
function redirect()
|
||||
{
|
||||
var src = $("#iframex", window.parent.document).attr('src');
|
||||
src = src.split("?");
|
||||
|
||||
var params = '?';
|
||||
params += 'process='+$("#comboProcess option:selected").val();
|
||||
params += '&status='+$("#comboStatus option:selected").val();
|
||||
params += '&search='+$("#searchText").val();
|
||||
params += '&category='+$("#comboCategory option:selected").val();
|
||||
params += '&user='+$("#comboUsers option:selected").val();
|
||||
params += '&dateFrom='+$("#dateFrom").val();
|
||||
params += '&dateTo='+$("#dateTo").val();
|
||||
|
||||
$("#iframex", window.parent.document).attr({src : src[0]+params});
|
||||
return false;
|
||||
}
|
||||
|
||||
function showNt(appUid)
|
||||
{
|
||||
var d = $('#m_'+appUid);
|
||||
|
||||
if (d.css('display') == 'block') {
|
||||
d.hide('slow');
|
||||
}
|
||||
else {
|
||||
d.show('slow');
|
||||
}
|
||||
}
|
||||
|
||||
function addNt(appUid)
|
||||
{
|
||||
$('textarea#note_text').val('');
|
||||
$( "#dialog-add-note" ).dialog({
|
||||
resizable: false,
|
||||
height:192,
|
||||
modal: true,
|
||||
buttons: {
|
||||
"Add Note": function() {
|
||||
var sendMail = document.getElementById('chkSendMail').checked;
|
||||
sendMail = (sendMail == true) ? '1' : '0';
|
||||
$(this).dialog("close");
|
||||
$.post(
|
||||
'../appProxy/postNote',
|
||||
{appUid : appUid,
|
||||
noteText: $('textarea#note_text').val(),
|
||||
swSendMail : sendMail},
|
||||
function(responseText) {
|
||||
updateNt(appUid);
|
||||
}
|
||||
);
|
||||
//redirect('home/startCase?id='+id);
|
||||
},
|
||||
Cancel: function() {
|
||||
$(this).dialog( "close" );
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
function addPanelSearch()
|
||||
{
|
||||
var urlFile = $('#imagenPanel').attr('src');
|
||||
var file = urlFile.split("/");
|
||||
var img = file.pop();
|
||||
var stylePanel = '';
|
||||
switch (img) {
|
||||
case 'down.png':
|
||||
src = '/images/simplified/up.png';
|
||||
$('#panelDown').attr({style: 'display: table; width: 95%;'});
|
||||
$('#panelDown').show();
|
||||
break;
|
||||
case 'up.png':
|
||||
src = '/images/simplified/down.png';
|
||||
$('#panelDown').attr({style: 'display:none width: 95%;'});
|
||||
$('#panelDown').hide();
|
||||
default:
|
||||
src = '/images/simplified/down.png';
|
||||
$('#panelDown').attr({style: 'display:none width: 95%;'});
|
||||
$('#panelDown').hide();
|
||||
break;
|
||||
}
|
||||
$('#imagenPanel').attr({src: src});
|
||||
}
|
||||
|
||||
function updateNt(appUid)
|
||||
{
|
||||
$.post(
|
||||
'../appProxy/getNotesList?appUid='+appUid,
|
||||
{start:0, limit:100},
|
||||
function(resp) {
|
||||
data = jQuery.parseJSON(resp);
|
||||
content = $('div#m_'+appUid);
|
||||
content.html('');
|
||||
|
||||
for (i=0; i<data.notes.length; i++) {
|
||||
r = data.notes[i];
|
||||
|
||||
s = '<div class="appMessage"><table border="0"><tr>' +
|
||||
'<td width="50" valign="top">'+
|
||||
'<img border="0" src="../users/users_ViewPhotoGrid?pUID='+r.USR_UID+'" width="40" height="40"/>' +
|
||||
'</td><td>' +
|
||||
'<h3>'+r.USR_FIRSTNAME+' '+r.USR_LASTNAME+' ('+r.USR_USERNAME+')</h3>' +
|
||||
'<p><pre>'+r.NOTE_CONTENT+'</pre>' +
|
||||
'<div class="appMessageDate">Posted at '+r.NOTE_DATE+'</div>' +
|
||||
'</td></tr></table></div>';
|
||||
|
||||
content.append(s);
|
||||
$('#n_'+appUid).show('slow');
|
||||
}
|
||||
d = $('#m_'+appUid);
|
||||
d.show('slow');
|
||||
}
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
$("#loadmorebutton").click(function (){
|
||||
$('#loadmorebutton').html('<img src="/images/ajax-loader.gif" />');
|
||||
$.ajax({
|
||||
url: "getApps?t="+listType+"&start="+appListStart+"&limit="+appListLimit,
|
||||
success: function(html){
|
||||
appListStart += appListLimit;
|
||||
|
||||
if(jQuery.trim(html) != ''){
|
||||
$("#commentlist").append(html);
|
||||
$('#loadmorebutton').html('Load More');
|
||||
}
|
||||
else {
|
||||
$('#loadmorebutton').replaceWith('<center>No more applications to show.</center>');
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
$("#dateFrom").datepicker({ dateFormat:'yy-mm-dd'});
|
||||
$("#dateTo").datepicker({ dateFormat:'yy-mm-dd'});
|
||||
|
||||
$("#comboProcess").val(process);
|
||||
$("#comboStatus").val(status);
|
||||
$("#searchText").val(search);
|
||||
$("#comboCategory").val(category);
|
||||
$("#comboUsers").val(user);
|
||||
$("#dateFrom").val(dateFrom);
|
||||
$("#dateTo").val(dateTo);
|
||||
|
||||
});
|
||||
{/literal}
|
||||
|
||||
var appListLimit = {$appListLimit};
|
||||
var appListStart = {$appListStart};
|
||||
var listType = '{$listType}';
|
||||
var process = '{$arraySearch[0]}';
|
||||
var status = '{$arraySearch[1]}';
|
||||
var search = '{$arraySearch[2]}';
|
||||
var category = '{$arraySearch[3]}';
|
||||
var user = '{$arraySearch[4]}';
|
||||
var dateFrom = '{$arraySearch[5]}';
|
||||
var dateTo = '{$arraySearch[6]}';
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body id='bodySearch' onload="resize()" onresize="resize()" >
|
||||
|
||||
<center>
|
||||
<div id="btn" style = "display: table; width: 550px; margin: 5px;">
|
||||
<center>
|
||||
<div style = "display: table; width: 95%;">
|
||||
<div style = "float: left;"> <b>{$categoryTitle}:</b>
|
||||
<select id="comboCategory" onchange="redirect();" style="width: 200px">
|
||||
{foreach from=$categoryValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: right;"> <b>{$processTitle}:</b>
|
||||
<select id="comboProcess" onchange="redirect();" style="width: 200px">
|
||||
{foreach from=$processValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: left;"> <b>{$statusTitle}: </b>
|
||||
<select id="comboStatus" onchange="redirect();" style="width: 200px">
|
||||
{foreach from=$statusValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: right;">
|
||||
<input type="button" class="fontText" onclick="setTextSearch();" tabindex="2" value=" x ">
|
||||
</div>
|
||||
<div style = "float: right;"><b>{$searchTitle}:</b>
|
||||
<input type="text" size="27" maxlength="60" value="" id='searchText' placeholder="{$searchTitle}...">
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id='panelDown' style = "display: none; width: 95%;">
|
||||
<div style = "float: left;"> <b>{$userTitle}: </b>
|
||||
<select id="comboUsers" onchange="redirect();" style="width: 400px">
|
||||
{foreach from=$userValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: left;"><b>{$fromTitle} </b>
|
||||
<input id='dateFrom' type='text' readonly='true' size="10">
|
||||
<div style="display: none" class=demo-description></div>
|
||||
</div>
|
||||
<div style = "float: left;"><b> {$toTitle}
|
||||
<input id='dateTo' type='text' readonly='true' size="10">
|
||||
<div style="display: none" class=demo-description></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style = "display: table; width: 95%;">
|
||||
<div style = "float: left">
|
||||
<input type="button" class="fontText" onclick="redirect();" name="commit" tabindex="1" value="{$searchTitle}">
|
||||
</div>
|
||||
<div style = "float: right;">
|
||||
<a href="#" onclick="addPanelSearch(); return false;"><img id='imagenPanel' src="/images/simplified/down.png" border="0"></a>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
|
||||
<center>
|
||||
<div class="content-header" style="text-align:left">
|
||||
<h1 style="padding: 10px">{$title} ({$cases_count})</h1>
|
||||
<ul id="commentlist">
|
||||
{include file='home/applications.html'}
|
||||
</ul>
|
||||
|
||||
{if $cases_count > $appListLimit}
|
||||
<center>
|
||||
<a href="#" style="color:#1F98C7; font-size:12px; font-weight:bold;" id="loadmorebutton">Load More</a>
|
||||
</center>
|
||||
{/if}
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<div id="dialog-add-note" title="Case Note" style="display:none">
|
||||
<p><!-- <span class="ui-icon ui-icon-document" style="float:left; margin:0 7px 20px 0;"></span> -->
|
||||
<span id="startAppTitle"/>
|
||||
<textarea id="note_text" rows="2" cols="22"></textarea>
|
||||
<div class="x-form-check-wrap" id="ext-gen160" style="font-size:11px">
|
||||
<input type="checkbox" name="chkSendMail" id="chkSendMail" autocomplete="off" class=" x-form-checkbox x-form-field" checked="">
|
||||
<label class="x-form-cb-label" for="chkSendMail" id="ext-gen161">Send email (Case Participants)</label>
|
||||
</div>
|
||||
</p>
|
||||
</div>
|
||||
<br/>
|
||||
</body>
|
||||
</html>
|
||||
353
workflow/engine/templates/home/appListSearch.html
Normal file
353
workflow/engine/templates/home/appListSearch.html
Normal file
@@ -0,0 +1,353 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" />
|
||||
|
||||
<link rel="stylesheet" href="/css/simplified.css" media="screen" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" href="/js/jquery/css/smoothness/jquery-ui-1.8.17.custom.css" type="text/css">
|
||||
<!--<link rel="stylesheet" href="/js/jquery/css/redmond/jquery-ui-1.7.2.custom.css" type="text/css">-->
|
||||
|
||||
<script type="text/javascript" src="/js/jquery/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="/js/jquery/jquery-ui-1.8.17.min.js"></script>
|
||||
|
||||
{literal}
|
||||
<style>
|
||||
body {
|
||||
/*width: 500px;*/
|
||||
margin: 10px auto;
|
||||
/*color: #999;*/
|
||||
font: 90%/150% Arial, Helvetica, sans-serif;
|
||||
/*margin : 0px;*/
|
||||
color : #808080;
|
||||
/*font : normal 8pt sans-serif,Tahoma,MiscFixed;*/
|
||||
background-color:#ECECEC;
|
||||
}
|
||||
|
||||
#note_text {
|
||||
width:100%;
|
||||
height:52px;
|
||||
}
|
||||
|
||||
.postitem:hover{
|
||||
/*background:#EFEFEF;*/
|
||||
}
|
||||
.fontText {
|
||||
color: #565656;
|
||||
font: bold 10px/15px Helvetica,Sans-Serif;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 1px 2px #FFFFFF;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#btn {
|
||||
background: #ffffff; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #dbdbdb 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#dbdbdb)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#dbdbdb 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dbdbdb',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border: 1px solid #FFFFFF;
|
||||
color: #565656;
|
||||
text-decoration: none;
|
||||
text-shadow: 1px 1px 1px #FFFFFF;
|
||||
font: 10px/25px Helvetica,Sans-Serif;
|
||||
border-radius: 10px 10px 10px 10px;
|
||||
box-shadow: 0 0 6px #FFFFFF inset;
|
||||
text-decoration: none;
|
||||
padding: 5px 0 0;
|
||||
}
|
||||
a.btn:hover {
|
||||
color: #145675;
|
||||
-moz-transition: color 0.25s ease-in-out;
|
||||
-webkit-transition: color 0.25s ease-in-out;
|
||||
transition: color 0.25s ease-in-out;
|
||||
}
|
||||
.global-nav{
|
||||
background: #007eb5; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #007eb5 0%, #003d5a 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007eb5), color-stop(100%,#003d5a)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #007eb5 0%,#003d5a 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #007eb5 0%,#003d5a 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007eb5', endColorstr='#003d5a',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function resize()
|
||||
{
|
||||
var h = $(document.body).height() - 52;
|
||||
var w = $(document.body).width();
|
||||
if (w > 600) {
|
||||
w = 600;
|
||||
}
|
||||
|
||||
$('.content-header').width(w-50);
|
||||
}
|
||||
function setTextSearch()
|
||||
{
|
||||
$("#searchText").val(null);
|
||||
redirect();
|
||||
}
|
||||
|
||||
function redirect()
|
||||
{
|
||||
var src = $("#iframex", window.parent.document).attr('src');
|
||||
src = src.split("?");
|
||||
|
||||
var params = '?';
|
||||
params += 'process='+$("#comboProcess option:selected").val();
|
||||
params += '&status='+$("#comboStatus option:selected").val();
|
||||
params += '&search='+$("#searchText").val();
|
||||
params += '&category='+$("#comboCategory option:selected").val();
|
||||
params += '&user='+$("#comboUsers option:selected").val();
|
||||
params += '&dateFrom='+$("#dateFrom").val();
|
||||
params += '&dateTo='+$("#dateTo").val();
|
||||
|
||||
$("#iframex", window.parent.document).attr({src : src[0]+params});
|
||||
return false;
|
||||
}
|
||||
|
||||
function showNt(appUid)
|
||||
{
|
||||
var d = $('#m_'+appUid);
|
||||
|
||||
if (d.css('display') == 'block') {
|
||||
d.hide('slow');
|
||||
}
|
||||
else {
|
||||
d.show('slow');
|
||||
}
|
||||
}
|
||||
|
||||
function addNt(appUid)
|
||||
{
|
||||
$('textarea#note_text').val('');
|
||||
$( "#dialog-add-note" ).dialog({
|
||||
resizable: false,
|
||||
height:192,
|
||||
modal: true,
|
||||
buttons: {
|
||||
"Add Note": function() {
|
||||
var sendMail = document.getElementById('chkSendMail').checked;
|
||||
sendMail = (sendMail == true) ? '1' : '0';
|
||||
$(this).dialog("close");
|
||||
$.post(
|
||||
'../appProxy/postNote',
|
||||
{appUid : appUid,
|
||||
noteText: $('textarea#note_text').val(),
|
||||
swSendMail : sendMail},
|
||||
function(responseText) {
|
||||
updateNt(appUid);
|
||||
}
|
||||
);
|
||||
//redirect('home/startCase?id='+id);
|
||||
},
|
||||
Cancel: function() {
|
||||
$(this).dialog( "close" );
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
function addPanelSearch()
|
||||
{
|
||||
var urlFile = $('#imagenPanel').attr('src');
|
||||
var file = urlFile.split("/");
|
||||
var img = file.pop();
|
||||
var stylePanel = '';
|
||||
switch (img) {
|
||||
case 'down.png':
|
||||
src = '/images/simplified/up.png';
|
||||
$('#panelDown').attr({style: 'display: table; width: 95%;'});
|
||||
$('#panelDown').show();
|
||||
break;
|
||||
case 'up.png':
|
||||
src = '/images/simplified/down.png';
|
||||
$('#panelDown').attr({style: 'display:none width: 95%;'});
|
||||
$('#panelDown').hide();
|
||||
default:
|
||||
src = '/images/simplified/down.png';
|
||||
$('#panelDown').attr({style: 'display:none width: 95%;'});
|
||||
$('#panelDown').hide();
|
||||
break;
|
||||
}
|
||||
$('#imagenPanel').attr({src: src});
|
||||
}
|
||||
|
||||
function updateNt(appUid)
|
||||
{
|
||||
$.post(
|
||||
'../appProxy/getNotesList?appUid='+appUid,
|
||||
{start:0, limit:100},
|
||||
function(resp) {
|
||||
data = jQuery.parseJSON(resp);
|
||||
content = $('div#m_'+appUid);
|
||||
content.html('');
|
||||
|
||||
for (i=0; i<data.notes.length; i++) {
|
||||
r = data.notes[i];
|
||||
|
||||
s = '<div class="appMessage"><table border="0"><tr>' +
|
||||
'<td width="50" valign="top">'+
|
||||
'<img border="0" src="../users/users_ViewPhotoGrid?pUID='+r.USR_UID+'" width="40" height="40"/>' +
|
||||
'</td><td>' +
|
||||
'<h3>'+r.USR_FIRSTNAME+' '+r.USR_LASTNAME+' ('+r.USR_USERNAME+')</h3>' +
|
||||
'<p><pre>'+r.NOTE_CONTENT+'</pre>' +
|
||||
'<div class="appMessageDate">Posted at '+r.NOTE_DATE+'</div>' +
|
||||
'</td></tr></table></div>';
|
||||
|
||||
content.append(s);
|
||||
$('#n_'+appUid).show('slow');
|
||||
}
|
||||
d = $('#m_'+appUid);
|
||||
d.show('slow');
|
||||
}
|
||||
);
|
||||
return true;
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
$("#loadmorebutton").click(function (){
|
||||
$('#loadmorebutton').html('<img src="/images/ajax-loader.gif" />');
|
||||
$.ajax({
|
||||
url: "getApps?t="+listType+"&start="+appListStart+"&limit="+appListLimit,
|
||||
success: function(html){
|
||||
appListStart += appListLimit;
|
||||
|
||||
if(jQuery.trim(html) != ''){
|
||||
$("#commentlist").append(html);
|
||||
$('#loadmorebutton').html('Load More');
|
||||
}
|
||||
else {
|
||||
$('#loadmorebutton').replaceWith('<center>No more applications to show.</center>');
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
$("#dateFrom").datepicker({ dateFormat:'yy-mm-dd'});
|
||||
$("#dateTo").datepicker({ dateFormat:'yy-mm-dd'});
|
||||
|
||||
$("#comboProcess").val(process);
|
||||
$("#comboStatus").val(status);
|
||||
$("#searchText").val(search);
|
||||
$("#comboCategory").val(category);
|
||||
$("#comboUsers").val(user);
|
||||
$("#dateFrom").val(dateFrom);
|
||||
$("#dateTo").val(dateTo);
|
||||
|
||||
});
|
||||
{/literal}
|
||||
|
||||
var appListLimit = {$appListLimit};
|
||||
var appListStart = {$appListStart};
|
||||
var listType = '{$listType}';
|
||||
var process = '{$arraySearch[0]}';
|
||||
var status = '{$arraySearch[1]}';
|
||||
var search = '{$arraySearch[2]}';
|
||||
var category = '{$arraySearch[3]}';
|
||||
var user = '{$arraySearch[4]}';
|
||||
var dateFrom = '{$arraySearch[5]}';
|
||||
var dateTo = '{$arraySearch[6]}';
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body id='bodySearch' onload="resize()" onresize="resize()" >
|
||||
|
||||
<center>
|
||||
<div id="btn" style = "display: table; width: 550px; margin: 5px;">
|
||||
<center>
|
||||
<div style = "display: table; width: 95%;">
|
||||
<div style = "float: left;"> <b>{$categoryTitle}:</b>
|
||||
<select id="comboCategory" onchange="redirect();" style="width: 200px">
|
||||
{foreach from=$categoryValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: right;"> <b>{$processTitle}:</b>
|
||||
<select id="comboProcess" onchange="redirect();" style="width: 200px">
|
||||
{foreach from=$processValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: left;"> <b>{$statusTitle}: </b>
|
||||
<select id="comboStatus" onchange="redirect();" style="width: 200px">
|
||||
{foreach from=$statusValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: right;">
|
||||
<input type="button" class="fontText" onclick="setTextSearch();" tabindex="2" value=" x ">
|
||||
</div>
|
||||
<div style = "float: right;"><b>{$searchTitle}:</b>
|
||||
<input type="text" size="27" maxlength="60" value="" id='searchText' placeholder="{$searchTitle}...">
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id='panelDown' style = "display: none; width: 95%;">
|
||||
<div style = "float: left;"> <b>{$userTitle}: </b>
|
||||
<select id="comboUsers" onchange="redirect();" style="width: 400px">
|
||||
{foreach from=$userValues key=k item=VALUE}
|
||||
<option value="{$VALUE[0]}">{$VALUE[1]}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</div>
|
||||
<div style = "float: left;"><b>{$fromTitle} </b>
|
||||
<input id='dateFrom' type='text' readonly='true' size="10">
|
||||
<div style="display: none" class=demo-description></div>
|
||||
</div>
|
||||
<div style = "float: left;"><b> {$toTitle}
|
||||
<input id='dateTo' type='text' readonly='true' size="10">
|
||||
<div style="display: none" class=demo-description></div>
|
||||
</div>
|
||||
</div>
|
||||
<div style = "display: table; width: 95%;">
|
||||
<div style = "float: left">
|
||||
<input type="button" class="fontText" onclick="redirect();" name="commit" tabindex="1" value="{$searchTitle}">
|
||||
</div>
|
||||
<div style = "float: right;">
|
||||
<a href="#" onclick="addPanelSearch(); return false;"><img id='imagenPanel' src="/images/simplified/down.png" border="0"></a>
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
|
||||
<center>
|
||||
<div class="content-header" style="text-align:left">
|
||||
<h1 style="padding: 10px">{$title} ({$cases_count})</h1>
|
||||
<ul id="commentlist">
|
||||
{include file='home/applications.html'}
|
||||
</ul>
|
||||
|
||||
{if $cases_count > $appListLimit}
|
||||
<center>
|
||||
<a href="#" style="color:#1F98C7; font-size:12px; font-weight:bold;" id="loadmorebutton">Load More</a>
|
||||
</center>
|
||||
{/if}
|
||||
</div>
|
||||
</center>
|
||||
|
||||
<div id="dialog-add-note" title="Case Note" style="display:none">
|
||||
<p><!-- <span class="ui-icon ui-icon-document" style="float:left; margin:0 7px 20px 0;"></span> -->
|
||||
<span id="startAppTitle"/>
|
||||
<textarea id="note_text" rows="2" cols="22"></textarea>
|
||||
<div class="x-form-check-wrap" id="ext-gen160" style="font-size:11px">
|
||||
<input type="checkbox" name="chkSendMail" id="chkSendMail" autocomplete="off" class=" x-form-checkbox x-form-field" checked="">
|
||||
<label class="x-form-cb-label" for="chkSendMail" id="ext-gen161">Send email (Case Participants)</label>
|
||||
</div>
|
||||
</p>
|
||||
</div>
|
||||
<br/>
|
||||
</body>
|
||||
</html>
|
||||
@@ -17,6 +17,10 @@
|
||||
<en>Type<option name="DYNAFORM">Dynaform</option><option name="INPUT_DOCUMENT">Input Document</option><option name="OUTPUT_DOCUMENT">Output Document</option><option name="EXTERNAL">External Step</option></en>
|
||||
</STEP_TYPE_OBJ>
|
||||
|
||||
<STEP_MODE type="dropdown" colWidth="80" titleAlign="left" align="left">
|
||||
<en>Mode<option name=""><![CDATA[N/A]]></option><option name="VIEW">View</option><option name="EDIT">Edit</option></en>
|
||||
</STEP_MODE>
|
||||
|
||||
<linkEditValue type="link" value="@#linkEditValue" link="javascript:@#urlEdit" colWidth="40" align="center"/>
|
||||
|
||||
<DELETE type="link" colWidth="30" value="@G::LoadTranslation(ID_DE_ASSIGN)" link="#" onclick="stepDelete(@QSTEP_UID, @QSTEP_POSITION);return false;"><en></en></DELETE>
|
||||
|
||||
BIN
workflow/public_html/images/simplified/advancedSearch.png
Normal file
BIN
workflow/public_html/images/simplified/advancedSearch.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
BIN
workflow/public_html/images/simplified/down.png
Normal file
BIN
workflow/public_html/images/simplified/down.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
workflow/public_html/images/simplified/up.png
Normal file
BIN
workflow/public_html/images/simplified/up.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
Reference in New Issue
Block a user