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

@@ -287,7 +287,7 @@ Ext.onReady(function(){
});
//here we are setting the fields
fieldsAS = new Ext.form.FieldSet({
title: 'Authentication Source Information',
title: _('ID_AUTHENTICATION_SOURCE_INFORMATION'),
items: [
txtSourceId,
txtSourceProvider,
@@ -331,12 +331,12 @@ Ext.onReady(function(){
],
buttons: [
{
text: 'Save',
text: _('ID_SAVE'),
handler: TestSite
},
{
text: 'Cancel',
text: _('ID_CANCEL'),
handler: goback
}
]
@@ -383,10 +383,10 @@ Ext.onReady(function(){
},
failure: function(f,a){
if (a.failureType === Ext.form.Action.CONNECT_FAILURE){
Ext.Msg.alert('Failure', 'Server reported:'+a.response.status+' '+a.response.statusText);
Ext.Msg.alert(_('ID_FAILURE'), _('ID_SERVER_REPORTED') + ':'+a.response.status+' '+a.response.statusText);
}
if (a.failureType === Ext.form.Action.SERVER_INVALID){
Ext.Msg.alert('Warning', 'you have an error');
Ext.Msg.alert( _('ID_WARNING'), _('ID_YOU_HAVE_ERROR') );
}
}
});