Added attachments drag & drop support

This commit is contained in:
Aleh Khantsevich
2024-05-22 02:10:14 +02:00
parent 8f2f414f5e
commit 57e31c1dfb
5 changed files with 116 additions and 12 deletions

View File

@@ -46,6 +46,8 @@
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"ComposerAttachmentsDropZone_Message": "Drop your files here",
"ComposerAttachmentsDragDropAttach_Message": "Attach",
"CustomThemeBuilder_AccentColorDescription": "Set custom accent color if you wish. Not selecting a color will use your Windows accent color.",
"CustomThemeBuilder_AccentColorTitle": "Accent color",
"CustomThemeBuilder_PickColor": "Pick",

View File

@@ -253,6 +253,16 @@ namespace Wino.Core.Domain
/// </summary>
public static string ComposerToPlaceholder => Resources.GetTranslatedString(@"ComposerToPlaceholder");
/// <summary>
/// Drop your files here
/// </summary>
public static string ComposerAttachmentsDropZone_Message => Resources.GetTranslatedString(@"ComposerAttachmentsDropZone_Message");
/// <summary>
/// Attach
/// </summary>
public static string ComposerAttachmentsDragDropAttach_Message => Resources.GetTranslatedString(@"ComposerAttachmentsDragDropAttach_Message");
/// <summary>
/// Set custom accent color if you wish. Not selecting a color will use your Windows accent color.
/// </summary>