FIX_SIMPLIFIED_UI "Traducciones faltantes." SOLVED
- Se han agragado traducciones faltantes en directorio: templates/home/ y los archivos: home.php, Users.php, AppNotes.php y appProxy.php * Available from version ProcessMaker-2.0.47 (2.5.1)
This commit is contained in:
@@ -100,7 +100,7 @@ class AppProxy extends HttpProxyController
|
||||
}
|
||||
|
||||
if (! isset( $appUid )) {
|
||||
throw new Exception( 'Can\'t resolve the Apllication ID for this request.' );
|
||||
throw new Exception(G::LoadTranslation("ID_CANT_RESOLVE_APLICATION"));
|
||||
}
|
||||
|
||||
$usrUid = (isset( $_SESSION['USER_LOGGED'] )) ? $_SESSION['USER_LOGGED'] : "";
|
||||
|
||||
@@ -190,13 +190,13 @@ class Home extends Controller
|
||||
// setting main list title
|
||||
switch ($httpData->t) {
|
||||
case 'todo':
|
||||
$title = 'My Inbox';
|
||||
$title = G::LoadTranslation("ID_MY_INBOX");
|
||||
break;
|
||||
case 'draft':
|
||||
$title = 'My Drafts';
|
||||
$title = G::LoadTranslation("ID_MY_DRAFTS");
|
||||
break;
|
||||
case 'unassigned':
|
||||
$title = 'Unassigned Inbox';
|
||||
$title = G::LoadTranslation("ID_UNASSIGNED_INBOX");
|
||||
break;
|
||||
default:
|
||||
$title = ucwords( $httpData->t );
|
||||
@@ -548,10 +548,10 @@ class Home extends Controller
|
||||
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
|
||||
//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 = new Configurations;
|
||||
$oConf->loadConfig($x, "APP_CACHE_VIEW_ENGINE", "", "", "", "");
|
||||
$appCacheViewEngine = $oConf->aConfig;
|
||||
$lang = isset($appCacheViewEngine["LANG"])? $appCacheViewEngine["LANG"] : "en";
|
||||
|
||||
Reference in New Issue
Block a user