Added no subject handler (#451)
* Added no subject handler changed text trimming for address to CharacterEllipsis * Make email subject selectable.
This commit is contained in:
@@ -57,6 +57,7 @@ namespace Wino.Helpers
|
||||
return prefer24HourTime ? localTime.ToString(TwentyFourHourTimeFormat) : localTime.ToString(TwelveHourTimeFormat);
|
||||
}
|
||||
}
|
||||
public static string GetMailItemSubject(string subject) => string.IsNullOrWhiteSpace(subject) ? $"({Translator.MailItemNoSubject})" : subject;
|
||||
public static string GetCreationDateString(DateTime date, bool prefer24HourTime)
|
||||
{
|
||||
var localTime = date.ToLocalTime();
|
||||
|
||||
Reference in New Issue
Block a user