CA-169475 - G11n: SC&JA: Didn't provide AM/PM on date info under “Created On” list

Signed-off-by: Letsibogo Ramadi <letsibogo.ramadi@citrix.com>
This commit is contained in:
Letsibogo Ramadi 2017-01-17 10:37:55 +00:00
parent a2c6ddd4ef
commit d83bc64cef

View File

@ -449,7 +449,7 @@ namespace XenAdmin.TabPages
_name.Value = snapshot.name_label;
//Created On
Cells.Add(_creationTime);
_creationTime.Value = snapshot.snapshot_time.ToLocalTime() + snapshot.Connection.ServerTimeOffset;
_creationTime.Value = HelpersGUI.DateTimeToString(snapshot.snapshot_time.ToLocalTime() + snapshot.Connection.ServerTimeOffset, Messages.DATEFORMAT_DMY_HMS, true);
//Size
Cells.Add(_size);
_size.Value = GetStringSnapshotSize(snapshot);