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:
Tiktack
2024-11-03 15:44:39 +01:00
committed by GitHub
parent d8885b089a
commit a1517f82bc
5 changed files with 12 additions and 5 deletions

View File

@@ -611,6 +611,6 @@
"TitleBarServerDisconnectedButton_Title": "no connection",
"TitleBarServerDisconnectedButton_Description": "Wino is disconnected from the network. Click reconnect to restore connection.",
"TitleBarServerReconnectButton_Title": "reconnect",
"TitleBarServerReconnectingButton_Title": "connecting"
"TitleBarServerReconnectingButton_Title": "connecting",
"MailItemNoSubject": "No subject"
}

View File

@@ -3082,5 +3082,10 @@ namespace Wino.Core.Domain
/// connecting
/// </summary>
public static string TitleBarServerReconnectingButton_Title => Resources.GetTranslatedString(@"TitleBarServerReconnectingButton_Title");
/// <summary>
/// No subject
/// </summary>
public static string MailItemNoSubject => Resources.GetTranslatedString(@"MailItemNoSubject");
}
}