BUG 8932 Untranslatable strings SOLVED

- There was a issue with the class that creates the string of translations,
  was fixed this and too has add it two labels for TRUE and FALSE
This commit is contained in:
Alvaro Campos
2012-06-06 15:30:57 -04:00
parent 833f99241c
commit bc121f65cc
3 changed files with 3 additions and 2 deletions

View File

@@ -398,7 +398,7 @@ var Conditional = function(DYN_UID){
if(this.canSave){
if( saving != true ){
bResult = (result)? 'TRUE': 'FALSE';
bResult = (result)? _('ID_TRUE'): _('ID_FALSE');
oResultDiv = document.getElementById("ResultMessageTD");
oResultDiv.style.display = 'block';
oResultDiv.style.backgroundColor = '#BFCCC5';