diff --git a/config/web.php b/config/web.php index 20023e6..3e70a06 100644 --- a/config/web.php +++ b/config/web.php @@ -4,7 +4,7 @@ $db = require __DIR__ . '/db.php'; $config = [ - 'id' => 'FIXME', // Unique ID that differentiates an application from others. + 'id' => 'jonathan', // Unique ID that differentiates an application from others. 'basePath' => dirname(__DIR__), 'aliases' => [ '@bower' => '@vendor/bower-asset', @@ -96,7 +96,7 @@ // 'switchIdentitySessionKey' => 'myown_usuario_admin_user_key', ], ], - 'name' => 'Propuestas de másteres universitarios', // Application name that may be displayed to end users + 'name' => 'Propuestas de másteres de referencia', // Application name that may be displayed to end users 'params' => $params, 'timeZone' => 'Europe/Madrid', // Default time zone of the PHP runtime ]; diff --git a/models/PropuestaCentro.php b/models/PropuestaCentro.php index e8691d1..6e382e3 100644 --- a/models/PropuestaCentro.php +++ b/models/PropuestaCentro.php @@ -17,7 +17,7 @@ public function attributeLabels() parent::attributeLabels(), [ 'nombre_centro' => Yii::t('models', 'Nombre del centro'), - 'documento_firma' => Yii::t('models', 'Documento firmado por el decano o director'), + 'documento_firma' => Yii::t('models', 'Informe favorable de la Junta de Centro'), ] ); } diff --git a/views/propuesta/_formulario.php b/views/propuesta/_formulario.php index 7f9dc2c..9b02d22 100644 --- a/views/propuesta/_formulario.php +++ b/views/propuesta/_formulario.php @@ -59,6 +59,7 @@ ?>
getAttributeLabel('nombre_grupo_inves'); ?> | -getAttributeLabel('documento_firma'); ?> | +getAttributeLabel('nombre_grupo_inves'); ?> | +getAttributeLabel('documento_firma'); ?> |
---|