From 7f1daa2480c01d7970bbd25c926790c02ea24aba Mon Sep 17 00:00:00 2001 From: Jaex Date: Wed, 3 Jun 2015 08:21:14 +0300 Subject: [PATCH] Added Portuguese-Brazil to languages list --- Greenshot.ImageEditor/Core/ImageOutput.cs | 2 +- Greenshot.ImageEditor/Drawing/Surface.cs | 2 +- .../Forms/ImageEditorForm.cs | 6 +- ShareX/Enums.cs | 2 + ShareX/Forms/AboutForm.cs | 1 + .../Forms/ApplicationSettingsForm.Designer.cs | 194 +- ShareX/Forms/ApplicationSettingsForm.cs | 3 + ShareX/Forms/ApplicationSettingsForm.resx | 6 +- ShareX/Forms/MainForm.Designer.cs | 390 +- ShareX/Forms/MainForm.pt-BR.resx | 1518 +++-- ShareX/Forms/MainForm.resx | 4950 ++++++++--------- ShareX/LanguageHelper.cs | 3 + ShareX/Properties/Resources.Designer.cs | 10 + ShareX/Properties/Resources.resx | 3 + ShareX/Resources/br.png | Bin 0 -> 593 bytes ShareX/ShareX.csproj | 1 + 16 files changed, 3839 insertions(+), 3252 deletions(-) create mode 100644 ShareX/Resources/br.png diff --git a/Greenshot.ImageEditor/Core/ImageOutput.cs b/Greenshot.ImageEditor/Core/ImageOutput.cs index ab589f212..50e4a2334 100644 --- a/Greenshot.ImageEditor/Core/ImageOutput.cs +++ b/Greenshot.ImageEditor/Core/ImageOutput.cs @@ -460,7 +460,7 @@ public static string SaveWithDialog(ISurface surface, ICaptureDetails captureDet QualityDialog qualityDialog = new QualityDialog(outputSettings); qualityDialog.ShowDialog(); } - // TODO: For now we always overwrite, should be changed + // For now we always overwrite, should be changed Save(surface, fileNameWithExtension, true, outputSettings, conf.OutputFileCopyPathToClipboard); returnValue = fileNameWithExtension; IniConfig.Save(); diff --git a/Greenshot.ImageEditor/Drawing/Surface.cs b/Greenshot.ImageEditor/Drawing/Surface.cs index 1e2c8ad3c..21c8e03a9 100644 --- a/Greenshot.ImageEditor/Drawing/Surface.cs +++ b/Greenshot.ImageEditor/Drawing/Surface.cs @@ -214,7 +214,7 @@ public Guid ID /// This saves a lot of "create new bitmap" commands /// Should not be serialized, as it's generated. /// The actual bitmap is in the paintbox... - /// TODO: Check if this buffer is still needed! + /// Check if this buffer is still needed! /// [NonSerialized] private Bitmap _buffer; diff --git a/Greenshot.ImageEditor/Forms/ImageEditorForm.cs b/Greenshot.ImageEditor/Forms/ImageEditorForm.cs index ba9a6d54a..9f6bca338 100644 --- a/Greenshot.ImageEditor/Forms/ImageEditorForm.cs +++ b/Greenshot.ImageEditor/Forms/ImageEditorForm.cs @@ -1096,7 +1096,7 @@ private void AddBorderToolStripMenuItemClick(object sender, EventArgs e) private void AddDropshadowToolStripMenuItemClick(object sender, EventArgs e) { DropShadowEffect dropShadowEffect = new DropShadowEffect(); - // TODO: Use the dropshadow settings form to make it possible to change the default values + // Use the dropshadow settings form to make it possible to change the default values DialogResult result = new DropShadowSettingsForm(dropShadowEffect).ShowDialog(this); if (result == DialogResult.OK) { @@ -1128,7 +1128,7 @@ private void ResizeToolStripMenuItemClick(object sender, EventArgs e) private void TornEdgesToolStripMenuItemClick(object sender, EventArgs e) { TornEdgeEffect tornEdgeEffect = new TornEdgeEffect(); - // TODO: Use the dropshadow settings form to make it possible to change the default values + // Use the dropshadow settings form to make it possible to change the default values DialogResult result = new TornEdgeSettingsForm(tornEdgeEffect).ShowDialog(this); if (result == DialogResult.OK) { @@ -1169,7 +1169,7 @@ private void RotateCcwToolstripButtonClick(object sender, EventArgs e) private void btnResize_Click(object sender, EventArgs e) { ResizeEffect resizeEffect = new ResizeEffect(surface.Image.Width, surface.Image.Height, true); - // TODO: Use the Resize SettingsForm to make it possible to change the default values + // Use the Resize SettingsForm to make it possible to change the default values DialogResult result = new ResizeSettingsForm(resizeEffect).ShowDialog(this); if (result == DialogResult.OK) { diff --git a/ShareX/Enums.cs b/ShareX/Enums.cs index f360c653c..6ab6c8284 100644 --- a/ShareX/Enums.cs +++ b/ShareX/Enums.cs @@ -43,6 +43,8 @@ public enum SupportedLanguage Hungarian, [Description("한국어 (Korean)")] Korean, + [Description("Português-Brasil (Portuguese-Brazil)")] + PortugueseBrazil, [Description("简体中文 (Simplified Chinese)")] SimplifiedChinese, [Description("Español (Spanish)")] diff --git a/ShareX/Forms/AboutForm.cs b/ShareX/Forms/AboutForm.cs index 2d6b0d4d3..1cf126a17 100644 --- a/ShareX/Forms/AboutForm.cs +++ b/ShareX/Forms/AboutForm.cs @@ -73,6 +73,7 @@ public AboutForm() Korean: https://github.com/123jimin Spanish: https://github.com/ovnisoftware Dutch: https://github.com/wforums +Portuguese-Brazil: https://github.com/TiagoDanin {2}: diff --git a/ShareX/Forms/ApplicationSettingsForm.Designer.cs b/ShareX/Forms/ApplicationSettingsForm.Designer.cs index 3b4186656..394c4fe4f 100644 --- a/ShareX/Forms/ApplicationSettingsForm.Designer.cs +++ b/ShareX/Forms/ApplicationSettingsForm.Designer.cs @@ -33,6 +33,8 @@ private void InitializeComponent() System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ApplicationSettingsForm)); this.tcSettings = new System.Windows.Forms.TabControl(); this.tpGeneral = new System.Windows.Forms.TabPage(); + this.btnLanguages = new ShareX.HelpersLib.MenuButton(); + this.cmsLanguages = new System.Windows.Forms.ContextMenuStrip(this.components); this.llTranslators = new System.Windows.Forms.LinkLabel(); this.lblLanguage = new System.Windows.Forms.Label(); this.cbRememberMainFormPosition = new System.Windows.Forms.CheckBox(); @@ -82,12 +84,21 @@ private void InitializeComponent() this.btnClipboardFormatEdit = new System.Windows.Forms.Button(); this.btnClipboardFormatRemove = new System.Windows.Forms.Button(); this.btnClipboardFormatAdd = new System.Windows.Forms.Button(); + this.lvClipboardFormats = new ShareX.HelpersLib.MyListView(); + this.chDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.chFormat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tpUploadRetry = new System.Windows.Forms.TabPage(); this.chkUseSecondaryUploaders = new System.Windows.Forms.CheckBox(); this.tlpBackupDestinations = new System.Windows.Forms.TableLayoutPanel(); this.gbSecondaryImageUploaders = new System.Windows.Forms.GroupBox(); + this.lvSecondaryImageUploaders = new ShareX.HelpersLib.MyListView(); + this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.gbSecondaryFileUploaders = new System.Windows.Forms.GroupBox(); + this.lvSecondaryFileUploaders = new ShareX.HelpersLib.MyListView(); + this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.gbSecondaryTextUploaders = new System.Windows.Forms.GroupBox(); + this.lvSecondaryTextUploaders = new ShareX.HelpersLib.MyListView(); + this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.cbIfUploadFailRetryOnce = new System.Windows.Forms.Label(); this.nudRetryUpload = new System.Windows.Forms.NumericUpDown(); this.tpPrint = new System.Windows.Forms.TabPage(); @@ -96,17 +107,6 @@ private void InitializeComponent() this.btnShowImagePrintSettings = new System.Windows.Forms.Button(); this.tpAdvanced = new System.Windows.Forms.TabPage(); this.pgSettings = new System.Windows.Forms.PropertyGrid(); - this.cmsLanguages = new System.Windows.Forms.ContextMenuStrip(this.components); - this.btnLanguages = new ShareX.HelpersLib.MenuButton(); - this.lvClipboardFormats = new ShareX.HelpersLib.MyListView(); - this.chDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.chFormat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.lvSecondaryImageUploaders = new ShareX.HelpersLib.MyListView(); - this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.lvSecondaryFileUploaders = new ShareX.HelpersLib.MyListView(); - this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.lvSecondaryTextUploaders = new ShareX.HelpersLib.MyListView(); - this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tttvMain = new ShareX.HelpersLib.TabToTreeView(); this.tcSettings.SuspendLayout(); this.tpGeneral.SuspendLayout(); @@ -159,6 +159,19 @@ private void InitializeComponent() this.tpGeneral.Name = "tpGeneral"; this.tpGeneral.UseVisualStyleBackColor = true; // + // btnLanguages + // + resources.ApplyResources(this.btnLanguages, "btnLanguages"); + this.btnLanguages.Menu = this.cmsLanguages; + this.btnLanguages.MenuX0 = true; + this.btnLanguages.Name = "btnLanguages"; + this.btnLanguages.UseVisualStyleBackColor = true; + // + // cmsLanguages + // + this.cmsLanguages.Name = "cmsLanguages"; + resources.ApplyResources(this.cmsLanguages, "cmsLanguages"); + // // llTranslators // resources.ApplyResources(this.llTranslators, "llTranslators"); @@ -514,6 +527,27 @@ private void InitializeComponent() this.btnClipboardFormatAdd.UseVisualStyleBackColor = true; this.btnClipboardFormatAdd.Click += new System.EventHandler(this.btnAddClipboardFormat_Click); // + // lvClipboardFormats + // + resources.ApplyResources(this.lvClipboardFormats, "lvClipboardFormats"); + this.lvClipboardFormats.AutoFillColumn = true; + this.lvClipboardFormats.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.chDescription, + this.chFormat}); + this.lvClipboardFormats.FullRowSelect = true; + this.lvClipboardFormats.Name = "lvClipboardFormats"; + this.lvClipboardFormats.UseCompatibleStateImageBehavior = false; + this.lvClipboardFormats.View = System.Windows.Forms.View.Details; + this.lvClipboardFormats.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvClipboardFormats_MouseDoubleClick); + // + // chDescription + // + resources.ApplyResources(this.chDescription, "chDescription"); + // + // chFormat + // + resources.ApplyResources(this.chFormat, "chFormat"); + // // tpUploadRetry // this.tpUploadRetry.Controls.Add(this.chkUseSecondaryUploaders); @@ -546,6 +580,24 @@ private void InitializeComponent() this.gbSecondaryImageUploaders.Name = "gbSecondaryImageUploaders"; this.gbSecondaryImageUploaders.TabStop = false; // + // lvSecondaryImageUploaders + // + this.lvSecondaryImageUploaders.AllowDrop = true; + this.lvSecondaryImageUploaders.AllowItemDrag = true; + this.lvSecondaryImageUploaders.AutoFillColumn = true; + this.lvSecondaryImageUploaders.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.lvSecondaryImageUploaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.columnHeader1}); + resources.ApplyResources(this.lvSecondaryImageUploaders, "lvSecondaryImageUploaders"); + this.lvSecondaryImageUploaders.FullRowSelect = true; + this.lvSecondaryImageUploaders.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; + this.lvSecondaryImageUploaders.HideSelection = false; + this.lvSecondaryImageUploaders.MultiSelect = false; + this.lvSecondaryImageUploaders.Name = "lvSecondaryImageUploaders"; + this.lvSecondaryImageUploaders.UseCompatibleStateImageBehavior = false; + this.lvSecondaryImageUploaders.View = System.Windows.Forms.View.Details; + this.lvSecondaryImageUploaders.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSecondaryUploaders_MouseUp); + // // gbSecondaryFileUploaders // this.gbSecondaryFileUploaders.Controls.Add(this.lvSecondaryFileUploaders); @@ -553,6 +605,23 @@ private void InitializeComponent() this.gbSecondaryFileUploaders.Name = "gbSecondaryFileUploaders"; this.gbSecondaryFileUploaders.TabStop = false; // + // lvSecondaryFileUploaders + // + this.lvSecondaryFileUploaders.AllowDrop = true; + this.lvSecondaryFileUploaders.AllowItemDrag = true; + this.lvSecondaryFileUploaders.AutoFillColumn = true; + this.lvSecondaryFileUploaders.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.lvSecondaryFileUploaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.columnHeader3}); + resources.ApplyResources(this.lvSecondaryFileUploaders, "lvSecondaryFileUploaders"); + this.lvSecondaryFileUploaders.FullRowSelect = true; + this.lvSecondaryFileUploaders.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; + this.lvSecondaryFileUploaders.MultiSelect = false; + this.lvSecondaryFileUploaders.Name = "lvSecondaryFileUploaders"; + this.lvSecondaryFileUploaders.UseCompatibleStateImageBehavior = false; + this.lvSecondaryFileUploaders.View = System.Windows.Forms.View.Details; + this.lvSecondaryFileUploaders.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSecondaryUploaders_MouseUp); + // // gbSecondaryTextUploaders // this.gbSecondaryTextUploaders.Controls.Add(this.lvSecondaryTextUploaders); @@ -560,6 +629,23 @@ private void InitializeComponent() this.gbSecondaryTextUploaders.Name = "gbSecondaryTextUploaders"; this.gbSecondaryTextUploaders.TabStop = false; // + // lvSecondaryTextUploaders + // + this.lvSecondaryTextUploaders.AllowDrop = true; + this.lvSecondaryTextUploaders.AllowItemDrag = true; + this.lvSecondaryTextUploaders.AutoFillColumn = true; + this.lvSecondaryTextUploaders.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.lvSecondaryTextUploaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.columnHeader2}); + resources.ApplyResources(this.lvSecondaryTextUploaders, "lvSecondaryTextUploaders"); + this.lvSecondaryTextUploaders.FullRowSelect = true; + this.lvSecondaryTextUploaders.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; + this.lvSecondaryTextUploaders.MultiSelect = false; + this.lvSecondaryTextUploaders.Name = "lvSecondaryTextUploaders"; + this.lvSecondaryTextUploaders.UseCompatibleStateImageBehavior = false; + this.lvSecondaryTextUploaders.View = System.Windows.Forms.View.Details; + this.lvSecondaryTextUploaders.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSecondaryUploaders_MouseUp); + // // cbIfUploadFailRetryOnce // resources.ApplyResources(this.cbIfUploadFailRetryOnce, "cbIfUploadFailRetryOnce"); @@ -620,92 +706,6 @@ private void InitializeComponent() this.pgSettings.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.pgSettings.ToolbarVisible = false; // - // cmsLanguages - // - this.cmsLanguages.Name = "cmsLanguages"; - resources.ApplyResources(this.cmsLanguages, "cmsLanguages"); - // - // btnLanguages - // - resources.ApplyResources(this.btnLanguages, "btnLanguages"); - this.btnLanguages.Menu = this.cmsLanguages; - this.btnLanguages.MenuX0 = true; - this.btnLanguages.Name = "btnLanguages"; - this.btnLanguages.UseVisualStyleBackColor = true; - // - // lvClipboardFormats - // - resources.ApplyResources(this.lvClipboardFormats, "lvClipboardFormats"); - this.lvClipboardFormats.AutoFillColumn = true; - this.lvClipboardFormats.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.chDescription, - this.chFormat}); - this.lvClipboardFormats.FullRowSelect = true; - this.lvClipboardFormats.Name = "lvClipboardFormats"; - this.lvClipboardFormats.UseCompatibleStateImageBehavior = false; - this.lvClipboardFormats.View = System.Windows.Forms.View.Details; - this.lvClipboardFormats.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvClipboardFormats_MouseDoubleClick); - // - // chDescription - // - resources.ApplyResources(this.chDescription, "chDescription"); - // - // chFormat - // - resources.ApplyResources(this.chFormat, "chFormat"); - // - // lvSecondaryImageUploaders - // - this.lvSecondaryImageUploaders.AllowDrop = true; - this.lvSecondaryImageUploaders.AllowItemDrag = true; - this.lvSecondaryImageUploaders.AutoFillColumn = true; - this.lvSecondaryImageUploaders.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.lvSecondaryImageUploaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.columnHeader1}); - resources.ApplyResources(this.lvSecondaryImageUploaders, "lvSecondaryImageUploaders"); - this.lvSecondaryImageUploaders.FullRowSelect = true; - this.lvSecondaryImageUploaders.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; - this.lvSecondaryImageUploaders.HideSelection = false; - this.lvSecondaryImageUploaders.MultiSelect = false; - this.lvSecondaryImageUploaders.Name = "lvSecondaryImageUploaders"; - this.lvSecondaryImageUploaders.UseCompatibleStateImageBehavior = false; - this.lvSecondaryImageUploaders.View = System.Windows.Forms.View.Details; - this.lvSecondaryImageUploaders.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSecondaryUploaders_MouseUp); - // - // lvSecondaryFileUploaders - // - this.lvSecondaryFileUploaders.AllowDrop = true; - this.lvSecondaryFileUploaders.AllowItemDrag = true; - this.lvSecondaryFileUploaders.AutoFillColumn = true; - this.lvSecondaryFileUploaders.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.lvSecondaryFileUploaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.columnHeader3}); - resources.ApplyResources(this.lvSecondaryFileUploaders, "lvSecondaryFileUploaders"); - this.lvSecondaryFileUploaders.FullRowSelect = true; - this.lvSecondaryFileUploaders.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; - this.lvSecondaryFileUploaders.MultiSelect = false; - this.lvSecondaryFileUploaders.Name = "lvSecondaryFileUploaders"; - this.lvSecondaryFileUploaders.UseCompatibleStateImageBehavior = false; - this.lvSecondaryFileUploaders.View = System.Windows.Forms.View.Details; - this.lvSecondaryFileUploaders.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSecondaryUploaders_MouseUp); - // - // lvSecondaryTextUploaders - // - this.lvSecondaryTextUploaders.AllowDrop = true; - this.lvSecondaryTextUploaders.AllowItemDrag = true; - this.lvSecondaryTextUploaders.AutoFillColumn = true; - this.lvSecondaryTextUploaders.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.lvSecondaryTextUploaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.columnHeader2}); - resources.ApplyResources(this.lvSecondaryTextUploaders, "lvSecondaryTextUploaders"); - this.lvSecondaryTextUploaders.FullRowSelect = true; - this.lvSecondaryTextUploaders.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; - this.lvSecondaryTextUploaders.MultiSelect = false; - this.lvSecondaryTextUploaders.Name = "lvSecondaryTextUploaders"; - this.lvSecondaryTextUploaders.UseCompatibleStateImageBehavior = false; - this.lvSecondaryTextUploaders.View = System.Windows.Forms.View.Details; - this.lvSecondaryTextUploaders.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSecondaryUploaders_MouseUp); - // // tttvMain // resources.ApplyResources(this.tttvMain, "tttvMain"); diff --git a/ShareX/Forms/ApplicationSettingsForm.cs b/ShareX/Forms/ApplicationSettingsForm.cs index 4a1f0d857..8cf54fc2d 100644 --- a/ShareX/Forms/ApplicationSettingsForm.cs +++ b/ShareX/Forms/ApplicationSettingsForm.cs @@ -164,6 +164,9 @@ private Image GetLanguageIcon(SupportedLanguage language) case SupportedLanguage.Korean: icon = Resources.kr; break; + case SupportedLanguage.PortugueseBrazil: + icon = Resources.br; + break; case SupportedLanguage.SimplifiedChinese: icon = Resources.cn; break; diff --git a/ShareX/Forms/ApplicationSettingsForm.resx b/ShareX/Forms/ApplicationSettingsForm.resx index 625a84a40..13108eaf0 100644 --- a/ShareX/Forms/ApplicationSettingsForm.resx +++ b/ShareX/Forms/ApplicationSettingsForm.resx @@ -144,7 +144,7 @@ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 200, 23 + 224, 23 @@ -175,10 +175,10 @@ NoControl - 216, 28 + 240, 28 - 206, 13 + 209, 13 12 diff --git a/ShareX/Forms/MainForm.Designer.cs b/ShareX/Forms/MainForm.Designer.cs index 133bc2ffa..2c3b9c2db 100644 --- a/ShareX/Forms/MainForm.Designer.cs +++ b/ShareX/Forms/MainForm.Designer.cs @@ -218,13 +218,13 @@ private void InitializeComponent() this.tsmiTrayTaskSettings = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayHotkeySettings = new System.Windows.Forms.ToolStripMenuItem(); this.tssTray2 = new System.Windows.Forms.ToolStripSeparator(); - this.tsmiTrayRecentItems = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiScreenshotsFolder = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayHistory = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayImageHistory = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayDonate = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayAbout = new System.Windows.Forms.ToolStripMenuItem(); this.tssTray3 = new System.Windows.Forms.ToolStripSeparator(); + this.tsmiTrayRecentItems = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayShow = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiTrayExit = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.scMain)).BeginInit(); @@ -244,12 +244,14 @@ private void InitializeComponent() // // scMain.Panel1 // + resources.ApplyResources(this.scMain.Panel1, "scMain.Panel1"); this.scMain.Panel1.Controls.Add(this.lblMainFormTip); this.scMain.Panel1.Controls.Add(this.lblSplitter); this.scMain.Panel1.Controls.Add(this.lvUploads); // // scMain.Panel2 // + resources.ApplyResources(this.scMain.Panel2, "scMain.Panel2"); this.scMain.Panel2.Controls.Add(this.pbPreview); this.scMain.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.scMain_SplitterMoved); // @@ -264,12 +266,13 @@ private void InitializeComponent() // // lblSplitter // - this.lblSplitter.BackColor = System.Drawing.Color.Black; resources.ApplyResources(this.lblSplitter, "lblSplitter"); + this.lblSplitter.BackColor = System.Drawing.Color.Black; this.lblSplitter.Name = "lblSplitter"; // // lvUploads // + resources.ApplyResources(this.lvUploads, "lvUploads"); this.lvUploads.AutoFillColumn = true; this.lvUploads.BackColor = System.Drawing.Color.White; this.lvUploads.BorderStyle = System.Windows.Forms.BorderStyle.None; @@ -281,7 +284,6 @@ private void InitializeComponent() this.chElapsed, this.chRemaining, this.chURL}); - resources.ApplyResources(this.lvUploads, "lvUploads"); this.lvUploads.FullRowSelect = true; this.lvUploads.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.lvUploads.HideSelection = false; @@ -324,8 +326,8 @@ private void InitializeComponent() // // pbPreview // - this.pbPreview.BackColor = System.Drawing.Color.White; resources.ApplyResources(this.pbPreview, "pbPreview"); + this.pbPreview.BackColor = System.Drawing.Color.White; this.pbPreview.DrawCheckeredBackground = true; this.pbPreview.EnableRightClickMenu = true; this.pbPreview.FullscreenOnClick = true; @@ -362,6 +364,7 @@ private void InitializeComponent() // // tsddbCapture // + resources.ApplyResources(this.tsddbCapture, "tsddbCapture"); this.tsddbCapture.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiFullscreen, this.tsmiWindow, @@ -382,136 +385,136 @@ private void InitializeComponent() this.tsmiScreenRecordingGIF, this.tsmiAutoCapture}); this.tsddbCapture.Image = global::ShareX.Properties.Resources.camera; - resources.ApplyResources(this.tsddbCapture, "tsddbCapture"); this.tsddbCapture.Name = "tsddbCapture"; this.tsddbCapture.DropDownOpening += new System.EventHandler(this.tsddbCapture_DropDownOpening); // // tsmiFullscreen // + resources.ApplyResources(this.tsmiFullscreen, "tsmiFullscreen"); this.tsmiFullscreen.Image = global::ShareX.Properties.Resources.layer; this.tsmiFullscreen.Name = "tsmiFullscreen"; - resources.ApplyResources(this.tsmiFullscreen, "tsmiFullscreen"); this.tsmiFullscreen.Click += new System.EventHandler(this.tsmiFullscreen_Click); // // tsmiWindow // + resources.ApplyResources(this.tsmiWindow, "tsmiWindow"); this.tsmiWindow.Image = global::ShareX.Properties.Resources.application_blue; this.tsmiWindow.Name = "tsmiWindow"; - resources.ApplyResources(this.tsmiWindow, "tsmiWindow"); // // tsmiMonitor // + resources.ApplyResources(this.tsmiMonitor, "tsmiMonitor"); this.tsmiMonitor.Image = global::ShareX.Properties.Resources.monitor; this.tsmiMonitor.Name = "tsmiMonitor"; - resources.ApplyResources(this.tsmiMonitor, "tsmiMonitor"); // // tsmiRectangle // + resources.ApplyResources(this.tsmiRectangle, "tsmiRectangle"); this.tsmiRectangle.Image = global::ShareX.Properties.Resources.layer_shape; this.tsmiRectangle.Name = "tsmiRectangle"; - resources.ApplyResources(this.tsmiRectangle, "tsmiRectangle"); this.tsmiRectangle.Click += new System.EventHandler(this.tsmiRectangle_Click); // // tsmiWindowRectangle // + resources.ApplyResources(this.tsmiWindowRectangle, "tsmiWindowRectangle"); this.tsmiWindowRectangle.Image = global::ShareX.Properties.Resources.layers_ungroup; this.tsmiWindowRectangle.Name = "tsmiWindowRectangle"; - resources.ApplyResources(this.tsmiWindowRectangle, "tsmiWindowRectangle"); this.tsmiWindowRectangle.Click += new System.EventHandler(this.tsmiWindowRectangle_Click); // // tsmiRectangleAnnotate // + resources.ApplyResources(this.tsmiRectangleAnnotate, "tsmiRectangleAnnotate"); this.tsmiRectangleAnnotate.Image = global::ShareX.Properties.Resources.layer_pencil; this.tsmiRectangleAnnotate.Name = "tsmiRectangleAnnotate"; - resources.ApplyResources(this.tsmiRectangleAnnotate, "tsmiRectangleAnnotate"); this.tsmiRectangleAnnotate.Click += new System.EventHandler(this.tsmiRectangleAnnotate_Click); // // tsmiRectangleLight // + resources.ApplyResources(this.tsmiRectangleLight, "tsmiRectangleLight"); this.tsmiRectangleLight.Image = global::ShareX.Properties.Resources.Rectangle; this.tsmiRectangleLight.Name = "tsmiRectangleLight"; - resources.ApplyResources(this.tsmiRectangleLight, "tsmiRectangleLight"); this.tsmiRectangleLight.Click += new System.EventHandler(this.tsmiRectangleLight_Click); // // tsmiRectangleTransparent // + resources.ApplyResources(this.tsmiRectangleTransparent, "tsmiRectangleTransparent"); this.tsmiRectangleTransparent.Image = global::ShareX.Properties.Resources.layer_transparent; this.tsmiRectangleTransparent.Name = "tsmiRectangleTransparent"; - resources.ApplyResources(this.tsmiRectangleTransparent, "tsmiRectangleTransparent"); this.tsmiRectangleTransparent.Click += new System.EventHandler(this.tsmiRectangleTransparent_Click); // // tsmiRoundedRectangle // + resources.ApplyResources(this.tsmiRoundedRectangle, "tsmiRoundedRectangle"); this.tsmiRoundedRectangle.Image = global::ShareX.Properties.Resources.layer_shape_round; this.tsmiRoundedRectangle.Name = "tsmiRoundedRectangle"; - resources.ApplyResources(this.tsmiRoundedRectangle, "tsmiRoundedRectangle"); this.tsmiRoundedRectangle.Click += new System.EventHandler(this.tsmiRoundedRectangle_Click); // // tsmiEllipse // + resources.ApplyResources(this.tsmiEllipse, "tsmiEllipse"); this.tsmiEllipse.Image = global::ShareX.Properties.Resources.layer_shape_ellipse; this.tsmiEllipse.Name = "tsmiEllipse"; - resources.ApplyResources(this.tsmiEllipse, "tsmiEllipse"); this.tsmiEllipse.Click += new System.EventHandler(this.tsmiEllipse_Click); // // tsmiTriangle // + resources.ApplyResources(this.tsmiTriangle, "tsmiTriangle"); this.tsmiTriangle.Image = global::ShareX.Properties.Resources.Triangle; this.tsmiTriangle.Name = "tsmiTriangle"; - resources.ApplyResources(this.tsmiTriangle, "tsmiTriangle"); this.tsmiTriangle.Click += new System.EventHandler(this.tsmiTriangle_Click); // // tsmiDiamond // + resources.ApplyResources(this.tsmiDiamond, "tsmiDiamond"); this.tsmiDiamond.Image = global::ShareX.Properties.Resources.Diamond; this.tsmiDiamond.Name = "tsmiDiamond"; - resources.ApplyResources(this.tsmiDiamond, "tsmiDiamond"); this.tsmiDiamond.Click += new System.EventHandler(this.tsmiDiamond_Click); // // tsmiPolygon // + resources.ApplyResources(this.tsmiPolygon, "tsmiPolygon"); this.tsmiPolygon.Image = global::ShareX.Properties.Resources.layer_shape_polygon; this.tsmiPolygon.Name = "tsmiPolygon"; - resources.ApplyResources(this.tsmiPolygon, "tsmiPolygon"); this.tsmiPolygon.Click += new System.EventHandler(this.tsmiPolygon_Click); // // tsmiFreeHand // + resources.ApplyResources(this.tsmiFreeHand, "tsmiFreeHand"); this.tsmiFreeHand.Image = global::ShareX.Properties.Resources.layer_shape_curve; this.tsmiFreeHand.Name = "tsmiFreeHand"; - resources.ApplyResources(this.tsmiFreeHand, "tsmiFreeHand"); this.tsmiFreeHand.Click += new System.EventHandler(this.tsmiFreeHand_Click); // // tsmiLastRegion // + resources.ApplyResources(this.tsmiLastRegion, "tsmiLastRegion"); this.tsmiLastRegion.Image = global::ShareX.Properties.Resources.layers_arrange; this.tsmiLastRegion.Name = "tsmiLastRegion"; - resources.ApplyResources(this.tsmiLastRegion, "tsmiLastRegion"); this.tsmiLastRegion.Click += new System.EventHandler(this.tsmiLastRegion_Click); // // tsmiScreenRecordingFFmpeg // + resources.ApplyResources(this.tsmiScreenRecordingFFmpeg, "tsmiScreenRecordingFFmpeg"); this.tsmiScreenRecordingFFmpeg.Image = global::ShareX.Properties.Resources.camcorder_image; this.tsmiScreenRecordingFFmpeg.Name = "tsmiScreenRecordingFFmpeg"; - resources.ApplyResources(this.tsmiScreenRecordingFFmpeg, "tsmiScreenRecordingFFmpeg"); this.tsmiScreenRecordingFFmpeg.Click += new System.EventHandler(this.tsmiScreenRecordingFFmpeg_Click); // // tsmiScreenRecordingGIF // + resources.ApplyResources(this.tsmiScreenRecordingGIF, "tsmiScreenRecordingGIF"); this.tsmiScreenRecordingGIF.Image = global::ShareX.Properties.Resources.film; this.tsmiScreenRecordingGIF.Name = "tsmiScreenRecordingGIF"; - resources.ApplyResources(this.tsmiScreenRecordingGIF, "tsmiScreenRecordingGIF"); this.tsmiScreenRecordingGIF.Click += new System.EventHandler(this.tsmiScreenRecordingGIF_Click); // // tsmiAutoCapture // + resources.ApplyResources(this.tsmiAutoCapture, "tsmiAutoCapture"); this.tsmiAutoCapture.Image = global::ShareX.Properties.Resources.clock; this.tsmiAutoCapture.Name = "tsmiAutoCapture"; - resources.ApplyResources(this.tsmiAutoCapture, "tsmiAutoCapture"); this.tsmiAutoCapture.Click += new System.EventHandler(this.tsmiAutoCapture_Click); // // tsddbUpload // + resources.ApplyResources(this.tsddbUpload, "tsddbUpload"); this.tsddbUpload.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiUploadFile, this.tsmiUploadFolder, @@ -519,52 +522,52 @@ private void InitializeComponent() this.tsmiUploadURL, this.tsmiUploadDragDrop}); this.tsddbUpload.Image = global::ShareX.Properties.Resources.arrow_090; - resources.ApplyResources(this.tsddbUpload, "tsddbUpload"); this.tsddbUpload.Name = "tsddbUpload"; // // tsmiUploadFile // + resources.ApplyResources(this.tsmiUploadFile, "tsmiUploadFile"); this.tsmiUploadFile.Image = global::ShareX.Properties.Resources.folder_open_document; this.tsmiUploadFile.Name = "tsmiUploadFile"; - resources.ApplyResources(this.tsmiUploadFile, "tsmiUploadFile"); this.tsmiUploadFile.Click += new System.EventHandler(this.tsbFileUpload_Click); // // tsmiUploadFolder // + resources.ApplyResources(this.tsmiUploadFolder, "tsmiUploadFolder"); this.tsmiUploadFolder.Image = global::ShareX.Properties.Resources.folder; this.tsmiUploadFolder.Name = "tsmiUploadFolder"; - resources.ApplyResources(this.tsmiUploadFolder, "tsmiUploadFolder"); this.tsmiUploadFolder.Click += new System.EventHandler(this.tsmiUploadFolder_Click); // // tsmiUploadClipboard // + resources.ApplyResources(this.tsmiUploadClipboard, "tsmiUploadClipboard"); this.tsmiUploadClipboard.Image = global::ShareX.Properties.Resources.clipboard; this.tsmiUploadClipboard.Name = "tsmiUploadClipboard"; - resources.ApplyResources(this.tsmiUploadClipboard, "tsmiUploadClipboard"); this.tsmiUploadClipboard.Click += new System.EventHandler(this.tsbClipboardUpload_Click); // // tsmiUploadURL // + resources.ApplyResources(this.tsmiUploadURL, "tsmiUploadURL"); this.tsmiUploadURL.Image = global::ShareX.Properties.Resources.drive; this.tsmiUploadURL.Name = "tsmiUploadURL"; - resources.ApplyResources(this.tsmiUploadURL, "tsmiUploadURL"); this.tsmiUploadURL.Click += new System.EventHandler(this.tsmiUploadURL_Click); // // tsmiUploadDragDrop // + resources.ApplyResources(this.tsmiUploadDragDrop, "tsmiUploadDragDrop"); this.tsmiUploadDragDrop.Image = global::ShareX.Properties.Resources.inbox; this.tsmiUploadDragDrop.Name = "tsmiUploadDragDrop"; - resources.ApplyResources(this.tsmiUploadDragDrop, "tsmiUploadDragDrop"); this.tsmiUploadDragDrop.Click += new System.EventHandler(this.tsbDragDropUpload_Click); // // tsddbWorkflows // - this.tsddbWorkflows.Image = global::ShareX.Properties.Resources.categories; resources.ApplyResources(this.tsddbWorkflows, "tsddbWorkflows"); + this.tsddbWorkflows.Image = global::ShareX.Properties.Resources.categories; this.tsddbWorkflows.Name = "tsddbWorkflows"; // // tsddbTools // + resources.ApplyResources(this.tsddbTools, "tsddbTools"); this.tsddbTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiColorPicker, this.tsmiScreenColorPicker, @@ -580,120 +583,120 @@ private void InitializeComponent() this.tsmiTweetMessage, this.tsmiMonitorTest}); this.tsddbTools.Image = global::ShareX.Properties.Resources.toolbox; - resources.ApplyResources(this.tsddbTools, "tsddbTools"); this.tsddbTools.Name = "tsddbTools"; // // tsmiColorPicker // + resources.ApplyResources(this.tsmiColorPicker, "tsmiColorPicker"); this.tsmiColorPicker.Image = global::ShareX.Properties.Resources.color; this.tsmiColorPicker.Name = "tsmiColorPicker"; - resources.ApplyResources(this.tsmiColorPicker, "tsmiColorPicker"); this.tsmiColorPicker.Click += new System.EventHandler(this.tsmiColorPicker_Click); // // tsmiScreenColorPicker // + resources.ApplyResources(this.tsmiScreenColorPicker, "tsmiScreenColorPicker"); this.tsmiScreenColorPicker.Image = global::ShareX.Properties.Resources.pipette; this.tsmiScreenColorPicker.Name = "tsmiScreenColorPicker"; - resources.ApplyResources(this.tsmiScreenColorPicker, "tsmiScreenColorPicker"); this.tsmiScreenColorPicker.Click += new System.EventHandler(this.tsmiScreenColorPicker_Click); // // tsmiImageEditor // + resources.ApplyResources(this.tsmiImageEditor, "tsmiImageEditor"); this.tsmiImageEditor.Image = global::ShareX.Properties.Resources.image_pencil; this.tsmiImageEditor.Name = "tsmiImageEditor"; - resources.ApplyResources(this.tsmiImageEditor, "tsmiImageEditor"); this.tsmiImageEditor.Click += new System.EventHandler(this.tsmiImageEditor_Click); // // tsmiImageEffects // + resources.ApplyResources(this.tsmiImageEffects, "tsmiImageEffects"); this.tsmiImageEffects.Image = global::ShareX.Properties.Resources.image_saturation; this.tsmiImageEffects.Name = "tsmiImageEffects"; - resources.ApplyResources(this.tsmiImageEffects, "tsmiImageEffects"); this.tsmiImageEffects.Click += new System.EventHandler(this.tsmiImageEffects_Click); // // tsmiHashCheck // + resources.ApplyResources(this.tsmiHashCheck, "tsmiHashCheck"); this.tsmiHashCheck.Image = global::ShareX.Properties.Resources.application_task; this.tsmiHashCheck.Name = "tsmiHashCheck"; - resources.ApplyResources(this.tsmiHashCheck, "tsmiHashCheck"); this.tsmiHashCheck.Click += new System.EventHandler(this.tsmiHashCheck_Click); // // tsmiDNSChanger // + resources.ApplyResources(this.tsmiDNSChanger, "tsmiDNSChanger"); this.tsmiDNSChanger.Image = global::ShareX.Properties.Resources.network_ip; this.tsmiDNSChanger.Name = "tsmiDNSChanger"; - resources.ApplyResources(this.tsmiDNSChanger, "tsmiDNSChanger"); this.tsmiDNSChanger.Click += new System.EventHandler(this.tsmiDNSChanger_Click); // // tsmiQRCode // + resources.ApplyResources(this.tsmiQRCode, "tsmiQRCode"); this.tsmiQRCode.Image = global::ShareX.Properties.Resources.barcode_2d; this.tsmiQRCode.Name = "tsmiQRCode"; - resources.ApplyResources(this.tsmiQRCode, "tsmiQRCode"); this.tsmiQRCode.Click += new System.EventHandler(this.tsmiQRCode_Click); // // tsmiRuler // + resources.ApplyResources(this.tsmiRuler, "tsmiRuler"); this.tsmiRuler.Image = global::ShareX.Properties.Resources.ruler_triangle; this.tsmiRuler.Name = "tsmiRuler"; - resources.ApplyResources(this.tsmiRuler, "tsmiRuler"); this.tsmiRuler.Click += new System.EventHandler(this.tsmiRuler_Click); // // tsmiAutomate // + resources.ApplyResources(this.tsmiAutomate, "tsmiAutomate"); this.tsmiAutomate.Image = global::ShareX.Properties.Resources.robot; this.tsmiAutomate.Name = "tsmiAutomate"; - resources.ApplyResources(this.tsmiAutomate, "tsmiAutomate"); this.tsmiAutomate.Click += new System.EventHandler(this.tsmiAutomate_Click); // // tsmiIndexFolder // + resources.ApplyResources(this.tsmiIndexFolder, "tsmiIndexFolder"); this.tsmiIndexFolder.Image = global::ShareX.Properties.Resources.folder_tree; this.tsmiIndexFolder.Name = "tsmiIndexFolder"; - resources.ApplyResources(this.tsmiIndexFolder, "tsmiIndexFolder"); this.tsmiIndexFolder.Click += new System.EventHandler(this.tsmiIndexFolder_Click); // // tsmiFTPClient // + resources.ApplyResources(this.tsmiFTPClient, "tsmiFTPClient"); this.tsmiFTPClient.Image = global::ShareX.Properties.Resources.application_network; this.tsmiFTPClient.Name = "tsmiFTPClient"; - resources.ApplyResources(this.tsmiFTPClient, "tsmiFTPClient"); this.tsmiFTPClient.Click += new System.EventHandler(this.tsmiFTPClient_Click); // // tsmiTweetMessage // + resources.ApplyResources(this.tsmiTweetMessage, "tsmiTweetMessage"); this.tsmiTweetMessage.Image = global::ShareX.Properties.Resources.Twitter; this.tsmiTweetMessage.Name = "tsmiTweetMessage"; - resources.ApplyResources(this.tsmiTweetMessage, "tsmiTweetMessage"); this.tsmiTweetMessage.Click += new System.EventHandler(this.tsmiTweetMessage_Click); // // tsmiMonitorTest // + resources.ApplyResources(this.tsmiMonitorTest, "tsmiMonitorTest"); this.tsmiMonitorTest.Image = global::ShareX.Properties.Resources.monitor; this.tsmiMonitorTest.Name = "tsmiMonitorTest"; - resources.ApplyResources(this.tsmiMonitorTest, "tsmiMonitorTest"); this.tsmiMonitorTest.Click += new System.EventHandler(this.tsmiMonitorTest_Click); // // tssMain1 // + resources.ApplyResources(this.tssMain1, "tssMain1"); this.tssMain1.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3); this.tssMain1.Name = "tssMain1"; - resources.ApplyResources(this.tssMain1, "tssMain1"); // // tsddbAfterCaptureTasks // - this.tsddbAfterCaptureTasks.Image = global::ShareX.Properties.Resources.image_export; resources.ApplyResources(this.tsddbAfterCaptureTasks, "tsddbAfterCaptureTasks"); + this.tsddbAfterCaptureTasks.Image = global::ShareX.Properties.Resources.image_export; this.tsddbAfterCaptureTasks.Name = "tsddbAfterCaptureTasks"; // // tsddbAfterUploadTasks // - this.tsddbAfterUploadTasks.Image = global::ShareX.Properties.Resources.upload_cloud; resources.ApplyResources(this.tsddbAfterUploadTasks, "tsddbAfterUploadTasks"); + this.tsddbAfterUploadTasks.Image = global::ShareX.Properties.Resources.upload_cloud; this.tsddbAfterUploadTasks.Name = "tsddbAfterUploadTasks"; // // tsddbDestinations // + resources.ApplyResources(this.tsddbDestinations, "tsddbDestinations"); this.tsddbDestinations.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiImageUploaders, this.tsmiTextUploaders, @@ -703,102 +706,102 @@ private void InitializeComponent() this.tssDestinations1, this.tsmiDestinationSettings}); this.tsddbDestinations.Image = global::ShareX.Properties.Resources.drive_globe; - resources.ApplyResources(this.tsddbDestinations, "tsddbDestinations"); this.tsddbDestinations.Name = "tsddbDestinations"; this.tsddbDestinations.DropDownOpened += new System.EventHandler(this.tsddbDestinations_DropDownOpened); // // tsmiImageUploaders // + resources.ApplyResources(this.tsmiImageUploaders, "tsmiImageUploaders"); this.tsmiImageUploaders.Image = global::ShareX.Properties.Resources.image; this.tsmiImageUploaders.Name = "tsmiImageUploaders"; - resources.ApplyResources(this.tsmiImageUploaders, "tsmiImageUploaders"); // // tsmiTextUploaders // + resources.ApplyResources(this.tsmiTextUploaders, "tsmiTextUploaders"); this.tsmiTextUploaders.Image = global::ShareX.Properties.Resources.notebook; this.tsmiTextUploaders.Name = "tsmiTextUploaders"; - resources.ApplyResources(this.tsmiTextUploaders, "tsmiTextUploaders"); // // tsmiFileUploaders // + resources.ApplyResources(this.tsmiFileUploaders, "tsmiFileUploaders"); this.tsmiFileUploaders.Image = global::ShareX.Properties.Resources.application_block; this.tsmiFileUploaders.Name = "tsmiFileUploaders"; - resources.ApplyResources(this.tsmiFileUploaders, "tsmiFileUploaders"); // // tsmiURLShorteners // + resources.ApplyResources(this.tsmiURLShorteners, "tsmiURLShorteners"); this.tsmiURLShorteners.Image = global::ShareX.Properties.Resources.edit_scale; this.tsmiURLShorteners.Name = "tsmiURLShorteners"; - resources.ApplyResources(this.tsmiURLShorteners, "tsmiURLShorteners"); // // tsmiURLSharingServices // + resources.ApplyResources(this.tsmiURLSharingServices, "tsmiURLSharingServices"); this.tsmiURLSharingServices.Image = global::ShareX.Properties.Resources.globe_share; this.tsmiURLSharingServices.Name = "tsmiURLSharingServices"; - resources.ApplyResources(this.tsmiURLSharingServices, "tsmiURLSharingServices"); // // tssDestinations1 // - this.tssDestinations1.Name = "tssDestinations1"; resources.ApplyResources(this.tssDestinations1, "tssDestinations1"); + this.tssDestinations1.Name = "tssDestinations1"; // // tsmiDestinationSettings // + resources.ApplyResources(this.tsmiDestinationSettings, "tsmiDestinationSettings"); this.tsmiDestinationSettings.Image = global::ShareX.Properties.Resources.globe_pencil; this.tsmiDestinationSettings.Name = "tsmiDestinationSettings"; - resources.ApplyResources(this.tsmiDestinationSettings, "tsmiDestinationSettings"); this.tsmiDestinationSettings.Click += new System.EventHandler(this.tsbDestinationSettings_Click); // // tsbApplicationSettings // - this.tsbApplicationSettings.Image = global::ShareX.Properties.Resources.wrench_screwdriver; resources.ApplyResources(this.tsbApplicationSettings, "tsbApplicationSettings"); + this.tsbApplicationSettings.Image = global::ShareX.Properties.Resources.wrench_screwdriver; this.tsbApplicationSettings.Name = "tsbApplicationSettings"; this.tsbApplicationSettings.Click += new System.EventHandler(this.tsbApplicationSettings_Click); // // tsbTaskSettings // - this.tsbTaskSettings.Image = global::ShareX.Properties.Resources.gear; resources.ApplyResources(this.tsbTaskSettings, "tsbTaskSettings"); + this.tsbTaskSettings.Image = global::ShareX.Properties.Resources.gear; this.tsbTaskSettings.Name = "tsbTaskSettings"; this.tsbTaskSettings.Click += new System.EventHandler(this.tsbTaskSettings_Click); // // tsbHotkeySettings // - this.tsbHotkeySettings.Image = global::ShareX.Properties.Resources.keyboard; resources.ApplyResources(this.tsbHotkeySettings, "tsbHotkeySettings"); + this.tsbHotkeySettings.Image = global::ShareX.Properties.Resources.keyboard; this.tsbHotkeySettings.Name = "tsbHotkeySettings"; this.tsbHotkeySettings.Click += new System.EventHandler(this.tsbHotkeySettings_Click); // // tssMain2 // + resources.ApplyResources(this.tssMain2, "tssMain2"); this.tssMain2.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3); this.tssMain2.Name = "tssMain2"; - resources.ApplyResources(this.tssMain2, "tssMain2"); // // tsbScreenshotsFolder // - this.tsbScreenshotsFolder.Image = global::ShareX.Properties.Resources.folder_open_image; resources.ApplyResources(this.tsbScreenshotsFolder, "tsbScreenshotsFolder"); + this.tsbScreenshotsFolder.Image = global::ShareX.Properties.Resources.folder_open_image; this.tsbScreenshotsFolder.Name = "tsbScreenshotsFolder"; this.tsbScreenshotsFolder.Click += new System.EventHandler(this.tsbScreenshotsFolder_Click); // // tsbHistory // - this.tsbHistory.Image = global::ShareX.Properties.Resources.application_blog; resources.ApplyResources(this.tsbHistory, "tsbHistory"); + this.tsbHistory.Image = global::ShareX.Properties.Resources.application_blog; this.tsbHistory.Name = "tsbHistory"; this.tsbHistory.Click += new System.EventHandler(this.tsbHistory_Click); // // tsbImageHistory // - this.tsbImageHistory.Image = global::ShareX.Properties.Resources.application_icon_large; resources.ApplyResources(this.tsbImageHistory, "tsbImageHistory"); + this.tsbImageHistory.Image = global::ShareX.Properties.Resources.application_icon_large; this.tsbImageHistory.Name = "tsbImageHistory"; this.tsbImageHistory.Click += new System.EventHandler(this.tsbImageHistory_Click); // // tsddbDebug // + resources.ApplyResources(this.tsddbDebug, "tsddbDebug"); this.tsddbDebug.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiShowDebugLog, this.tsmiTestImageUpload, @@ -807,68 +810,68 @@ private void InitializeComponent() this.tsmiTestURLShortener, this.tsmiTestURLSharing}); this.tsddbDebug.Image = global::ShareX.Properties.Resources.traffic_cone; - resources.ApplyResources(this.tsddbDebug, "tsddbDebug"); this.tsddbDebug.Name = "tsddbDebug"; // // tsmiShowDebugLog // + resources.ApplyResources(this.tsmiShowDebugLog, "tsmiShowDebugLog"); this.tsmiShowDebugLog.Image = global::ShareX.Properties.Resources.application_monitor; this.tsmiShowDebugLog.Name = "tsmiShowDebugLog"; - resources.ApplyResources(this.tsmiShowDebugLog, "tsmiShowDebugLog"); this.tsmiShowDebugLog.Click += new System.EventHandler(this.tsmiShowDebugLog_Click); // // tsmiTestImageUpload // + resources.ApplyResources(this.tsmiTestImageUpload, "tsmiTestImageUpload"); this.tsmiTestImageUpload.Image = global::ShareX.Properties.Resources.image; this.tsmiTestImageUpload.Name = "tsmiTestImageUpload"; - resources.ApplyResources(this.tsmiTestImageUpload, "tsmiTestImageUpload"); this.tsmiTestImageUpload.Click += new System.EventHandler(this.tsmiTestImageUpload_Click); // // tsmiTestTextUpload // + resources.ApplyResources(this.tsmiTestTextUpload, "tsmiTestTextUpload"); this.tsmiTestTextUpload.Image = global::ShareX.Properties.Resources.notebook; this.tsmiTestTextUpload.Name = "tsmiTestTextUpload"; - resources.ApplyResources(this.tsmiTestTextUpload, "tsmiTestTextUpload"); this.tsmiTestTextUpload.Click += new System.EventHandler(this.tsmiTestTextUpload_Click); // // tsmiTestFileUpload // + resources.ApplyResources(this.tsmiTestFileUpload, "tsmiTestFileUpload"); this.tsmiTestFileUpload.Image = global::ShareX.Properties.Resources.application_block; this.tsmiTestFileUpload.Name = "tsmiTestFileUpload"; - resources.ApplyResources(this.tsmiTestFileUpload, "tsmiTestFileUpload"); this.tsmiTestFileUpload.Click += new System.EventHandler(this.tsmiTestFileUpload_Click); // // tsmiTestURLShortener // + resources.ApplyResources(this.tsmiTestURLShortener, "tsmiTestURLShortener"); this.tsmiTestURLShortener.Image = global::ShareX.Properties.Resources.edit_scale; this.tsmiTestURLShortener.Name = "tsmiTestURLShortener"; - resources.ApplyResources(this.tsmiTestURLShortener, "tsmiTestURLShortener"); this.tsmiTestURLShortener.Click += new System.EventHandler(this.tsmiTestURLShortener_Click); // // tsmiTestURLSharing // + resources.ApplyResources(this.tsmiTestURLSharing, "tsmiTestURLSharing"); this.tsmiTestURLSharing.Image = global::ShareX.Properties.Resources.globe_share; this.tsmiTestURLSharing.Name = "tsmiTestURLSharing"; - resources.ApplyResources(this.tsmiTestURLSharing, "tsmiTestURLSharing"); this.tsmiTestURLSharing.Click += new System.EventHandler(this.tsmiTestURLSharing_Click); // // tsmiDonate // + resources.ApplyResources(this.tsmiDonate, "tsmiDonate"); this.tsmiDonate.AnimationSpeed = 0.5F; this.tsmiDonate.Image = global::ShareX.Properties.Resources.heart; - resources.ApplyResources(this.tsmiDonate, "tsmiDonate"); this.tsmiDonate.Name = "tsmiDonate"; this.tsmiDonate.Click += new System.EventHandler(this.tsbDonate_Click); // // tsmiAbout // - this.tsmiAbout.Image = global::ShareX.Properties.Resources.crown; resources.ApplyResources(this.tsmiAbout, "tsmiAbout"); + this.tsmiAbout.Image = global::ShareX.Properties.Resources.crown; this.tsmiAbout.Name = "tsmiAbout"; this.tsmiAbout.Click += new System.EventHandler(this.tsbAbout_Click); // // cmsTaskInfo // + resources.ApplyResources(this.cmsTaskInfo, "cmsTaskInfo"); this.cmsTaskInfo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiShowErrors, this.tsmiStopUpload, @@ -886,24 +889,24 @@ private void InitializeComponent() this.tsmiHideMenu, this.tsmiImagePreview}); this.cmsTaskInfo.Name = "cmsHistory"; - resources.ApplyResources(this.cmsTaskInfo, "cmsTaskInfo"); // // tsmiShowErrors // + resources.ApplyResources(this.tsmiShowErrors, "tsmiShowErrors"); this.tsmiShowErrors.Image = global::ShareX.Properties.Resources.exclamation_button; this.tsmiShowErrors.Name = "tsmiShowErrors"; - resources.ApplyResources(this.tsmiShowErrors, "tsmiShowErrors"); this.tsmiShowErrors.Click += new System.EventHandler(this.tsmiShowErrors_Click); // // tsmiStopUpload // + resources.ApplyResources(this.tsmiStopUpload, "tsmiStopUpload"); this.tsmiStopUpload.Image = global::ShareX.Properties.Resources.cross_button; this.tsmiStopUpload.Name = "tsmiStopUpload"; - resources.ApplyResources(this.tsmiStopUpload, "tsmiStopUpload"); this.tsmiStopUpload.Click += new System.EventHandler(this.tsmiStopUpload_Click); // // tsmiOpen // + resources.ApplyResources(this.tsmiOpen, "tsmiOpen"); this.tsmiOpen.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiOpenURL, this.tsmiOpenShortenedURL, @@ -915,57 +918,57 @@ private void InitializeComponent() this.tsmiOpenThumbnailFile}); this.tsmiOpen.Image = global::ShareX.Properties.Resources.folder_open_document; this.tsmiOpen.Name = "tsmiOpen"; - resources.ApplyResources(this.tsmiOpen, "tsmiOpen"); // // tsmiOpenURL // - this.tsmiOpenURL.Name = "tsmiOpenURL"; resources.ApplyResources(this.tsmiOpenURL, "tsmiOpenURL"); + this.tsmiOpenURL.Name = "tsmiOpenURL"; this.tsmiOpenURL.Click += new System.EventHandler(this.tsmiOpenURL_Click); // // tsmiOpenShortenedURL // - this.tsmiOpenShortenedURL.Name = "tsmiOpenShortenedURL"; resources.ApplyResources(this.tsmiOpenShortenedURL, "tsmiOpenShortenedURL"); + this.tsmiOpenShortenedURL.Name = "tsmiOpenShortenedURL"; this.tsmiOpenShortenedURL.Click += new System.EventHandler(this.tsmiOpenShortenedURL_Click); // // tsmiOpenThumbnailURL // - this.tsmiOpenThumbnailURL.Name = "tsmiOpenThumbnailURL"; resources.ApplyResources(this.tsmiOpenThumbnailURL, "tsmiOpenThumbnailURL"); + this.tsmiOpenThumbnailURL.Name = "tsmiOpenThumbnailURL"; this.tsmiOpenThumbnailURL.Click += new System.EventHandler(this.tsmiOpenThumbnailURL_Click); // // tsmiOpenDeletionURL // - this.tsmiOpenDeletionURL.Name = "tsmiOpenDeletionURL"; resources.ApplyResources(this.tsmiOpenDeletionURL, "tsmiOpenDeletionURL"); + this.tsmiOpenDeletionURL.Name = "tsmiOpenDeletionURL"; this.tsmiOpenDeletionURL.Click += new System.EventHandler(this.tsmiOpenDeletionURL_Click); // // tssOpen1 // - this.tssOpen1.Name = "tssOpen1"; resources.ApplyResources(this.tssOpen1, "tssOpen1"); + this.tssOpen1.Name = "tssOpen1"; // // tsmiOpenFile // - this.tsmiOpenFile.Name = "tsmiOpenFile"; resources.ApplyResources(this.tsmiOpenFile, "tsmiOpenFile"); + this.tsmiOpenFile.Name = "tsmiOpenFile"; this.tsmiOpenFile.Click += new System.EventHandler(this.tsmiOpenFile_Click); // // tsmiOpenFolder // - this.tsmiOpenFolder.Name = "tsmiOpenFolder"; resources.ApplyResources(this.tsmiOpenFolder, "tsmiOpenFolder"); + this.tsmiOpenFolder.Name = "tsmiOpenFolder"; this.tsmiOpenFolder.Click += new System.EventHandler(this.tsmiOpenFolder_Click); // // tsmiOpenThumbnailFile // - this.tsmiOpenThumbnailFile.Name = "tsmiOpenThumbnailFile"; resources.ApplyResources(this.tsmiOpenThumbnailFile, "tsmiOpenThumbnailFile"); + this.tsmiOpenThumbnailFile.Name = "tsmiOpenThumbnailFile"; this.tsmiOpenThumbnailFile.Click += new System.EventHandler(this.tsmiOpenThumbnailFile_Click); // // tsmiCopy // + resources.ApplyResources(this.tsmiCopy, "tsmiCopy"); this.tsmiCopy.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiCopyURL, this.tsmiCopyShortenedURL, @@ -993,253 +996,253 @@ private void InitializeComponent() this.tssCopy5}); this.tsmiCopy.Image = global::ShareX.Properties.Resources.document_copy; this.tsmiCopy.Name = "tsmiCopy"; - resources.ApplyResources(this.tsmiCopy, "tsmiCopy"); // // tsmiCopyURL // - this.tsmiCopyURL.Name = "tsmiCopyURL"; resources.ApplyResources(this.tsmiCopyURL, "tsmiCopyURL"); + this.tsmiCopyURL.Name = "tsmiCopyURL"; this.tsmiCopyURL.Click += new System.EventHandler(this.tsmiCopyURL_Click); // // tsmiCopyShortenedURL // - this.tsmiCopyShortenedURL.Name = "tsmiCopyShortenedURL"; resources.ApplyResources(this.tsmiCopyShortenedURL, "tsmiCopyShortenedURL"); + this.tsmiCopyShortenedURL.Name = "tsmiCopyShortenedURL"; this.tsmiCopyShortenedURL.Click += new System.EventHandler(this.tsmiCopyShortenedURL_Click); // // tsmiCopyThumbnailURL // - this.tsmiCopyThumbnailURL.Name = "tsmiCopyThumbnailURL"; resources.ApplyResources(this.tsmiCopyThumbnailURL, "tsmiCopyThumbnailURL"); + this.tsmiCopyThumbnailURL.Name = "tsmiCopyThumbnailURL"; this.tsmiCopyThumbnailURL.Click += new System.EventHandler(this.tsmiCopyThumbnailURL_Click); // // tsmiCopyDeletionURL // - this.tsmiCopyDeletionURL.Name = "tsmiCopyDeletionURL"; resources.ApplyResources(this.tsmiCopyDeletionURL, "tsmiCopyDeletionURL"); + this.tsmiCopyDeletionURL.Name = "tsmiCopyDeletionURL"; this.tsmiCopyDeletionURL.Click += new System.EventHandler(this.tsmiCopyDeletionURL_Click); // // tssCopy1 // - this.tssCopy1.Name = "tssCopy1"; resources.ApplyResources(this.tssCopy1, "tssCopy1"); + this.tssCopy1.Name = "tssCopy1"; // // tsmiCopyFile // - this.tsmiCopyFile.Name = "tsmiCopyFile"; resources.ApplyResources(this.tsmiCopyFile, "tsmiCopyFile"); + this.tsmiCopyFile.Name = "tsmiCopyFile"; this.tsmiCopyFile.Click += new System.EventHandler(this.tsmiCopyFile_Click); // // tsmiCopyImage // - this.tsmiCopyImage.Name = "tsmiCopyImage"; resources.ApplyResources(this.tsmiCopyImage, "tsmiCopyImage"); + this.tsmiCopyImage.Name = "tsmiCopyImage"; this.tsmiCopyImage.Click += new System.EventHandler(this.tsmiCopyImage_Click); // // tsmiCopyText // - this.tsmiCopyText.Name = "tsmiCopyText"; resources.ApplyResources(this.tsmiCopyText, "tsmiCopyText"); + this.tsmiCopyText.Name = "tsmiCopyText"; this.tsmiCopyText.Click += new System.EventHandler(this.tsmiCopyText_Click); // // tsmiCopyThumbnailFile // - this.tsmiCopyThumbnailFile.Name = "tsmiCopyThumbnailFile"; resources.ApplyResources(this.tsmiCopyThumbnailFile, "tsmiCopyThumbnailFile"); + this.tsmiCopyThumbnailFile.Name = "tsmiCopyThumbnailFile"; this.tsmiCopyThumbnailFile.Click += new System.EventHandler(this.tsmiCopyThumbnailFile_Click); // // tsmiCopyThumbnailImage // - this.tsmiCopyThumbnailImage.Name = "tsmiCopyThumbnailImage"; resources.ApplyResources(this.tsmiCopyThumbnailImage, "tsmiCopyThumbnailImage"); + this.tsmiCopyThumbnailImage.Name = "tsmiCopyThumbnailImage"; this.tsmiCopyThumbnailImage.Click += new System.EventHandler(this.tsmiCopyThumbnailImage_Click); // // tssCopy2 // - this.tssCopy2.Name = "tssCopy2"; resources.ApplyResources(this.tssCopy2, "tssCopy2"); + this.tssCopy2.Name = "tssCopy2"; // // tsmiCopyHTMLLink // - this.tsmiCopyHTMLLink.Name = "tsmiCopyHTMLLink"; resources.ApplyResources(this.tsmiCopyHTMLLink, "tsmiCopyHTMLLink"); + this.tsmiCopyHTMLLink.Name = "tsmiCopyHTMLLink"; this.tsmiCopyHTMLLink.Click += new System.EventHandler(this.tsmiCopyHTMLLink_Click); // // tsmiCopyHTMLImage // - this.tsmiCopyHTMLImage.Name = "tsmiCopyHTMLImage"; resources.ApplyResources(this.tsmiCopyHTMLImage, "tsmiCopyHTMLImage"); + this.tsmiCopyHTMLImage.Name = "tsmiCopyHTMLImage"; this.tsmiCopyHTMLImage.Click += new System.EventHandler(this.tsmiCopyHTMLImage_Click); // // tsmiCopyHTMLLinkedImage // - this.tsmiCopyHTMLLinkedImage.Name = "tsmiCopyHTMLLinkedImage"; resources.ApplyResources(this.tsmiCopyHTMLLinkedImage, "tsmiCopyHTMLLinkedImage"); + this.tsmiCopyHTMLLinkedImage.Name = "tsmiCopyHTMLLinkedImage"; this.tsmiCopyHTMLLinkedImage.Click += new System.EventHandler(this.tsmiCopyHTMLLinkedImage_Click); // // tssCopy3 // - this.tssCopy3.Name = "tssCopy3"; resources.ApplyResources(this.tssCopy3, "tssCopy3"); + this.tssCopy3.Name = "tssCopy3"; // // tsmiCopyForumLink // - this.tsmiCopyForumLink.Name = "tsmiCopyForumLink"; resources.ApplyResources(this.tsmiCopyForumLink, "tsmiCopyForumLink"); + this.tsmiCopyForumLink.Name = "tsmiCopyForumLink"; this.tsmiCopyForumLink.Click += new System.EventHandler(this.tsmiCopyForumLink_Click); // // tsmiCopyForumImage // - this.tsmiCopyForumImage.Name = "tsmiCopyForumImage"; resources.ApplyResources(this.tsmiCopyForumImage, "tsmiCopyForumImage"); + this.tsmiCopyForumImage.Name = "tsmiCopyForumImage"; this.tsmiCopyForumImage.Click += new System.EventHandler(this.tsmiCopyForumImage_Click); // // tsmiCopyForumLinkedImage // - this.tsmiCopyForumLinkedImage.Name = "tsmiCopyForumLinkedImage"; resources.ApplyResources(this.tsmiCopyForumLinkedImage, "tsmiCopyForumLinkedImage"); + this.tsmiCopyForumLinkedImage.Name = "tsmiCopyForumLinkedImage"; this.tsmiCopyForumLinkedImage.Click += new System.EventHandler(this.tsmiCopyForumLinkedImage_Click); // // tssCopy4 // - this.tssCopy4.Name = "tssCopy4"; resources.ApplyResources(this.tssCopy4, "tssCopy4"); + this.tssCopy4.Name = "tssCopy4"; // // tsmiCopyFilePath // - this.tsmiCopyFilePath.Name = "tsmiCopyFilePath"; resources.ApplyResources(this.tsmiCopyFilePath, "tsmiCopyFilePath"); + this.tsmiCopyFilePath.Name = "tsmiCopyFilePath"; this.tsmiCopyFilePath.Click += new System.EventHandler(this.tsmiCopyFilePath_Click); // // tsmiCopyFileName // - this.tsmiCopyFileName.Name = "tsmiCopyFileName"; resources.ApplyResources(this.tsmiCopyFileName, "tsmiCopyFileName"); + this.tsmiCopyFileName.Name = "tsmiCopyFileName"; this.tsmiCopyFileName.Click += new System.EventHandler(this.tsmiCopyFileName_Click); // // tsmiCopyFileNameWithExtension // - this.tsmiCopyFileNameWithExtension.Name = "tsmiCopyFileNameWithExtension"; resources.ApplyResources(this.tsmiCopyFileNameWithExtension, "tsmiCopyFileNameWithExtension"); + this.tsmiCopyFileNameWithExtension.Name = "tsmiCopyFileNameWithExtension"; this.tsmiCopyFileNameWithExtension.Click += new System.EventHandler(this.tsmiCopyFileNameWithExtension_Click); // // tsmiCopyFolder // - this.tsmiCopyFolder.Name = "tsmiCopyFolder"; resources.ApplyResources(this.tsmiCopyFolder, "tsmiCopyFolder"); + this.tsmiCopyFolder.Name = "tsmiCopyFolder"; this.tsmiCopyFolder.Click += new System.EventHandler(this.tsmiCopyFolder_Click); // // tssCopy5 // - this.tssCopy5.Name = "tssCopy5"; resources.ApplyResources(this.tssCopy5, "tssCopy5"); + this.tssCopy5.Name = "tssCopy5"; // // tsmiUploadSelectedFile // + resources.ApplyResources(this.tsmiUploadSelectedFile, "tsmiUploadSelectedFile"); this.tsmiUploadSelectedFile.Image = global::ShareX.Properties.Resources.arrow_090; this.tsmiUploadSelectedFile.Name = "tsmiUploadSelectedFile"; - resources.ApplyResources(this.tsmiUploadSelectedFile, "tsmiUploadSelectedFile"); this.tsmiUploadSelectedFile.Click += new System.EventHandler(this.tsmiUploadSelectedFile_Click); // // tsmiEditSelectedFile // + resources.ApplyResources(this.tsmiEditSelectedFile, "tsmiEditSelectedFile"); this.tsmiEditSelectedFile.Image = global::ShareX.Properties.Resources.image_pencil; this.tsmiEditSelectedFile.Name = "tsmiEditSelectedFile"; - resources.ApplyResources(this.tsmiEditSelectedFile, "tsmiEditSelectedFile"); this.tsmiEditSelectedFile.Click += new System.EventHandler(this.tsmiEditSelectedFile_Click); // // tsmiDeleteSelectedFile // + resources.ApplyResources(this.tsmiDeleteSelectedFile, "tsmiDeleteSelectedFile"); this.tsmiDeleteSelectedFile.Image = global::ShareX.Properties.Resources.bin; this.tsmiDeleteSelectedFile.Name = "tsmiDeleteSelectedFile"; - resources.ApplyResources(this.tsmiDeleteSelectedFile, "tsmiDeleteSelectedFile"); this.tsmiDeleteSelectedFile.Click += new System.EventHandler(this.tsmiDeleteSelectedFile_Click); // // tsmiShortenSelectedURL // + resources.ApplyResources(this.tsmiShortenSelectedURL, "tsmiShortenSelectedURL"); this.tsmiShortenSelectedURL.Image = global::ShareX.Properties.Resources.edit_scale; this.tsmiShortenSelectedURL.Name = "tsmiShortenSelectedURL"; - resources.ApplyResources(this.tsmiShortenSelectedURL, "tsmiShortenSelectedURL"); // // tsmiShareSelectedURL // + resources.ApplyResources(this.tsmiShareSelectedURL, "tsmiShareSelectedURL"); this.tsmiShareSelectedURL.Image = global::ShareX.Properties.Resources.globe_share; this.tsmiShareSelectedURL.Name = "tsmiShareSelectedURL"; - resources.ApplyResources(this.tsmiShareSelectedURL, "tsmiShareSelectedURL"); // // tsmiShowQRCode // + resources.ApplyResources(this.tsmiShowQRCode, "tsmiShowQRCode"); this.tsmiShowQRCode.Image = global::ShareX.Properties.Resources.barcode_2d; this.tsmiShowQRCode.Name = "tsmiShowQRCode"; - resources.ApplyResources(this.tsmiShowQRCode, "tsmiShowQRCode"); this.tsmiShowQRCode.Click += new System.EventHandler(this.tsmiShowQRCode_Click); // // tsmiShowResponse // + resources.ApplyResources(this.tsmiShowResponse, "tsmiShowResponse"); this.tsmiShowResponse.Image = global::ShareX.Properties.Resources.application_browser; this.tsmiShowResponse.Name = "tsmiShowResponse"; - resources.ApplyResources(this.tsmiShowResponse, "tsmiShowResponse"); this.tsmiShowResponse.Click += new System.EventHandler(this.tsmiShowResponse_Click); // // tsmiClearList // + resources.ApplyResources(this.tsmiClearList, "tsmiClearList"); this.tsmiClearList.Image = global::ShareX.Properties.Resources.eraser; this.tsmiClearList.Name = "tsmiClearList"; - resources.ApplyResources(this.tsmiClearList, "tsmiClearList"); this.tsmiClearList.Click += new System.EventHandler(this.tsmiClearList_Click); // // tssUploadInfo1 // - this.tssUploadInfo1.Name = "tssUploadInfo1"; resources.ApplyResources(this.tssUploadInfo1, "tssUploadInfo1"); + this.tssUploadInfo1.Name = "tssUploadInfo1"; // // tsmiHideMenu // + resources.ApplyResources(this.tsmiHideMenu, "tsmiHideMenu"); this.tsmiHideMenu.Image = global::ShareX.Properties.Resources.layout_select_sidebar; this.tsmiHideMenu.Name = "tsmiHideMenu"; - resources.ApplyResources(this.tsmiHideMenu, "tsmiHideMenu"); this.tsmiHideMenu.Click += new System.EventHandler(this.tsmiHideMenu_Click); // // tsmiImagePreview // + resources.ApplyResources(this.tsmiImagePreview, "tsmiImagePreview"); this.tsmiImagePreview.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiImagePreviewShow, this.tsmiImagePreviewHide, this.tsmiImagePreviewAutomatic}); this.tsmiImagePreview.Image = global::ShareX.Properties.Resources.layout_select_content; this.tsmiImagePreview.Name = "tsmiImagePreview"; - resources.ApplyResources(this.tsmiImagePreview, "tsmiImagePreview"); // // tsmiImagePreviewShow // + resources.ApplyResources(this.tsmiImagePreviewShow, "tsmiImagePreviewShow"); this.tsmiImagePreviewShow.Checked = true; this.tsmiImagePreviewShow.CheckState = System.Windows.Forms.CheckState.Checked; this.tsmiImagePreviewShow.Name = "tsmiImagePreviewShow"; - resources.ApplyResources(this.tsmiImagePreviewShow, "tsmiImagePreviewShow"); this.tsmiImagePreviewShow.Click += new System.EventHandler(this.tsmiImagePreviewShow_Click); // // tsmiImagePreviewHide // - this.tsmiImagePreviewHide.Name = "tsmiImagePreviewHide"; resources.ApplyResources(this.tsmiImagePreviewHide, "tsmiImagePreviewHide"); + this.tsmiImagePreviewHide.Name = "tsmiImagePreviewHide"; this.tsmiImagePreviewHide.Click += new System.EventHandler(this.tsmiImagePreviewHide_Click); // // tsmiImagePreviewAutomatic // - this.tsmiImagePreviewAutomatic.Name = "tsmiImagePreviewAutomatic"; resources.ApplyResources(this.tsmiImagePreviewAutomatic, "tsmiImagePreviewAutomatic"); + this.tsmiImagePreviewAutomatic.Name = "tsmiImagePreviewAutomatic"; this.tsmiImagePreviewAutomatic.Click += new System.EventHandler(this.tsmiImagePreviewAutomatic_Click); // // niTray // - this.niTray.ContextMenuStrip = this.cmsTray; resources.ApplyResources(this.niTray, "niTray"); + this.niTray.ContextMenuStrip = this.cmsTray; this.niTray.BalloonTipClicked += new System.EventHandler(this.niTray_BalloonTipClicked); this.niTray.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.niTray_MouseDoubleClick); this.niTray.MouseUp += new System.Windows.Forms.MouseEventHandler(this.niTray_MouseUp); // // cmsTray // + resources.ApplyResources(this.cmsTray, "cmsTray"); this.cmsTray.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiTrayCapture, this.tsmiTrayUpload, @@ -1263,11 +1266,11 @@ private void InitializeComponent() this.tsmiTrayShow, this.tsmiTrayExit}); this.cmsTray.Name = "cmsTray"; - resources.ApplyResources(this.cmsTray, "cmsTray"); this.cmsTray.Opened += new System.EventHandler(this.cmsTray_Opened); // // tsmiTrayCapture // + resources.ApplyResources(this.tsmiTrayCapture, "tsmiTrayCapture"); this.tsmiTrayCapture.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiTrayFullscreen, this.tsmiTrayWindow, @@ -1289,135 +1292,135 @@ private void InitializeComponent() this.tsmiTrayAutoCapture}); this.tsmiTrayCapture.Image = global::ShareX.Properties.Resources.camera; this.tsmiTrayCapture.Name = "tsmiTrayCapture"; - resources.ApplyResources(this.tsmiTrayCapture, "tsmiTrayCapture"); this.tsmiTrayCapture.DropDownOpening += new System.EventHandler(this.tsmiCapture_DropDownOpening); // // tsmiTrayFullscreen // + resources.ApplyResources(this.tsmiTrayFullscreen, "tsmiTrayFullscreen"); this.tsmiTrayFullscreen.Image = global::ShareX.Properties.Resources.layer; this.tsmiTrayFullscreen.Name = "tsmiTrayFullscreen"; - resources.ApplyResources(this.tsmiTrayFullscreen, "tsmiTrayFullscreen"); this.tsmiTrayFullscreen.Click += new System.EventHandler(this.tsmiTrayFullscreen_Click); // // tsmiTrayWindow // + resources.ApplyResources(this.tsmiTrayWindow, "tsmiTrayWindow"); this.tsmiTrayWindow.Image = global::ShareX.Properties.Resources.application_blue; this.tsmiTrayWindow.Name = "tsmiTrayWindow"; - resources.ApplyResources(this.tsmiTrayWindow, "tsmiTrayWindow"); // // tsmiTrayMonitor // + resources.ApplyResources(this.tsmiTrayMonitor, "tsmiTrayMonitor"); this.tsmiTrayMonitor.Image = global::ShareX.Properties.Resources.monitor; this.tsmiTrayMonitor.Name = "tsmiTrayMonitor"; - resources.ApplyResources(this.tsmiTrayMonitor, "tsmiTrayMonitor"); // // tsmiTrayRectangle // + resources.ApplyResources(this.tsmiTrayRectangle, "tsmiTrayRectangle"); this.tsmiTrayRectangle.Image = global::ShareX.Properties.Resources.layer_shape; this.tsmiTrayRectangle.Name = "tsmiTrayRectangle"; - resources.ApplyResources(this.tsmiTrayRectangle, "tsmiTrayRectangle"); this.tsmiTrayRectangle.Click += new System.EventHandler(this.tsmiTrayRectangle_Click); // // tsmiTrayWindowRectangle // + resources.ApplyResources(this.tsmiTrayWindowRectangle, "tsmiTrayWindowRectangle"); this.tsmiTrayWindowRectangle.Image = global::ShareX.Properties.Resources.layers_ungroup; this.tsmiTrayWindowRectangle.Name = "tsmiTrayWindowRectangle"; - resources.ApplyResources(this.tsmiTrayWindowRectangle, "tsmiTrayWindowRectangle"); this.tsmiTrayWindowRectangle.Click += new System.EventHandler(this.tsmiTrayWindowRectangle_Click); // // tsmiTrayRectangleAnnotate // + resources.ApplyResources(this.tsmiTrayRectangleAnnotate, "tsmiTrayRectangleAnnotate"); this.tsmiTrayRectangleAnnotate.Image = global::ShareX.Properties.Resources.layer_pencil; this.tsmiTrayRectangleAnnotate.Name = "tsmiTrayRectangleAnnotate"; - resources.ApplyResources(this.tsmiTrayRectangleAnnotate, "tsmiTrayRectangleAnnotate"); this.tsmiTrayRectangleAnnotate.Click += new System.EventHandler(this.tsmiTrayRectangleAnnotate_Click); // // tsmiTrayRectangleLight // + resources.ApplyResources(this.tsmiTrayRectangleLight, "tsmiTrayRectangleLight"); this.tsmiTrayRectangleLight.Image = global::ShareX.Properties.Resources.Rectangle; this.tsmiTrayRectangleLight.Name = "tsmiTrayRectangleLight"; - resources.ApplyResources(this.tsmiTrayRectangleLight, "tsmiTrayRectangleLight"); this.tsmiTrayRectangleLight.Click += new System.EventHandler(this.tsmiTrayRectangleLight_Click); // // tsmiTrayRectangleTransparent // + resources.ApplyResources(this.tsmiTrayRectangleTransparent, "tsmiTrayRectangleTransparent"); this.tsmiTrayRectangleTransparent.Image = global::ShareX.Properties.Resources.layer_transparent; this.tsmiTrayRectangleTransparent.Name = "tsmiTrayRectangleTransparent"; - resources.ApplyResources(this.tsmiTrayRectangleTransparent, "tsmiTrayRectangleTransparent"); this.tsmiTrayRectangleTransparent.Click += new System.EventHandler(this.tsmiTrayRectangleTransparent_Click); // // tsmiTrayRoundedRectangle // + resources.ApplyResources(this.tsmiTrayRoundedRectangle, "tsmiTrayRoundedRectangle"); this.tsmiTrayRoundedRectangle.Image = global::ShareX.Properties.Resources.layer_shape_round; this.tsmiTrayRoundedRectangle.Name = "tsmiTrayRoundedRectangle"; - resources.ApplyResources(this.tsmiTrayRoundedRectangle, "tsmiTrayRoundedRectangle"); this.tsmiTrayRoundedRectangle.Click += new System.EventHandler(this.tsmiTrayRoundedRectangle_Click); // // tsmiTrayEllipse // + resources.ApplyResources(this.tsmiTrayEllipse, "tsmiTrayEllipse"); this.tsmiTrayEllipse.Image = global::ShareX.Properties.Resources.layer_shape_ellipse; this.tsmiTrayEllipse.Name = "tsmiTrayEllipse"; - resources.ApplyResources(this.tsmiTrayEllipse, "tsmiTrayEllipse"); this.tsmiTrayEllipse.Click += new System.EventHandler(this.tsmiTrayEllipse_Click); // // tsmiTrayTriangle // + resources.ApplyResources(this.tsmiTrayTriangle, "tsmiTrayTriangle"); this.tsmiTrayTriangle.Image = global::ShareX.Properties.Resources.Triangle; this.tsmiTrayTriangle.Name = "tsmiTrayTriangle"; - resources.ApplyResources(this.tsmiTrayTriangle, "tsmiTrayTriangle"); this.tsmiTrayTriangle.Click += new System.EventHandler(this.tsmiTrayTriangle_Click); // // tsmiTrayDiamond // + resources.ApplyResources(this.tsmiTrayDiamond, "tsmiTrayDiamond"); this.tsmiTrayDiamond.Image = global::ShareX.Properties.Resources.Diamond; this.tsmiTrayDiamond.Name = "tsmiTrayDiamond"; - resources.ApplyResources(this.tsmiTrayDiamond, "tsmiTrayDiamond"); this.tsmiTrayDiamond.Click += new System.EventHandler(this.tsmiTrayDiamond_Click); // // tsmiTrayPolygon // + resources.ApplyResources(this.tsmiTrayPolygon, "tsmiTrayPolygon"); this.tsmiTrayPolygon.Image = global::ShareX.Properties.Resources.layer_shape_polygon; this.tsmiTrayPolygon.Name = "tsmiTrayPolygon"; - resources.ApplyResources(this.tsmiTrayPolygon, "tsmiTrayPolygon"); this.tsmiTrayPolygon.Click += new System.EventHandler(this.tsmiTrayPolygon_Click); // // tsmiTrayFreeHand // + resources.ApplyResources(this.tsmiTrayFreeHand, "tsmiTrayFreeHand"); this.tsmiTrayFreeHand.Image = global::ShareX.Properties.Resources.layer_shape_curve; this.tsmiTrayFreeHand.Name = "tsmiTrayFreeHand"; - resources.ApplyResources(this.tsmiTrayFreeHand, "tsmiTrayFreeHand"); this.tsmiTrayFreeHand.Click += new System.EventHandler(this.tsmiTrayFreeHand_Click); // // tsmiTrayLastRegion // + resources.ApplyResources(this.tsmiTrayLastRegion, "tsmiTrayLastRegion"); this.tsmiTrayLastRegion.Image = global::ShareX.Properties.Resources.layers_arrange; this.tsmiTrayLastRegion.Name = "tsmiTrayLastRegion"; - resources.ApplyResources(this.tsmiTrayLastRegion, "tsmiTrayLastRegion"); this.tsmiTrayLastRegion.Click += new System.EventHandler(this.tsmiTrayLastRegion_Click); // // tsmiTrayScreenRecordingFFmpeg // + resources.ApplyResources(this.tsmiTrayScreenRecordingFFmpeg, "tsmiTrayScreenRecordingFFmpeg"); this.tsmiTrayScreenRecordingFFmpeg.Image = global::ShareX.Properties.Resources.camcorder_image; this.tsmiTrayScreenRecordingFFmpeg.Name = "tsmiTrayScreenRecordingFFmpeg"; - resources.ApplyResources(this.tsmiTrayScreenRecordingFFmpeg, "tsmiTrayScreenRecordingFFmpeg"); this.tsmiTrayScreenRecordingFFmpeg.Click += new System.EventHandler(this.tsmiScreenRecordingFFmpeg_Click); // // tsmiTrayScreenRecordingGIF // + resources.ApplyResources(this.tsmiTrayScreenRecordingGIF, "tsmiTrayScreenRecordingGIF"); this.tsmiTrayScreenRecordingGIF.Image = global::ShareX.Properties.Resources.film; this.tsmiTrayScreenRecordingGIF.Name = "tsmiTrayScreenRecordingGIF"; - resources.ApplyResources(this.tsmiTrayScreenRecordingGIF, "tsmiTrayScreenRecordingGIF"); this.tsmiTrayScreenRecordingGIF.Click += new System.EventHandler(this.tsmiScreenRecordingGIF_Click); // // tsmiTrayAutoCapture // + resources.ApplyResources(this.tsmiTrayAutoCapture, "tsmiTrayAutoCapture"); this.tsmiTrayAutoCapture.Image = global::ShareX.Properties.Resources.clock; this.tsmiTrayAutoCapture.Name = "tsmiTrayAutoCapture"; - resources.ApplyResources(this.tsmiTrayAutoCapture, "tsmiTrayAutoCapture"); this.tsmiTrayAutoCapture.Click += new System.EventHandler(this.tsmiAutoCapture_Click); // // tsmiTrayUpload // + resources.ApplyResources(this.tsmiTrayUpload, "tsmiTrayUpload"); this.tsmiTrayUpload.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiTrayUploadFile, this.tsmiTrayUploadFolder, @@ -1426,51 +1429,51 @@ private void InitializeComponent() this.tsmiTrayUploadDragDrop}); this.tsmiTrayUpload.Image = global::ShareX.Properties.Resources.arrow_090; this.tsmiTrayUpload.Name = "tsmiTrayUpload"; - resources.ApplyResources(this.tsmiTrayUpload, "tsmiTrayUpload"); // // tsmiTrayUploadFile // + resources.ApplyResources(this.tsmiTrayUploadFile, "tsmiTrayUploadFile"); this.tsmiTrayUploadFile.Image = global::ShareX.Properties.Resources.folder_open_document; this.tsmiTrayUploadFile.Name = "tsmiTrayUploadFile"; - resources.ApplyResources(this.tsmiTrayUploadFile, "tsmiTrayUploadFile"); this.tsmiTrayUploadFile.Click += new System.EventHandler(this.tsbFileUpload_Click); // // tsmiTrayUploadFolder // + resources.ApplyResources(this.tsmiTrayUploadFolder, "tsmiTrayUploadFolder"); this.tsmiTrayUploadFolder.Image = global::ShareX.Properties.Resources.folder; this.tsmiTrayUploadFolder.Name = "tsmiTrayUploadFolder"; - resources.ApplyResources(this.tsmiTrayUploadFolder, "tsmiTrayUploadFolder"); this.tsmiTrayUploadFolder.Click += new System.EventHandler(this.tsmiUploadFolder_Click); // // tsmiTrayUploadClipboard // + resources.ApplyResources(this.tsmiTrayUploadClipboard, "tsmiTrayUploadClipboard"); this.tsmiTrayUploadClipboard.Image = global::ShareX.Properties.Resources.clipboard; this.tsmiTrayUploadClipboard.Name = "tsmiTrayUploadClipboard"; - resources.ApplyResources(this.tsmiTrayUploadClipboard, "tsmiTrayUploadClipboard"); this.tsmiTrayUploadClipboard.Click += new System.EventHandler(this.tsbClipboardUpload_Click); // // tsmiTrayUploadURL // + resources.ApplyResources(this.tsmiTrayUploadURL, "tsmiTrayUploadURL"); this.tsmiTrayUploadURL.Image = global::ShareX.Properties.Resources.drive; this.tsmiTrayUploadURL.Name = "tsmiTrayUploadURL"; - resources.ApplyResources(this.tsmiTrayUploadURL, "tsmiTrayUploadURL"); this.tsmiTrayUploadURL.Click += new System.EventHandler(this.tsmiUploadURL_Click); // // tsmiTrayUploadDragDrop // + resources.ApplyResources(this.tsmiTrayUploadDragDrop, "tsmiTrayUploadDragDrop"); this.tsmiTrayUploadDragDrop.Image = global::ShareX.Properties.Resources.inbox; this.tsmiTrayUploadDragDrop.Name = "tsmiTrayUploadDragDrop"; - resources.ApplyResources(this.tsmiTrayUploadDragDrop, "tsmiTrayUploadDragDrop"); this.tsmiTrayUploadDragDrop.Click += new System.EventHandler(this.tsbDragDropUpload_Click); // // tsmiTrayWorkflows // + resources.ApplyResources(this.tsmiTrayWorkflows, "tsmiTrayWorkflows"); this.tsmiTrayWorkflows.Image = global::ShareX.Properties.Resources.categories; this.tsmiTrayWorkflows.Name = "tsmiTrayWorkflows"; - resources.ApplyResources(this.tsmiTrayWorkflows, "tsmiTrayWorkflows"); // // tsmiTrayTools // + resources.ApplyResources(this.tsmiTrayTools, "tsmiTrayTools"); this.tsmiTrayTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiTrayColorPicker, this.tsmiTrayScreenColorPicker, @@ -1487,118 +1490,118 @@ private void InitializeComponent() this.tsmiTrayMonitorTest}); this.tsmiTrayTools.Image = global::ShareX.Properties.Resources.toolbox; this.tsmiTrayTools.Name = "tsmiTrayTools"; - resources.ApplyResources(this.tsmiTrayTools, "tsmiTrayTools"); // // tsmiTrayColorPicker // + resources.ApplyResources(this.tsmiTrayColorPicker, "tsmiTrayColorPicker"); this.tsmiTrayColorPicker.Image = global::ShareX.Properties.Resources.color; this.tsmiTrayColorPicker.Name = "tsmiTrayColorPicker"; - resources.ApplyResources(this.tsmiTrayColorPicker, "tsmiTrayColorPicker"); this.tsmiTrayColorPicker.Click += new System.EventHandler(this.tsmiColorPicker_Click); // // tsmiTrayScreenColorPicker // + resources.ApplyResources(this.tsmiTrayScreenColorPicker, "tsmiTrayScreenColorPicker"); this.tsmiTrayScreenColorPicker.Image = global::ShareX.Properties.Resources.pipette; this.tsmiTrayScreenColorPicker.Name = "tsmiTrayScreenColorPicker"; - resources.ApplyResources(this.tsmiTrayScreenColorPicker, "tsmiTrayScreenColorPicker"); this.tsmiTrayScreenColorPicker.Click += new System.EventHandler(this.tsmiScreenColorPicker_Click); // // tsmiTrayImageEditor // + resources.ApplyResources(this.tsmiTrayImageEditor, "tsmiTrayImageEditor"); this.tsmiTrayImageEditor.Image = global::ShareX.Properties.Resources.image_pencil; this.tsmiTrayImageEditor.Name = "tsmiTrayImageEditor"; - resources.ApplyResources(this.tsmiTrayImageEditor, "tsmiTrayImageEditor"); this.tsmiTrayImageEditor.Click += new System.EventHandler(this.tsmiImageEditor_Click); // // tsmiTrayImageEffects // + resources.ApplyResources(this.tsmiTrayImageEffects, "tsmiTrayImageEffects"); this.tsmiTrayImageEffects.Image = global::ShareX.Properties.Resources.image_saturation; this.tsmiTrayImageEffects.Name = "tsmiTrayImageEffects"; - resources.ApplyResources(this.tsmiTrayImageEffects, "tsmiTrayImageEffects"); this.tsmiTrayImageEffects.Click += new System.EventHandler(this.tsmiImageEffects_Click); // // tsmiTrayHashCheck // + resources.ApplyResources(this.tsmiTrayHashCheck, "tsmiTrayHashCheck"); this.tsmiTrayHashCheck.Image = global::ShareX.Properties.Resources.application_task; this.tsmiTrayHashCheck.Name = "tsmiTrayHashCheck"; - resources.ApplyResources(this.tsmiTrayHashCheck, "tsmiTrayHashCheck"); this.tsmiTrayHashCheck.Click += new System.EventHandler(this.tsmiHashCheck_Click); // // tsmiTrayDNSChanger // + resources.ApplyResources(this.tsmiTrayDNSChanger, "tsmiTrayDNSChanger"); this.tsmiTrayDNSChanger.Image = global::ShareX.Properties.Resources.network_ip; this.tsmiTrayDNSChanger.Name = "tsmiTrayDNSChanger"; - resources.ApplyResources(this.tsmiTrayDNSChanger, "tsmiTrayDNSChanger"); this.tsmiTrayDNSChanger.Click += new System.EventHandler(this.tsmiDNSChanger_Click); // // tsmiTrayQRCode // + resources.ApplyResources(this.tsmiTrayQRCode, "tsmiTrayQRCode"); this.tsmiTrayQRCode.Image = global::ShareX.Properties.Resources.barcode_2d; this.tsmiTrayQRCode.Name = "tsmiTrayQRCode"; - resources.ApplyResources(this.tsmiTrayQRCode, "tsmiTrayQRCode"); this.tsmiTrayQRCode.Click += new System.EventHandler(this.tsmiQRCode_Click); // // tsmiTrayRuler // + resources.ApplyResources(this.tsmiTrayRuler, "tsmiTrayRuler"); this.tsmiTrayRuler.Image = global::ShareX.Properties.Resources.ruler_triangle; this.tsmiTrayRuler.Name = "tsmiTrayRuler"; - resources.ApplyResources(this.tsmiTrayRuler, "tsmiTrayRuler"); this.tsmiTrayRuler.Click += new System.EventHandler(this.tsmiRuler_Click); // // tsmiTrayAutomate // + resources.ApplyResources(this.tsmiTrayAutomate, "tsmiTrayAutomate"); this.tsmiTrayAutomate.Image = global::ShareX.Properties.Resources.robot; this.tsmiTrayAutomate.Name = "tsmiTrayAutomate"; - resources.ApplyResources(this.tsmiTrayAutomate, "tsmiTrayAutomate"); this.tsmiTrayAutomate.Click += new System.EventHandler(this.tsmiAutomate_Click); // // tsmiTrayIndexFolder // + resources.ApplyResources(this.tsmiTrayIndexFolder, "tsmiTrayIndexFolder"); this.tsmiTrayIndexFolder.Image = global::ShareX.Properties.Resources.folder_tree; this.tsmiTrayIndexFolder.Name = "tsmiTrayIndexFolder"; - resources.ApplyResources(this.tsmiTrayIndexFolder, "tsmiTrayIndexFolder"); this.tsmiTrayIndexFolder.Click += new System.EventHandler(this.tsmiIndexFolder_Click); // // tsmiTrayFTPClient // + resources.ApplyResources(this.tsmiTrayFTPClient, "tsmiTrayFTPClient"); this.tsmiTrayFTPClient.Image = global::ShareX.Properties.Resources.application_network; this.tsmiTrayFTPClient.Name = "tsmiTrayFTPClient"; - resources.ApplyResources(this.tsmiTrayFTPClient, "tsmiTrayFTPClient"); this.tsmiTrayFTPClient.Click += new System.EventHandler(this.tsmiFTPClient_Click); // // tsmiTrayTweetMessage // + resources.ApplyResources(this.tsmiTrayTweetMessage, "tsmiTrayTweetMessage"); this.tsmiTrayTweetMessage.Image = global::ShareX.Properties.Resources.Twitter; this.tsmiTrayTweetMessage.Name = "tsmiTrayTweetMessage"; - resources.ApplyResources(this.tsmiTrayTweetMessage, "tsmiTrayTweetMessage"); this.tsmiTrayTweetMessage.Click += new System.EventHandler(this.tsmiTweetMessage_Click); // // tsmiTrayMonitorTest // + resources.ApplyResources(this.tsmiTrayMonitorTest, "tsmiTrayMonitorTest"); this.tsmiTrayMonitorTest.Image = global::ShareX.Properties.Resources.monitor; this.tsmiTrayMonitorTest.Name = "tsmiTrayMonitorTest"; - resources.ApplyResources(this.tsmiTrayMonitorTest, "tsmiTrayMonitorTest"); this.tsmiTrayMonitorTest.Click += new System.EventHandler(this.tsmiMonitorTest_Click); // // tssTray1 // - this.tssTray1.Name = "tssTray1"; resources.ApplyResources(this.tssTray1, "tssTray1"); + this.tssTray1.Name = "tssTray1"; // // tsmiTrayAfterCaptureTasks // + resources.ApplyResources(this.tsmiTrayAfterCaptureTasks, "tsmiTrayAfterCaptureTasks"); this.tsmiTrayAfterCaptureTasks.Image = global::ShareX.Properties.Resources.image_export; this.tsmiTrayAfterCaptureTasks.Name = "tsmiTrayAfterCaptureTasks"; - resources.ApplyResources(this.tsmiTrayAfterCaptureTasks, "tsmiTrayAfterCaptureTasks"); // // tsmiTrayAfterUploadTasks // + resources.ApplyResources(this.tsmiTrayAfterUploadTasks, "tsmiTrayAfterUploadTasks"); this.tsmiTrayAfterUploadTasks.Image = global::ShareX.Properties.Resources.upload_cloud; this.tsmiTrayAfterUploadTasks.Name = "tsmiTrayAfterUploadTasks"; - resources.ApplyResources(this.tsmiTrayAfterUploadTasks, "tsmiTrayAfterUploadTasks"); // // tsmiTrayDestinations // + resources.ApplyResources(this.tsmiTrayDestinations, "tsmiTrayDestinations"); this.tsmiTrayDestinations.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiTrayImageUploaders, this.tsmiTrayTextUploaders, @@ -1609,141 +1612,140 @@ private void InitializeComponent() this.tsmiTrayDestinationSettings}); this.tsmiTrayDestinations.Image = global::ShareX.Properties.Resources.drive_globe; this.tsmiTrayDestinations.Name = "tsmiTrayDestinations"; - resources.ApplyResources(this.tsmiTrayDestinations, "tsmiTrayDestinations"); this.tsmiTrayDestinations.DropDownOpened += new System.EventHandler(this.tsddbDestinations_DropDownOpened); // // tsmiTrayImageUploaders // + resources.ApplyResources(this.tsmiTrayImageUploaders, "tsmiTrayImageUploaders"); this.tsmiTrayImageUploaders.Image = global::ShareX.Properties.Resources.image; this.tsmiTrayImageUploaders.Name = "tsmiTrayImageUploaders"; - resources.ApplyResources(this.tsmiTrayImageUploaders, "tsmiTrayImageUploaders"); // // tsmiTrayTextUploaders // + resources.ApplyResources(this.tsmiTrayTextUploaders, "tsmiTrayTextUploaders"); this.tsmiTrayTextUploaders.Image = global::ShareX.Properties.Resources.notebook; this.tsmiTrayTextUploaders.Name = "tsmiTrayTextUploaders"; - resources.ApplyResources(this.tsmiTrayTextUploaders, "tsmiTrayTextUploaders"); // // tsmiTrayFileUploaders // + resources.ApplyResources(this.tsmiTrayFileUploaders, "tsmiTrayFileUploaders"); this.tsmiTrayFileUploaders.Image = global::ShareX.Properties.Resources.application_block; this.tsmiTrayFileUploaders.Name = "tsmiTrayFileUploaders"; - resources.ApplyResources(this.tsmiTrayFileUploaders, "tsmiTrayFileUploaders"); // // tsmiTrayURLShorteners // + resources.ApplyResources(this.tsmiTrayURLShorteners, "tsmiTrayURLShorteners"); this.tsmiTrayURLShorteners.Image = global::ShareX.Properties.Resources.edit_scale; this.tsmiTrayURLShorteners.Name = "tsmiTrayURLShorteners"; - resources.ApplyResources(this.tsmiTrayURLShorteners, "tsmiTrayURLShorteners"); // // tsmiTrayURLSharingServices // + resources.ApplyResources(this.tsmiTrayURLSharingServices, "tsmiTrayURLSharingServices"); this.tsmiTrayURLSharingServices.Image = global::ShareX.Properties.Resources.globe_share; this.tsmiTrayURLSharingServices.Name = "tsmiTrayURLSharingServices"; - resources.ApplyResources(this.tsmiTrayURLSharingServices, "tsmiTrayURLSharingServices"); // // tssTrayDestinations1 // - this.tssTrayDestinations1.Name = "tssTrayDestinations1"; resources.ApplyResources(this.tssTrayDestinations1, "tssTrayDestinations1"); + this.tssTrayDestinations1.Name = "tssTrayDestinations1"; // // tsmiTrayDestinationSettings // + resources.ApplyResources(this.tsmiTrayDestinationSettings, "tsmiTrayDestinationSettings"); this.tsmiTrayDestinationSettings.Image = global::ShareX.Properties.Resources.globe_pencil; this.tsmiTrayDestinationSettings.Name = "tsmiTrayDestinationSettings"; - resources.ApplyResources(this.tsmiTrayDestinationSettings, "tsmiTrayDestinationSettings"); this.tsmiTrayDestinationSettings.Click += new System.EventHandler(this.tsbDestinationSettings_Click); // // tsmiTrayApplicationSettings // + resources.ApplyResources(this.tsmiTrayApplicationSettings, "tsmiTrayApplicationSettings"); this.tsmiTrayApplicationSettings.Image = global::ShareX.Properties.Resources.wrench_screwdriver; this.tsmiTrayApplicationSettings.Name = "tsmiTrayApplicationSettings"; - resources.ApplyResources(this.tsmiTrayApplicationSettings, "tsmiTrayApplicationSettings"); this.tsmiTrayApplicationSettings.Click += new System.EventHandler(this.tsbApplicationSettings_Click); // // tsmiTrayTaskSettings // + resources.ApplyResources(this.tsmiTrayTaskSettings, "tsmiTrayTaskSettings"); this.tsmiTrayTaskSettings.Image = global::ShareX.Properties.Resources.gear; this.tsmiTrayTaskSettings.Name = "tsmiTrayTaskSettings"; - resources.ApplyResources(this.tsmiTrayTaskSettings, "tsmiTrayTaskSettings"); this.tsmiTrayTaskSettings.Click += new System.EventHandler(this.tsbTaskSettings_Click); // // tsmiTrayHotkeySettings // + resources.ApplyResources(this.tsmiTrayHotkeySettings, "tsmiTrayHotkeySettings"); this.tsmiTrayHotkeySettings.Image = global::ShareX.Properties.Resources.keyboard; this.tsmiTrayHotkeySettings.Name = "tsmiTrayHotkeySettings"; - resources.ApplyResources(this.tsmiTrayHotkeySettings, "tsmiTrayHotkeySettings"); this.tsmiTrayHotkeySettings.Click += new System.EventHandler(this.tsbHotkeySettings_Click); // // tssTray2 // - this.tssTray2.Name = "tssTray2"; resources.ApplyResources(this.tssTray2, "tssTray2"); - // - // tsmiTrayRecentItems - // - this.tsmiTrayRecentItems.Image = global::ShareX.Properties.Resources.clipboard_list; - this.tsmiTrayRecentItems.Name = "tsmiTrayRecentItems"; - resources.ApplyResources(this.tsmiTrayRecentItems, "tsmiTrayRecentItems"); + this.tssTray2.Name = "tssTray2"; // // tsmiScreenshotsFolder // + resources.ApplyResources(this.tsmiScreenshotsFolder, "tsmiScreenshotsFolder"); this.tsmiScreenshotsFolder.Image = global::ShareX.Properties.Resources.folder_open_image; this.tsmiScreenshotsFolder.Name = "tsmiScreenshotsFolder"; - resources.ApplyResources(this.tsmiScreenshotsFolder, "tsmiScreenshotsFolder"); this.tsmiScreenshotsFolder.Click += new System.EventHandler(this.tsbScreenshotsFolder_Click); // // tsmiTrayHistory // + resources.ApplyResources(this.tsmiTrayHistory, "tsmiTrayHistory"); this.tsmiTrayHistory.Image = global::ShareX.Properties.Resources.application_blog; this.tsmiTrayHistory.Name = "tsmiTrayHistory"; - resources.ApplyResources(this.tsmiTrayHistory, "tsmiTrayHistory"); this.tsmiTrayHistory.Click += new System.EventHandler(this.tsbHistory_Click); // // tsmiTrayImageHistory // + resources.ApplyResources(this.tsmiTrayImageHistory, "tsmiTrayImageHistory"); this.tsmiTrayImageHistory.Image = global::ShareX.Properties.Resources.application_icon_large; this.tsmiTrayImageHistory.Name = "tsmiTrayImageHistory"; - resources.ApplyResources(this.tsmiTrayImageHistory, "tsmiTrayImageHistory"); this.tsmiTrayImageHistory.Click += new System.EventHandler(this.tsbImageHistory_Click); // // tsmiTrayDonate // + resources.ApplyResources(this.tsmiTrayDonate, "tsmiTrayDonate"); this.tsmiTrayDonate.Image = global::ShareX.Properties.Resources.heart; this.tsmiTrayDonate.Name = "tsmiTrayDonate"; - resources.ApplyResources(this.tsmiTrayDonate, "tsmiTrayDonate"); this.tsmiTrayDonate.Click += new System.EventHandler(this.tsbDonate_Click); // // tsmiTrayAbout // + resources.ApplyResources(this.tsmiTrayAbout, "tsmiTrayAbout"); this.tsmiTrayAbout.Image = global::ShareX.Properties.Resources.crown; this.tsmiTrayAbout.Name = "tsmiTrayAbout"; - resources.ApplyResources(this.tsmiTrayAbout, "tsmiTrayAbout"); this.tsmiTrayAbout.Click += new System.EventHandler(this.tsbAbout_Click); // // tssTray3 // - this.tssTray3.Name = "tssTray3"; resources.ApplyResources(this.tssTray3, "tssTray3"); + this.tssTray3.Name = "tssTray3"; + // + // tsmiTrayRecentItems + // + resources.ApplyResources(this.tsmiTrayRecentItems, "tsmiTrayRecentItems"); + this.tsmiTrayRecentItems.Image = global::ShareX.Properties.Resources.clipboard_list; + this.tsmiTrayRecentItems.Name = "tsmiTrayRecentItems"; // // tsmiTrayShow // + resources.ApplyResources(this.tsmiTrayShow, "tsmiTrayShow"); this.tsmiTrayShow.Image = global::ShareX.Properties.Resources.tick_button; this.tsmiTrayShow.Name = "tsmiTrayShow"; - resources.ApplyResources(this.tsmiTrayShow, "tsmiTrayShow"); this.tsmiTrayShow.Click += new System.EventHandler(this.tsmiTrayShow_Click); // // tsmiTrayExit // + resources.ApplyResources(this.tsmiTrayExit, "tsmiTrayExit"); this.tsmiTrayExit.Image = global::ShareX.Properties.Resources.cross_button; this.tsmiTrayExit.Name = "tsmiTrayExit"; - resources.ApplyResources(this.tsmiTrayExit, "tsmiTrayExit"); this.tsmiTrayExit.Click += new System.EventHandler(this.tsmiTrayExit_Click); // // MainForm // - this.AllowDrop = true; resources.ApplyResources(this, "$this"); + this.AllowDrop = true; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.scMain); this.Controls.Add(this.tsMain); diff --git a/ShareX/Forms/MainForm.pt-BR.resx b/ShareX/Forms/MainForm.pt-BR.resx index 37ca80279..5ff829494 100644 --- a/ShareX/Forms/MainForm.pt-BR.resx +++ b/ShareX/Forms/MainForm.pt-BR.resx @@ -117,17 +117,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Copiar - - - Após a captura - - - Configurações do aplicativo... - - - Decorrido + + + 232, 0 Nome do arquivo @@ -135,39 +127,1056 @@ Progresso - - Restante - Velocidade - - Status + + Decorrido - - URL + + Restante - - Histórico + + 261, 407 - - História de imagem... + + 602, 407 - - Pasta de screenshots... + + 215, 22 - - Configurações da tarefa... + + Tela Inteira + + + 215, 22 + + + Janela + + + 215, 22 + + + 215, 22 + + + Retangular + + + 215, 22 + + + Retângulo (objetos) + + + 215, 22 + + + Retângulo (anotar)! + + + 215, 22 + + + Retângulo (luz)! + + + 215, 22 + + + Retângulo (transparente). + + + 215, 22 + + + Retângulo arredondado + + + 215, 22 + + + Elipse + + + 215, 22 + + + Triângulo + + + 215, 22 + + + diamante + + + 215, 22 + + + polígonos + + + 215, 22 + + + À mão livre + + + 215, 22 + + + Região + + + 215, 22 + + + Gravação de tela (FFmpeg) + + + 215, 22 + + + Gravação de tela (GIF) + + + 215, 22 + + + Captura de auto... + + + 219, 20 + + + Captura + + + 215, 22 + + + Enviar Arquivos + + + 215, 22 + + + Carregar a pasta... + + + 215, 22 + + + Fazer upload do clipboard + + + 215, 22 + + + Upload de URL... + + + 215, 22 + + + Arrastar e soltar o upload... + + + 219, 20 + + + 219, 20 + + + Fluxos de trabalho + + + 190, 22 + + + Seletor de Cor + + + 190, 22 + + + Tela seletor de cores... + + + 190, 22 + + + Editor de imagem... + + + 190, 22 + + + Efeitos de imagem... + + + 190, 22 + + + Confira + + + 190, 22 + + + Trocador de DNS... + + + 190, 22 + + + Código QR + + + 190, 22 + + + Régua... + + + 190, 22 + + + Automatize... + + + 190, 22 + + + Pasta de índice... + + + 190, 22 + + + Cliente + + + 190, 22 + + + Mensagem do Twitter + + + 190, 22 + + + Monito + + + 219, 20 + + + Ferramentas + + + 219, 6 + + + 219, 20 Após a captura de tarefas + + 219, 20 + Após as tarefas de upload - + + 275, 22 + + + Uploaders imagem + + + 275, 22 + + + Uploaders de texto + + + 275, 22 + + + Uploaders de arquivo + + + 275, 22 + + + Shorteners URL + + + 275, 22 + + + Serviços de compartilhamento de URL + + + 272, 6 + + + 275, 22 + + + Configurações do destino... + + + 219, 20 + + + Destinos + + + 219, 20 + + + Configurações do aplicativo... + + + 219, 20 + + + Configurações da tarefa... + + + 219, 20 + + + Configurações de teclas de atalho... + + + 219, 6 + + + 219, 20 + + + Pasta de screenshots... + + + 219, 20 + + + Histórico + + + 219, 20 + + + História de imagem... + + + 260, 22 + + + Debug log. + + + 260, 22 + + + Enviar Imagem + + + 260, 22 + + + Upload de texto de teste + + + 260, 22 + + + Enviar Arquivo + + + 260, 22 + + + Encurtador de URL + + + 260, 22 + + + Teste de compartilhamento de URL + + + 219, 20 + + + 219, 20 + + + Doar - Precisamos de sua ajuda. + + + 219, 20 + + + dos + + + 232, 407 + + + 231, 22 + + + Mostre erros + + + 231, 22 + + + Upload + + + 169, 22 + + + 169, 22 + + + URL encurtada + + + 169, 22 + + + URL em miniatura + + + 169, 22 + + + URL de exclusão + + + 166, 6 + + + 169, 22 + + + Arquivo + + + 169, 22 + + + Pasta + + + 169, 22 + + + Mostrar detalhes + + + 231, 22 + + + Abrir + + + 264, 22 + + + 264, 22 + + + URL encurtada + + + 264, 22 + + + URL em miniatura! + + + 264, 22 + + + URL de exclusão! + + + 261, 6 + + + 264, 22 + + + Arquivo + + + 264, 22 + + + Imagem: + + + 264, 22 + + + Texto + + + 264, 22 + + + Mostrar detalhes + + + 264, 22 + + + Tamanho da imagem miniatura + + + 261, 6 + + + 264, 22 + + + Link (HTML) + + + 264, 22 + + + Imagem (HTML) + + + 264, 22 + + + Imagem vinculada de HTML + + + 261, 6 + + + 264, 22 + + + Link para forum (BBCode) + + + 264, 22 + + + Imagem para forum (BBCode) + + + 264, 22 + + + Imagem vinculada forum (BBCode)! + + + 261, 6 + + + 264, 22 + + + Caminho do arquivo + + + 264, 22 + + + Nome do arquivo + + + 264, 22 + + + Nome do arquivo com a extensão. + + + 264, 22 + + + Pasta + + + 261, 6 + + + 231, 22 + + + Copiar + + + 231, 22 + + + 231, 22 + + + Editar Imagem + + + 231, 22 + + + Exclua o arquivo localmente... + + + 231, 22 + + + Encurte URL + + + 231, 22 + + + URL de compartilhamento + + + 231, 22 + + + Mostrar Código + + + 231, 22 + + + Mostre a resposta... + + + 231, 22 + + + Limpar lista + + + 228, 6 + + + 231, 22 + + + Esconde menu + + + 137, 22 + + + Exibir + + + 137, 22 + + + Esconder + + + 137, 22 + + + Automático + + + 231, 22 + + + Pré-Visualizar Imagem + + + 232, 318 + + + 215, 22 + + + Tela Inteira + + + 215, 22 + + + Janela + + + 215, 22 + + + 215, 22 + + + Retangular + + + 215, 22 + + + Retângulo (objetos) + + + 215, 22 + + + Retângulo (anotar) + + + 215, 22 + + + Retângulo (luz) + + + 215, 22 + + + Retângulo (transparente) + + + 215, 22 + + + Retângulo arredondado + + + 215, 22 + + + Elipse + + + 215, 22 + + + Triângulo + + + 215, 22 + + + diamante + + + 215, 22 + + + Polígonos + + + 215, 22 + + + À mão livre + + + 215, 22 + + + Região + + + 215, 22 + + + Gravação de tela (FFmpeg) + + + 215, 22 + + + Gravação de tela (GIF) + + + 215, 22 + + + Captura de automático... + + + 261, 22 + + Captura + + 215, 22 + + + Enviar Arquivos + + + 215, 22 + + + Carregar a pasta... + + + 215, 22 + + + Fazer upload do clipboard + + + 215, 22 + + + Upload de URL... + + + 215, 22 + + + Arrastar e soltar o upload... + + + 261, 22 + + + 261, 22 + + + Fluxos de trabalho + + + 190, 22 + + + Seletor de Cor + + + 190, 22 + + + Tela seletor de cores... + + + 190, 22 + + + Editor de imagem... + + + 190, 22 + + + Efeitos de imagem... + + + 190, 22 + + + Confira + + + 190, 22 + + + Trocador de DNS... + + + 190, 22 + + + Código QR + + + 190, 22 + + + Régua... + + + 190, 22 + + + Automatico... + + + 190, 22 + + + Pasta de índice... + + + 190, 22 + + + Cliente + + + 190, 22 + + + Mensagem do Twitter + + + 190, 22 + + + Monito + + + 261, 22 + + + Ferramentas + + + 258, 6 + + + 261, 22 + + + Após a captura + + + 261, 22 + + + Após o upload + + + 275, 22 + + + Uploaders imagem + + + 275, 22 + + + Uploaders de texto + + + 275, 22 + + + Uploaders de arquivo + + + 275, 22 + + + Shorteners URL + + + 275, 22 + + + Serviços de compartilhamento de URL + + + 272, 6 + + + 275, 22 + + + Configurações do destino... + + + 261, 22 + + + Destinos + + + 261, 22 + + + Configurações do aplicativo... + + + 261, 22 + + + Configurações da tarefa... + + + 261, 22 + + + Configurações de teclas de atalho... + + + 258, 6 + + + 261, 22 + + + Pasta de screenshots... + + + 261, 22 + + + Histórico + + + 261, 22 + + + História de imagem... + + + 261, 22 + + + Doar - Precisamos de sua ajuda. + + + 261, 22 + + + Sobre... + + + 258, 6 + + + 261, 22 + + + Links recentes + + + 261, 22 + + + Mostre janela de ShareX + + + 261, 22 + + + Sair + + + 262, 418 + + + URL + + + Status + Debug @@ -177,20 +1186,14 @@ URL - - Tela Inteira + + Monitor URL - - Configurações do aplicativo... - - - Tela Inteira - - - Histórico + + Monitor Upload @@ -198,445 +1201,4 @@ Upload - - Configurações de teclas de atalho... - - - Destinos - - - Ferramentas - - - Fluxos de trabalho - - - dos - - - Captura de auto... - - - Automatize... - - - Limpar lista - - - Seletor de Cor - - - URL de exclusão! - - - Arquivo - - - Nome do arquivo - - - Nome do arquivo com a extensão. - - - Caminho do arquivo - - - Pasta - - - Pasta de screenshots... - - - Captura - - - História de imagem... - - - Configurações da tarefa... - - - Link para forum (BBCode) - - - Imagem para forum (BBCode) - - - Imagem vinculada forum (BBCode)! - - - Imagem (HTML) - - - Link (HTML) - - - Imagem: - - - URL encurtada - - - Texto - - - Mostrar detalhes - - - Tamanho da imagem miniatura - - - URL em miniatura! - - - Exclua o arquivo localmente... - - - Configurações do destino... - - - diamante - - - Trocador de DNS... - - - Doar - Precisamos de sua ajuda. - - - Editar Imagem - - - Elipse - - - Uploaders de arquivo - - - À mão livre - - - Cliente - - - Confira - - - Esconde menu - - - Editor de imagem... - - - Efeitos de imagem... - - - Pré-Visualizar Imagem - - - Automático - - - Esconder - - - Exibir - - - Uploaders imagem - - - URL de exclusão - - - Arquivo - - - Pasta - - - Sobre... - - - Captura de automático... - - - Automatico... - - - Seletor de Cor - - - Destinos - - - Configurações de teclas de atalho... - - - Ferramentas - - - Fluxos de trabalho - - - Pasta de índice... - - - Região - - - Monitor - - - Monito - - - Abrir - - - URL encurtada - - - Mostrar detalhes - - - URL em miniatura - - - polígonos - - - Código QR - - - Retangular - - - Retângulo (anotar)! - - - Retângulo (luz)! - - - Retângulo (transparente). - - - Retângulo arredondado - - - Régua... - - - Tela seletor de cores... - - - Gravação de tela (FFmpeg) - - - Gravação de tela (GIF) - - - Configurações do destino... - - - diamante - - - Trocador de DNS... - - - Doar - Precisamos de sua ajuda. - - - Elipse - - - Uploaders de arquivo - - - À mão livre - - - Cliente - - - Confira - - - Editor de imagem... - - - Efeitos de imagem... - - - Uploaders imagem - - - Imagem vinculada de HTML - - - URL de compartilhamento - - - Encurte URL - - - Mostre a resposta... - - - Mostre erros - - - Upload de texto de teste - - - Teste de compartilhamento de URL - - - Uploaders de texto - - - Após o upload - - - Sair - - - Polígonos - - - Retângulo (anotar) - - - Debug log. - - - Mostrar Código - - - Upload - - - Enviar Imagem - - - Enviar Arquivo - - - Encurtador de URL - - - Pasta de índice... - - - Região - - - Monitor - - - Monito - - - Código QR - - - Retangular - - - Retângulo (luz) - - - Retângulo (transparente) - - - Retângulo arredondado - - - Régua... - - - Tela seletor de cores... - - - Gravação de tela (FFmpeg) - - - Gravação de tela (GIF) - - - Mostre janela de ShareX - - - Links recentes - - - Mensagem do Twitter - - - Arrastar e soltar o upload... - - - Carregar a pasta... - - - Fazer upload do clipboard - - - Upload de URL... - - - Serviços de compartilhamento de URL - - - Shorteners URL - - - Janela - - - Retângulo (objetos) - - - Mensagem do Twitter - - - Arrastar e soltar o upload... - - - Carregar a pasta... - - - Upload de URL... - - - Serviços de compartilhamento de URL - - - Shorteners URL - - - Janela - - - Retângulo (objetos) - - - Uploaders de texto - - - Triângulo - - - Enviar Arquivos - - - Triângulo - - - Fazer upload do clipboard - - - Enviar Arquivos - \ No newline at end of file diff --git a/ShareX/Forms/MainForm.resx b/ShareX/Forms/MainForm.resx index cb6ac23e1..99e94e0ce 100644 --- a/ShareX/Forms/MainForm.resx +++ b/ShareX/Forms/MainForm.resx @@ -117,2572 +117,2572 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - 160, 0 + + 188, 22 - - Top, Bottom, Left, Right + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Microsoft Sans Serif, 14.25pt - - - 8, 40 - - - 10, 0, 10, 0 - - - 320, 344 - - - - 1 - - - lblMainFormTip - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - scMain.Panel1 - - - 0 - - - Left - - - 0, 0 - - - 1, 407 - - - 0 - - - lblSplitter - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - scMain.Panel1 - - - 1 - - - Filename - - - 150 - - - Status - - - Progress - - - 125 - - - Speed - - - 75 - - - Elapsed - - - 45 - - - Remaining - - - 45 - - - URL - - - 145 - - - Fill - - - 0, 0 - - - 335, 407 - - - 2 - - - lvUploads - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - scMain.Panel1 - - - 2 - - - scMain.Panel1 - - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - scMain - - - 0 - - - Fill - - - 0, 0 - - - 333, 407 - - - 0 - - - pbPreview - - - ShareX.HelpersLib.MyPictureBox, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - scMain.Panel2 - - - 0 - - - scMain.Panel2 - - - System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - scMain - - - 1 - - - 674, 407 - - - 335 - - - 6 - - - 1 - - - scMain - - - ShareX.HelpersLib.SplitContainerCustomSplitter, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - $this - - - 2 - - - 17, 17 - - - False - - - Left - - - 217, 22 - - - Fullscreen - - - 217, 22 - - - Window - - - 217, 22 - - - Monitor - - - 217, 22 - - - Rectangle - - - 217, 22 - - - Rectangle (Objects) - - - 217, 22 - - - Rectangle (Annotate) - - - 217, 22 - - - Rectangle (Light) - - - 217, 22 - - - Rectangle (Transparent) - - - 217, 22 - - - Rounded rectangle - - - 217, 22 - - - Ellipse - - - 217, 22 - - - Triangle - - - 217, 22 - - - Diamond - - - 217, 22 - - - Polygon - - - 217, 22 - - - Freehand - - - 217, 22 - - - Last region - - - 217, 22 - - - Screen recording - - - 217, 22 - - - Screen recording (GIF) - - - 217, 22 - - - Auto capture... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Capture - - - 203, 22 - - - Upload file... - - - 203, 22 - - - Upload folder... - - - 203, 22 - - - Upload from clipboard... - - - 203, 22 - - - Upload from URL... - - - 203, 22 - - - Drag and drop upload... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Upload - - - BottomLeft - - - Magenta - - - 147, 20 - - - Workflows - - - 183, 22 - - - Color picker... - - - 183, 22 - - - Screen color picker... - - - 183, 22 - - - Image editor... - - - 183, 22 - - - Image effects... - - - 183, 22 - - - Hash check... - - - 183, 22 - - - DNS changer... - - - 183, 22 - - - QR code... - - - 183, 22 - - - Ruler... - - - 183, 22 - - - Automate... - - - 183, 22 - - - Index folder... - - - 183, 22 - - - FTP client... - - - 183, 22 - - - Tweet message... - - - 183, 22 - - - Monitor test... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Tools - - - 147, 6 - - - MiddleLeft - - - Magenta - - - 147, 20 - - - After capture tasks - - - MiddleLeft - - - Magenta - - - 147, 20 - - - After upload tasks - - - 187, 22 - - - Image uploaders - - - 187, 22 - - - Text uploaders - - - 187, 22 - - - File uploaders - - - 187, 22 - - - URL shorteners - - - 187, 22 - - - URL sharing services - - - 184, 6 - - - 187, 22 - - - Destination settings... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Destinations - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Application settings... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Task settings... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Hotkey settings... - - - 147, 6 - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Screenshots folder... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - History... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Image history... - - - 173, 22 - - - Debug log... - - - 173, 22 - - - Test image upload - - - 173, 22 - - - Test text upload - - - 173, 22 - - - Test file upload - - - 173, 22 - - - Test URL shortener - - - 173, 22 - - - Test URL sharing - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Debug - - - MiddleLeft - - - Magenta - - - 147, 20 - - - Donate... - - - MiddleLeft - - - Magenta - - - 147, 20 - - - About... - - - 0, 0 - - - 6, 6, 6, 6 - - - 160, 407 - - - 1 - - - tsMain - - - System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 3 - - - 286, 17 - - - 172, 22 - - - Show errors - - - 172, 22 - - - Stop upload - - - 156, 22 - - - URL - - - 156, 22 - - - Shortened URL - - - 156, 22 - - - Thumbnail URL - - - 156, 22 - - - Deletion URL - - - 153, 6 - - - 156, 22 - - - File - - - 156, 22 - - - Folder - - - 156, 22 - - - Thumbnail file - - - 172, 22 - - - Open - - - 233, 22 - - - URL - - - 233, 22 - - - Shortened URL - - - 233, 22 - - - Thumbnail URL - - - 233, 22 - - - Deletion URL - - - 230, 6 - - - 233, 22 - - - File - - - 233, 22 - - - Image - - - 233, 22 - - - Text - - - 233, 22 - - - Thumbnail file - - - 233, 22 + + ShareX.HelpersLib.ToolStripButtonColorAnimation, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null Thumbnail image - - 230, 6 - - - 233, 22 - - - HTML link - - - 233, 22 - - - HTML image - - - 233, 22 - - - HTML linked image - - - 230, 6 - - - 233, 22 - - - Forum (BBCode) link - - - 233, 22 - - - Forum (BBCode) image - - - 233, 22 - - - Forum (BBCode) linked image - - - 230, 6 - - - 233, 22 - - - File path - - - 233, 22 - - - File name - - - 233, 22 - - - File name with extension - - - 233, 22 - - - Folder - - - 230, 6 - - - False - - - 172, 22 - - - Copy - - - 172, 22 - - - Upload - - - 172, 22 - - - Edit image... - - - 172, 22 - - - Delete file locally... - - - 172, 22 - - - Shorten URL - - - 172, 22 - - - Share URL - - - 172, 22 - - - Show QR code... - - - 172, 22 - - - Show response... - - - 172, 22 - - - Clear list - - - 169, 6 - - - 172, 22 - - - Hide menu - - - 130, 22 - - - Show - - - 130, 22 - - - Hide - - - 130, 22 - - - Automatic - - - 172, 22 - - - Image preview - - - 173, 318 + + Monitor test... cmsTaskInfo - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Recent links - - 105, 17 - - - 190, 17 - - - 217, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fullscreen - - - 217, 22 - - - Window - - - 217, 22 - - - Monitor - - - 217, 22 - - - Rectangle - - - 217, 22 - - - Rectangle (Objects) - - - 217, 22 - - - Rectangle (Annotate) - - - 217, 22 - - - Rectangle (Light) - - - 217, 22 - - - Rectangle (Transparent) - - - 217, 22 - - - Rounded rectangle - - - 217, 22 - - - Ellipse - - - 217, 22 - - - Triangle - - - 217, 22 - - - Diamond - - - 217, 22 - - - Polygon - - - 217, 22 - - - Freehand - - - 217, 22 - - + Last region - - 217, 22 + + tsmiTrayFullscreen - - Screen recording + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 217, 22 + + + False - - Screen recording (GIF) + + History... - - 217, 22 + + tsmiTrayLastRegion - - Auto capture... + + 145 - + + 183, 22 + + + tsmiTrayColorPicker + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 188, 22 - - Capture + + 147, 20 - - 203, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Upload file... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 203, 22 + + 233, 22 - - Upload folder... + + tsmiCopyThumbnailImage - - 203, 22 + + tsmiCopyHTMLLink - - Upload from clipboard... + + tsmiTrayScreenRecordingFFmpeg - - 203, 22 + + 183, 22 - - Upload from URL... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 203, 22 + + 333, 407 - - Drag and drop upload... + + History... - + + 183, 22 + + + 200, 22 + + + 233, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiUploadFolder + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 173, 22 + + + Rectangle (Objects) + + + Text uploaders + + 188, 22 Upload - - 188, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Workflows + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 183, 22 + + tsmiCopyFilePath - - Color picker... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 183, 22 + + Drag and drop upload... - - Screen color picker... + + tsmiFreeHand - - 183, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Image editor... + + Filename - - 183, 22 - - - Image effects... - - - 183, 22 - - - Hash check... - - - 183, 22 - - - DNS changer... - - - 183, 22 - - - QR code... - - - 183, 22 - - - Ruler... - - - 183, 22 - - - Automate... - - - 183, 22 - - - Index folder... - - - 183, 22 - - - FTP client... - - - 183, 22 - - - Tweet message... - - - 183, 22 - - - Monitor test... - - - 188, 22 - - - Tools - - - 185, 6 - - - 188, 22 - - - After capture - - - 188, 22 - - - After upload - - - 187, 22 - - - Image uploaders - - - 187, 22 - - - Text uploaders - - - 187, 22 - - - File uploaders - - - 187, 22 - - - URL shorteners - - - 187, 22 - - - URL sharing services - - - 184, 6 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 187, 22 - - Destination settings... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 188, 22 + + Hash check... + + + DNS changer... + + + URL shorteners + + + tsmiURLSharingServices + + + + Fill + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 169, 6 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Destinations - - 188, 22 + + 200, 22 - - Application settings... + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 188, 22 + + 200, 22 - - Task settings... + + 147, 20 - - 188, 22 + + Auto capture... - - Hotkey settings... + + tsmiTrayRecentItems - - 185, 6 + + 203, 22 - - 188, 22 + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Screenshots folder... + + Debug - - 188, 22 + + 0, 0 - - History... + + tsddbCapture - - 188, 22 + + scMain.Panel2 - - Image history... + + Magenta - - 188, 22 + + 173, 22 - - Donate... + + Shorten URL - - 188, 22 + + tssCopy5 - - About... - - - 185, 6 - - - 188, 22 - - - Recent links - - - False - - - 188, 22 - - - Show ShareX window + + Capture 188, 22 - - Exit + + tsmiRoundedRectangle - - 189, 440 + + 1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 203, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Image effects... + + + Auto capture... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsbTaskSettings + + + 200, 22 + + + 1 + + + Test text upload + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + niTray + + + tsmiDestinationSettings + + + Debug log... + + + 233, 22 + + + 233, 22 + + + tsmiImageEffects + + + tsmiCopyThumbnailURL + + + tsmiWindowRectangle + + + 200, 22 + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 172, 22 + + + Destination settings... + + + chRemaining + + + Magenta + + + $this + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Thumbnail file + + + URL + + + Fullscreen + + + tsmiTestURLSharing + + + tsmiTrayTaskSettings + + + MiddleLeft + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MainForm + + + tsmiTrayPolygon + + + tsmiOpenURL + + + 233, 22 + + + Index folder... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + scMain + + + 187, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tssDestinations1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 233, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiShowErrors + + + 230, 6 + + + lblMainFormTip + + + 172, 22 + + + 187, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Left + + + 0, 0 + + + Screen recording + + + tsbHotkeySettings + + + 188, 22 + + + 188, 22 + + + tsmiTrayShow + + + tsmiTrayUploadDragDrop + + + tsmiTrayScreenRecordingGIF + + + MiddleLeft + + + 183, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiRectangleAnnotate + + + tsmiUploadDragDrop + + + 230, 6 + + + 188, 22 + + + chElapsed + + + tsmiTrayTriangle + + + tsmiTrayUpload + + + tsmiCopyThumbnailFile + + + Open + + + Speed + + + scMain + + + Automate... + + + 183, 22 + + + 188, 22 + + + 230, 6 + + + Screen recording + + + tssCopy4 + + + tsmiTestFileUpload + + + Text uploaders + + + MiddleLeft + + + 188, 22 + + + tsmiOpenFolder + + + Ellipse + + + Rectangle (Transparent) + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 6 + + + FTP client... + + + 674, 407 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Upload + + + tssCopy3 + + + FTP client... + + + Image uploaders + + + scMain.Panel1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + URL shorteners + + + tsmiTrayAutoCapture + + + 200, 22 + + + tsmiDeleteSelectedFile + + + tssTray2 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayScreenColorPicker + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 45 + + + Upload from clipboard... + + + tsmiHideMenu + + + Upload from clipboard... + + + tsmiTrayImageHistory + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 188, 22 + + + tssOpen1 + + + tsmiCopyHTMLImage + + + Folder + + + ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + 75 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Magenta + + + 153, 6 + + + tsmiTrayRuler + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rectangle (Annotate) + + + 183, 22 + + + tsmiCopyText + + + 173, 318 + + + 200, 22 + + + 335, 407 + + + 203, 22 + + + 233, 22 + + + Image history... + + + 200, 22 + + + Monitor cmsTray + + 147, 20 + + + tsmiRuler + + + 188, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Screen color picker... + + + False + + + tsmiTrayHashCheck + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiUploadClipboard + + + lblSplitter + + + Donate... + + + 172, 22 + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + URL sharing services + + + 172, 22 + + + tsmiIndexFolder + + + 147, 20 + + + After upload tasks + + + File uploaders + + + 156, 22 + + + ShareX + @Invariant + + Task settings... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Screenshots folder... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 233, 22 + + + Show response... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayWindowRectangle + + + Upload file... + + + Automatic + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Image editor... + + + 203, 22 + + + tsmiTrayExit + + + File uploaders + + + 0 + + + Share URL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + tsmiTriangle + + + False + + + tsmiUploadFile + + + Tools + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rounded rectangle + + + File + + + tsmiOpenThumbnailFile + + + 147, 20 + + + 203, 22 + + + 200, 22 + + + Rectangle + + + tsmiOpenShortenedURL + + + tssTrayDestinations1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayCapture + + + 160, 407 + + + tsmiTrayRectangleTransparent + + + tsmiColorPicker + + + 183, 22 + + + tsmiTrayUploadFolder + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Deletion URL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 183, 22 + + + tsmiRectangleLight + + + 1 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiLastRegion + + + Rounded rectangle + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsddbAfterCaptureTasks + + + 184, 6 + + + Triangle + + + tsmiTrayMonitorTest + + + Progress + + + 233, 22 + + + 200, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayAutomate + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 172, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MiddleLeft + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + Upload + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 188, 22 + + + 183, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiShareSelectedURL + + + tsmiQRCode + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayURLShorteners + + + 156, 22 + + + tsmiFileUploaders + + + tsmiOpen + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 233, 22 + + + File + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 834, 407 + + + 1 + + + 200, 22 + + + 203, 22 + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 183, 22 + + + tsmiAutomate + + + Rectangle (Light) + + + tsmiCopyShortenedURL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 172, 22 + + + Tweet message... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 173, 22 + + + tssCopy1 + + + tsbScreenshotsFolder + + + tsmiTextUploaders + + + Image preview + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Screen recording (GIF) + + + tsmiTrayTweetMessage + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 188, 22 + + + tsmiImagePreviewHide + + + DNS changer... + + + tsmiCopyFolder + + + tsmiMonitorTest + + + 188, 22 + + + Magenta + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Destinations + + + $this + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Magenta + + + tsmiScreenColorPicker + + + tsmiTrayRoundedRectangle + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 10, 0, 10, 0 + + + tsmiURLShorteners + + + tsmiTrayUploadClipboard + + + MiddleLeft + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Magenta + + + Microsoft Sans Serif, 14.25pt + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 187, 22 + + + chFilename + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 183, 22 + + + tsmiCopyForumLinkedImage + + + 200, 22 + + + Test URL shortener + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayTools + + + Task settings... + + + Forum (BBCode) linked image + + + tsmiScreenshotsFolder + + + 130, 22 + + + HTML link + + + 200, 22 + + + 187, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rectangle (Annotate) + + + tssCopy2 + + + Fill + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayRectangle + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 147, 20 + + + chProgress + + + Polygon + + + Upload from URL... + + + CenterScreen + + + tsddbDestinations + + + Ruler... + + + QR code... + + + 1, 407 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayQRCode + + + 203, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Magenta + + + Thumbnail URL + + + ShareX.HelpersLib.SplitContainerCustomSplitter, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + 203, 22 + + + 160, 0 + + + 189, 418 + + + 173, 22 + + + 0, 0 + + + 233, 22 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 147, 20 + + + 130, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Show ShareX window + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Folder + + + Edit image... + + + Capture + + + tssUploadInfo1 + + + tsmiRectangleTransparent + + + ShareX.HelpersLib.MyPictureBox, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + Deletion URL + + + Copy + + + chStatus + + + tsmiOpenDeletionURL + + + 183, 22 + + + tsmiTrayImageUploaders + + + Forum (BBCode) link + + + 233, 22 + + + tsmiDiamond + + + tsmiOpenFile + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 183, 22 + + + Delete file locally... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsbApplicationSettings + + + tsmiAbout + + + tsmiImagePreview + + + 125 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 230, 6 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayIndexFolder + + + Polygon + + + Remaining + + + 183, 22 + + + File name + + + 2 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Test file upload + + + tsmiMonitor + + + 183, 22 + + + 172, 22 + + + Magenta + + + Forum (BBCode) image + + + Upload folder... + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Last region + + + Image editor... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rectangle (Transparent) + + + 183, 22 + + + File path + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Monitor test... + + + MiddleLeft + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rectangle + + + 156, 22 + + + 187, 22 + + + 173, 22 + + + 147, 20 + + + 147, 20 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 172, 22 + + + 233, 22 + + + 188, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 203, 22 + + + 0, 0 + + + Elapsed + + + tsmiEllipse + + + 45 + + + Screen recording (GIF) + + + Top, Bottom, Left, Right + + + 188, 22 + + + 200, 22 + + + 147, 20 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Exit + + + 147, 20 + + + Test image upload + + + Shortened URL + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 183, 22 + + + MiddleLeft + + + Magenta + + + 147, 20 + + + 147, 6 + + + 172, 22 + + + 187, 22 + + + pbPreview + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiCopyForumLink + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayDonate + + + 400, 250 + + + Upload file... + + + Magenta + + + 233, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 172, 22 + + + 187, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayHistory + + + tssTray1 + + + Image + + + tsmiRectangle + + + tsmiTrayImageEffects + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 147, 20 + + + tsmiDNSChanger + + + HTML image + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Magenta + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + MiddleLeft + + + tsmiCopyHTMLLinkedImage + + + tsmiTrayAfterCaptureTasks + + + 183, 22 + + + tsmiTrayFTPClient + + + 173, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + lvUploads + + + Workflows + + + tsmiTrayRectangleLight + + + Monitor + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayWorkflows + + + After capture tasks + + + Thumbnail file + + + scMain.Panel1 + + + 200, 22 + + + System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Diamond + + + Ellipse + + + 6, 6, 6, 6 + + + scMain.Panel1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiEditSelectedFile + + + tsmiScreenRecordingGIF + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 0 + + + 183, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayDestinationSettings + + + tsmiFullscreen + + + 200, 22 + + + tsmiCopy + + + 233, 22 + + + tsmiTrayDNSChanger + + + MiddleLeft + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Rectangle (Objects) + + + Rectangle (Light) + + + tsmiTrayDiamond + + + Upload from URL... + + + tsmiCopyFileName + + + tsmiImageEditor + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 156, 22 + ShareX @Invariant + + Test URL sharing + + + tsmiShowDebugLog + + + 200, 22 + + + scMain.Panel1 + + + About... + + + Application settings... + + + tsmiHashCheck + + + Color picker... + + + 172, 22 + + + tsmiTestImageUpload + + + tsmiClearList + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + About... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Status + + + 183, 22 + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + HTML linked image + + + Show QR code... + + + 172, 22 + + + 172, 22 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiImagePreviewShow + + + chURL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MiddleLeft + + + 183, 22 + + + tsmiPolygon + + + Show + + + Hide menu + + + 185, 6 + + + Hide + + + 200, 22 + + + tsmiStopUpload + + + 183, 22 + + + tsmiOpenThumbnailURL + + + Screenshots folder... + + + 233, 22 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 187, 22 + + + tsmiCopyForumImage + + + Automate... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayAbout + + + tsmiUploadURL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Image effects... + + + tsmiTrayWindow + + + Drag and drop upload... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Workflows + + + 185, 6 + + + 172, 22 + + + 200, 22 + + + tsmiTrayEllipse + + + scMain + + + Window + + + Left + + + Upload folder... + + + tsddbTools + + + tsbImageHistory + + + tsmiTrayDestinations + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Screen color picker... + + + Text + + + tsbHistory + + + tsmiWindow + + + 200, 22 + + + System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + scMain.Panel2 + + + Magenta + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 185, 6 + + + tsMain + + + 320, 344 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayUploadFile + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 188, 22 + + + 2 + + + Ruler... + + + Freehand + + + Show errors + + + System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 3 + + + 1 + + + Magenta + + + tsmiScreenRecordingFFmpeg + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MiddleLeft + + + tsmiFTPClient + + + 183, 22 + + + tsmiTrayFileUploaders + + + After capture + + + tsmiTrayTextUploaders + + + tsmiCopyDeletionURL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 147, 20 + + + Color picker... + + + 200, 22 + + + 130, 22 + + + 233, 22 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayRectangleAnnotate + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + Magenta + + + tsmiTestTextUpload + + + 233, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Shortened URL + + + tssTray3 + + + BottomLeft + + + After upload + + + 147, 20 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fullscreen + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 187, 22 + + + tsmiTrayMonitor + + + 6, 13 + + + 200, 22 + + + tsmiCopyFileNameWithExtension + + + Fill + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ShareX.HotkeyForm, ShareX, Version=9.11.0.0, Culture=neutral, PublicKeyToken=null + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Image history... + + + 0 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Triangle + + + 183, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayURLSharingServices + + + 156, 22 + + + Magenta + + + Donate... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 147, 20 + + + Diamond + + + 150 + + + tsmiTrayUploadURL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 230, 6 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 187, 22 + + + URL + + + Tools + + + 200, 22 + + + Hotkey settings... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Thumbnail URL + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiAutoCapture + + + Image uploaders + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 156, 22 + + + tsddbWorkflows + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayHotkeySettings + + + 335 + + + URL sharing services + + + 188, 22 + + + 183, 22 + + + MiddleLeft + + + tsddbAfterUploadTasks + + + 156, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + Magenta + + + tsmiShortenSelectedURL + + + tsmiTrayImageEditor + + + 203, 22 + + + 200, 22 + + + 187, 22 + + + 200, 22 + + + 183, 22 + + + Clear list + + + Application settings... + + + 233, 22 + + + tsmiTrayFreeHand + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tssMain1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiShowResponse + + + System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTweetMessage + + + tsmiTrayApplicationSettings + + + 184, 6 + + + 2 + + + tsmiCopyFile + + + tsmiTestURLShortener + + + chSpeed + + + tsmiUploadSelectedFile + + + 200, 22 + + + tsddbUpload + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiShowQRCode + + + System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + URL + + + 200, 22 + + + tsmiImagePreviewAutomatic + + + File name with extension + + + Tweet message... + + + 200, 22 + + + Hash check... + + + Freehand + + + QR code... + + + Window + + + Destination settings... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 200, 22 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 8, 40 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiTrayAfterUploadTasks + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiCopyImage + + + 147, 6 + + + tsmiDonate + + + Hotkey settings... + + + Stop upload + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiImageUploaders + + + 0 + + + tsddbDebug + + + tssMain2 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Index folder... + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MiddleLeft + + + tsmiCopyURL + + + MiddleLeft + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MiddleLeft + True 49 - - 6, 13 - - - 834, 407 - - - 400, 250 - - - CenterScreen - - - ShareX - @Invariant - - chFilename - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chStatus - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chProgress - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chSpeed - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chElapsed - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chRemaining - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - chURL - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbCapture - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiFullscreen - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiWindow - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiMonitor - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiRectangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiWindowRectangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiRectangleAnnotate - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiRectangleLight - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiRectangleTransparent - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiRoundedRectangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiEllipse - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTriangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiDiamond - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiPolygon - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiFreeHand - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiLastRegion - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiScreenRecordingFFmpeg - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiScreenRecordingGIF - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiAutoCapture - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbUpload - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiUploadFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiUploadFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiUploadClipboard - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiUploadURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiUploadDragDrop - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbWorkflows - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbTools - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiColorPicker - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiScreenColorPicker - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImageEditor - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImageEffects - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiHashCheck - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiDNSChanger - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiQRCode - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiRuler - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiAutomate - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiIndexFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiFTPClient - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTweetMessage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiMonitorTest - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssMain1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbAfterCaptureTasks - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbAfterUploadTasks - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbDestinations - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImageUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTextUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiFileUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiURLShorteners - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiURLSharingServices - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssDestinations1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiDestinationSettings - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbApplicationSettings - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbTaskSettings - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbHotkeySettings - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssMain2 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbScreenshotsFolder - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbHistory - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsbImageHistory - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsddbDebug - - - System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiShowDebugLog - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTestImageUpload - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTestTextUpload - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTestFileUpload - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTestURLShortener - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTestURLSharing - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiDonate - - - ShareX.HelpersLib.ToolStripButtonColorAnimation, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tsmiAbout - - - System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiShowErrors - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiStopUpload - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpen - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenShortenedURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenThumbnailURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenDeletionURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssOpen1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiOpenThumbnailFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopy - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyShortenedURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyThumbnailURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyDeletionURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssCopy1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyImage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyText - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyThumbnailFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyThumbnailImage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssCopy2 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyHTMLLink - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyHTMLImage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyHTMLLinkedImage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssCopy3 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyForumLink - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyForumImage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyForumLinkedImage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssCopy4 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyFilePath - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyFileName - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyFileNameWithExtension - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiCopyFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssCopy5 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiUploadSelectedFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiEditSelectedFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiDeleteSelectedFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiShortenSelectedURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiShareSelectedURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiShowQRCode - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiShowResponse - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiClearList - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssUploadInfo1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiHideMenu - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImagePreview - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImagePreviewShow - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImagePreviewHide - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiImagePreviewAutomatic - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - niTray - - - System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayCapture - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayFullscreen - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayWindow - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayMonitor - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRectangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayWindowRectangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRectangleAnnotate - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRectangleLight - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRectangleTransparent - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRoundedRectangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayEllipse - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayTriangle - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayDiamond - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayPolygon - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayFreeHand - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayLastRegion - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayScreenRecordingFFmpeg - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayScreenRecordingGIF - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayAutoCapture - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayUpload - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayUploadFile - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayUploadFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayUploadClipboard - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayUploadURL - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayUploadDragDrop - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayWorkflows - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayTools - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayColorPicker - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayScreenColorPicker - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayImageEditor - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayImageEffects - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayHashCheck - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayDNSChanger - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayQRCode - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRuler - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayAutomate - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayIndexFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayFTPClient - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayTweetMessage - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayMonitorTest - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssTray1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayAfterCaptureTasks - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayAfterUploadTasks - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayDestinations - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayImageUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayTextUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayFileUploaders - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayURLShorteners - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayURLSharingServices - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssTrayDestinations1 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayDestinationSettings - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayApplicationSettings - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayTaskSettings - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayHotkeySettings - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssTray2 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayRecentItems - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiScreenshotsFolder - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayHistory - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayImageHistory - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayDonate - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayAbout - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tssTray3 - - - System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayShow - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tsmiTrayExit - - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - MainForm - - - ShareX.HotkeyForm, ShareX, Version=9.11.0.0, Culture=neutral, PublicKeyToken=null - + + 190, 17 + + + 17, 17 + + + 105, 17 + + + 286, 17 + \ No newline at end of file diff --git a/ShareX/LanguageHelper.cs b/ShareX/LanguageHelper.cs index 7909314b3..3f3e68f50 100644 --- a/ShareX/LanguageHelper.cs +++ b/ShareX/LanguageHelper.cs @@ -66,6 +66,9 @@ public static bool ChangeLanguage(SupportedLanguage language, params Form[] form case SupportedLanguage.Korean: cultureName = "ko-KR"; break; + case SupportedLanguage.PortugueseBrazil: + cultureName = "pt-BR"; + break; case SupportedLanguage.SimplifiedChinese: cultureName = "zh-CN"; break; diff --git a/ShareX/Properties/Resources.Designer.cs b/ShareX/Properties/Resources.Designer.cs index c39299794..551719e8f 100644 --- a/ShareX/Properties/Resources.Designer.cs +++ b/ShareX/Properties/Resources.Designer.cs @@ -346,6 +346,16 @@ public class Resources { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap br { + get { + object obj = ResourceManager.GetObject("br", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/ShareX/Properties/Resources.resx b/ShareX/Properties/Resources.resx index 44813edd2..cdd7647cb 100644 --- a/ShareX/Properties/Resources.resx +++ b/ShareX/Properties/Resources.resx @@ -724,4 +724,7 @@ Would you like to restart ShareX? Left click to copy URL to clipboard. Right click to open URL. + + ..\Resources\br.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/ShareX/Resources/br.png b/ShareX/Resources/br.png new file mode 100644 index 0000000000000000000000000000000000000000..9b1a5538b264a295021f4f717d4299bb8ed98d98 GIT binary patch literal 593 zcmV-X0j-HAXl7XJGjM{~r+i{r~sxzrQwG-&h#_Y&p;L z=ieV7_s^f-zyJOD{rC5(+EoAn1k&)I;s3Kw&;LT?{{2}P{Pq8T&j0^^J4?LvUd;UK z&+k8ffB*XXONL(tXahh1fi?X94^$0Q>Z$uRRO)Y4)uapmB!2(-ul(c1=C+V!kAF`) z$PCo;`_FHns{jIs3Fu;wy-Z(c2YwAz{&V4aXk?bejFO*Op&u`@i~PecqBpL@DIoojb8mb+WHGK%fG2>)a3=iVf_~v+`s?*1;!`?Kmai^I3i*ZIYtpN f{g(k500bBS@ +