BUG 8671 PM. 2.0 -Testing.13: Error de traducción

- Al asignar un nuevo usuario a una tarea, la ventana posee labels en ingles.
- Adjustments several in the hardcoded in ExtJS labels.
This commit is contained in:
Hector Cortez
2012-04-23 10:23:09 -04:00
parent 374bb0d051
commit b623e8577b
23 changed files with 251 additions and 259 deletions

View File

@@ -263,7 +263,7 @@ Ext.onReady(function(){
cmodelGroups = new Ext.grid.ColumnModel({
viewConfig: {
cls:"x-grid-empty",
emptyText: (TRANSLATIONS.ID_NO_RECORDS_FOUND)
emptyText: _('ID_NO_RECORDS_FOUND')
}
,
columns: [
@@ -427,8 +427,8 @@ full_name = function(v,x,s){
render_status = function(v){
switch(v){
case 'ACTIVE': return '<font color="green">' + _('ID_ACTIVE') + '</font>'; break;
case 'INACTIVE': return '<font color="red">' + _('ID_INACTIVE') + '</font>';; break;
case 'VACATION': return '<font color="blue">' + _('ID_VACATION') + '</font>';; break;
case 'INACTIVE': return '<font color="red">' + _('ID_INACTIVE') + '</font>'; break;
case 'VACATION': return '<font color="blue">' + _('ID_VACATION') + '</font>'; break;
}
};