comparison Agendas/trunk/src/Agendas.Google/DetailsEvents/EstudioGEventDetail.cs @ 288:a6037c6c88d8

Se soluciona bug #198 Bug: Summary incorrecto en Google Calendar. Se parametriza la hora en el mensaje.
author user@MECHUQUE
date Mon, 30 Jan 2012 01:52:47 -0300
parents cd96cfc8a1f5
children
comparison
equal deleted inserted replaced
287:eeca9ddb330a 288:a6037c6c88d8
6 { 6 {
7 public class EstudioGEventDetail : IGEventDetail 7 public class EstudioGEventDetail : IGEventDetail
8 { 8 {
9 private const string TextoEstudio = 9 private const string TextoEstudio =
10 "La comunidad ALT.NET Hispano (http://altnethispano.org) realizará un grupo de estudio sobre [NOMBRE]." + 10 "La comunidad ALT.NET Hispano (http://altnethispano.org) realizará un grupo de estudio sobre [NOMBRE]." +
11 "\n\rFecha: [FECHA] a las 18:00 hrs. Hora Internacional (GMT/UTC), con una duración aproximada de 2 horas." + 11 "\n\rFecha: [FECHA] a las [HORA] hrs. Hora Internacional (GMT/UTC), con una duración aproximada de 2 horas." +
12 "\n\rPueden plantear sus comentarios e inquietudes sobre el tema de la reunión en: [URL_DISCUCION]" + 12 "\n\rPueden plantear sus comentarios e inquietudes sobre el tema de la reunión en: [URL_DISCUCION]" +
13 "\n\rPara mayor información sobre cómo atender la reunión consulten: http://tinyurl.com/van-hispano" + 13 "\n\rPara mayor información sobre cómo atender la reunión consulten: http://tinyurl.com/van-hispano" +
14 "\n\rPueden vincular el Google Calendar al suyo (http://screenr.com/nr7)"; 14 "\n\rPueden vincular el Google Calendar al suyo (http://screenr.com/nr7)";
15 15
16 public string Title { get; private set; } 16 public string Title { get; private set; }
28 28
29 var cultureInfo = new CultureInfo("es-ES", false).DateTimeFormat; 29 var cultureInfo = new CultureInfo("es-ES", false).DateTimeFormat;
30 30
31 Summary = TextoEstudio.Replace("[NOMBRE]", evento.Titulo). 31 Summary = TextoEstudio.Replace("[NOMBRE]", evento.Titulo).
32 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)). 32 Replace("[FECHA]", StartEvent.ToString("D", cultureInfo)).
33 Replace("[URL_DISCUCION]", evento.UrlInvitacion); 33 Replace("[URL_DISCUCION]", evento.UrlInvitacion).Replace("[HORA]", StartEvent.ToShortTimeString());
34 } 34 }
35 } 35 }
36 } 36 }