Mercurial > silverbladetech
comparison Chronosv2/source/Presentation/Windows/DesktopSerializer.cs @ 19:09d18d6e5f40
airport work
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Thu, 15 Mar 2012 06:59:15 +0000 |
parents | 443821e55f06 |
children |
comparison
equal
deleted
inserted
replaced
18:8049f7c58c2b | 19:09d18d6e5f40 |
---|---|
125 catch (Exception) | 125 catch (Exception) |
126 { | 126 { |
127 IShowMessageViewService showMessageService = ViewServiceLocator.GetViewService<IShowMessageViewService>(); | 127 IShowMessageViewService showMessageService = ViewServiceLocator.GetViewService<IShowMessageViewService>(); |
128 | 128 |
129 showMessageService.ButtonSetup = DialogButton.Ok; | 129 showMessageService.ButtonSetup = DialogButton.Ok; |
130 showMessageService.Caption = "Chronos - Error en la carga del escritorio"; | 130 showMessageService.Caption = "Error loading the desktop"; |
131 showMessageService.Text = "No ha sido posible realizar la carga del escritorio."; | 131 showMessageService.Text = "It was not possible to load the desktop."; |
132 | 132 |
133 showMessageService.ShowMessage(); | 133 showMessageService.ShowMessage(); |
134 } | 134 } |
135 | 135 |
136 return null; | 136 return null; |
145 catch (Exception) | 145 catch (Exception) |
146 { | 146 { |
147 IShowMessageViewService showMessageService = ViewServiceLocator.GetViewService<IShowMessageViewService>(); | 147 IShowMessageViewService showMessageService = ViewServiceLocator.GetViewService<IShowMessageViewService>(); |
148 | 148 |
149 showMessageService.ButtonSetup = DialogButton.Ok; | 149 showMessageService.ButtonSetup = DialogButton.Ok; |
150 showMessageService.Caption = "Chronos - Error al guardar el estado del escritorio"; | 150 showMessageService.Caption = "Failed to save your desktop state"; |
151 showMessageService.Text = "No ha sido posible al guardar el estado del escritorio."; | 151 showMessageService.Text = "Unable to save your desktop state."; |
152 | 152 |
153 showMessageService.ShowMessage(); | 153 showMessageService.ShowMessage(); |
154 } | 154 } |
155 } | 155 } |
156 | 156 |