From 202d75acadf07d4fad7ef871a672925cfa0315a7 Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Wed, 20 Aug 2014 14:19:04 -0400 Subject: [PATCH] BUG-15567 Cases List Problema con los idiomas al traducir... SOLVED - It don't have the functionality. - The ___() function was changed to return the lable without *** if it this is not found. - HOME columns translations, inside the Enterprise, were included. --- gulliver/js/common/core/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/js/common/core/common.js b/gulliver/js/common/core/common.js index 8612c692c..2620b3444 100755 --- a/gulliver/js/common/core/common.js +++ b/gulliver/js/common/core/common.js @@ -2191,7 +2191,7 @@ function __() eval("trn = TRANSLATIONS_" + argv[0].toUpperCase() + "[argv[1]];"); } } else { - trn = argv[1]; + trn = argv[1]; } } else { PMExt.error('Processmaker JS Core Error', 'The TRANSLATIONS ' + argv[0].toUpperCase() + ' global object is not loaded!');