From 62693e026e85053cb11f49d861741d65178353c3 Mon Sep 17 00:00:00 2001 From: Jaex Date: Fri, 24 Oct 2014 23:44:15 +0300 Subject: [PATCH] TaskSettingsForm changes for dynamic text size support --- .../Controls/ExportImportControl.Designer.cs | 68 +++---- HelpersLib/Controls/ExportImportControl.resx | 161 ++++++++++++++++ ShareX/Forms/ApplicationSettingsForm.resx | 4 +- ShareX/Forms/TaskSettingsForm.Designer.cs | 8 + ShareX/Forms/TaskSettingsForm.resx | 173 +++++++++-------- ShareX/Forms/TaskSettingsForm.tr.resx | 174 +----------------- UploadersLib/Forms/UploadersConfigForm.resx | 110 +++++------ 7 files changed, 357 insertions(+), 341 deletions(-) diff --git a/HelpersLib/Controls/ExportImportControl.Designer.cs b/HelpersLib/Controls/ExportImportControl.Designer.cs index b8e6842bd..5e8b164cb 100644 --- a/HelpersLib/Controls/ExportImportControl.Designer.cs +++ b/HelpersLib/Controls/ExportImportControl.Designer.cs @@ -29,6 +29,7 @@ protected override void Dispose(bool disposing) private void InitializeComponent() { this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportImportControl)); this.cmsExport = new System.Windows.Forms.ContextMenuStrip(this.components); this.tsmiExportClipboard = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiExportFile = new System.Windows.Forms.ToolStripMenuItem(); @@ -36,9 +37,9 @@ private void InitializeComponent() this.cmsImport = new System.Windows.Forms.ContextMenuStrip(this.components); this.tsmiImportClipboard = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiImportFile = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiImportURL = new System.Windows.Forms.ToolStripMenuItem(); this.btnImport = new HelpersLib.MenuButton(); this.btnExport = new HelpersLib.MenuButton(); - this.tsmiImportURL = new System.Windows.Forms.ToolStripMenuItem(); this.cmsExport.SuspendLayout(); this.cmsImport.SuspendLayout(); this.SuspendLayout(); @@ -51,27 +52,24 @@ private void InitializeComponent() this.tsmiExportUpload}); this.cmsExport.Name = "cmsExport"; this.cmsExport.ShowImageMargin = false; - this.cmsExport.Size = new System.Drawing.Size(145, 70); + resources.ApplyResources(this.cmsExport, "cmsExport"); // // tsmiExportClipboard // this.tsmiExportClipboard.Name = "tsmiExportClipboard"; - this.tsmiExportClipboard.Size = new System.Drawing.Size(144, 22); - this.tsmiExportClipboard.Text = "Copy to clipboard"; + resources.ApplyResources(this.tsmiExportClipboard, "tsmiExportClipboard"); this.tsmiExportClipboard.Click += new System.EventHandler(this.tsmiExportClipboard_Click); // // tsmiExportFile // this.tsmiExportFile.Name = "tsmiExportFile"; - this.tsmiExportFile.Size = new System.Drawing.Size(144, 22); - this.tsmiExportFile.Text = "Save to file..."; + resources.ApplyResources(this.tsmiExportFile, "tsmiExportFile"); this.tsmiExportFile.Click += new System.EventHandler(this.tsmiExportFile_Click); // // tsmiExportUpload // this.tsmiExportUpload.Name = "tsmiExportUpload"; - this.tsmiExportUpload.Size = new System.Drawing.Size(144, 22); - this.tsmiExportUpload.Text = "Upload as text"; + resources.ApplyResources(this.tsmiExportUpload, "tsmiExportUpload"); this.tsmiExportUpload.Click += new System.EventHandler(this.tsmiExportUpload_Click); // // cmsImport @@ -82,61 +80,49 @@ private void InitializeComponent() this.tsmiImportURL}); this.cmsImport.Name = "cmsImport"; this.cmsImport.ShowImageMargin = false; - this.cmsImport.Size = new System.Drawing.Size(131, 92); + resources.ApplyResources(this.cmsImport, "cmsImport"); // // tsmiImportClipboard // this.tsmiImportClipboard.Name = "tsmiImportClipboard"; - this.tsmiImportClipboard.Size = new System.Drawing.Size(130, 22); - this.tsmiImportClipboard.Text = "From clipboard"; + resources.ApplyResources(this.tsmiImportClipboard, "tsmiImportClipboard"); this.tsmiImportClipboard.Click += new System.EventHandler(this.tsmiImportClipboard_Click); // // tsmiImportFile // this.tsmiImportFile.Name = "tsmiImportFile"; - this.tsmiImportFile.Size = new System.Drawing.Size(130, 22); - this.tsmiImportFile.Text = "From file..."; + resources.ApplyResources(this.tsmiImportFile, "tsmiImportFile"); this.tsmiImportFile.Click += new System.EventHandler(this.tsmiImportFile_Click); // - // btnImport - // - this.btnImport.Location = new System.Drawing.Point(72, 0); - this.btnImport.Menu = this.cmsImport; - this.btnImport.MenuX0 = true; - this.btnImport.Name = "btnImport"; - this.btnImport.Size = new System.Drawing.Size(64, 24); - this.btnImport.TabIndex = 3; - this.btnImport.Text = " Import"; - this.btnImport.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnImport.UseVisualStyleBackColor = true; - // - // btnExport - // - this.btnExport.Location = new System.Drawing.Point(0, 0); - this.btnExport.Menu = this.cmsExport; - this.btnExport.MenuX0 = true; - this.btnExport.Name = "btnExport"; - this.btnExport.Size = new System.Drawing.Size(64, 24); - this.btnExport.TabIndex = 2; - this.btnExport.Text = " Export"; - this.btnExport.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.btnExport.UseVisualStyleBackColor = true; - // // tsmiImportURL // this.tsmiImportURL.Name = "tsmiImportURL"; - this.tsmiImportURL.Size = new System.Drawing.Size(130, 22); - this.tsmiImportURL.Text = "From URL..."; + resources.ApplyResources(this.tsmiImportURL, "tsmiImportURL"); this.tsmiImportURL.Click += new System.EventHandler(this.tsmiImportURL_Click); // + // btnImport + // + resources.ApplyResources(this.btnImport, "btnImport"); + this.btnImport.Menu = this.cmsImport; + this.btnImport.MenuX0 = true; + this.btnImport.Name = "btnImport"; + this.btnImport.UseVisualStyleBackColor = true; + // + // btnExport + // + resources.ApplyResources(this.btnExport, "btnExport"); + this.btnExport.Menu = this.cmsExport; + this.btnExport.MenuX0 = true; + this.btnExport.Name = "btnExport"; + this.btnExport.UseVisualStyleBackColor = true; + // // ExportImportControl // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.btnImport); this.Controls.Add(this.btnExport); this.Name = "ExportImportControl"; - this.Size = new System.Drawing.Size(136, 24); this.cmsExport.ResumeLayout(false); this.cmsImport.ResumeLayout(false); this.ResumeLayout(false); diff --git a/HelpersLib/Controls/ExportImportControl.resx b/HelpersLib/Controls/ExportImportControl.resx index 7a3d60501..abc411b5f 100644 --- a/HelpersLib/Controls/ExportImportControl.resx +++ b/HelpersLib/Controls/ExportImportControl.resx @@ -120,7 +120,168 @@ 17, 17 + + + 144, 22 + + + Copy to clipboard + + + 144, 22 + + + Save to file... + + + 144, 22 + + + Upload as text + + + 145, 70 + + + cmsExport + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + 125, 17 + + 130, 22 + + + From clipboard + + + 130, 22 + + + From file... + + + 130, 22 + + + From URL... + + + 131, 70 + + + cmsImport + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 72, 0 + + + 64, 24 + + + + 3 + + + Import + + + MiddleLeft + + + btnImport + + + HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + $this + + + 2 + + + 0, 0 + + + 64, 24 + + + 2 + + + Export + + + MiddleLeft + + + btnExport + + + HelpersLib.MenuButton, HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + $this + + + 3 + + + True + + + 6, 13 + + + 136, 24 + + + tsmiExportClipboard + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiExportFile + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiExportUpload + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiImportClipboard + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiImportFile + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tsmiImportURL + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ExportImportControl + + + System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/ShareX/Forms/ApplicationSettingsForm.resx b/ShareX/Forms/ApplicationSettingsForm.resx index e66d229ec..13dce392d 100644 --- a/ShareX/Forms/ApplicationSettingsForm.resx +++ b/ShareX/Forms/ApplicationSettingsForm.resx @@ -1763,7 +1763,7 @@ ... - + @Invariant lblPreviewPersonalFolderPath @@ -1985,7 +1985,7 @@ ... - + @Invariant lblSaveImageSubFolderPatternPreview diff --git a/ShareX/Forms/TaskSettingsForm.Designer.cs b/ShareX/Forms/TaskSettingsForm.Designer.cs index 71119ba42..070b11aa3 100644 --- a/ShareX/Forms/TaskSettingsForm.Designer.cs +++ b/ShareX/Forms/TaskSettingsForm.Designer.cs @@ -172,6 +172,7 @@ private void InitializeComponent() this.tpAdvanced = new System.Windows.Forms.TabPage(); this.pgTaskSettings = new System.Windows.Forms.PropertyGrid(); this.chkUseDefaultAdvancedSettings = new System.Windows.Forms.CheckBox(); + this.lblCaptureShadowOffset = new System.Windows.Forms.Label(); this.tcHotkeySettings.SuspendLayout(); this.tpTask.SuspendLayout(); this.cmsDestinations.SuspendLayout(); @@ -732,6 +733,7 @@ private void InitializeComponent() // // tpCaptureGeneral // + this.tpCaptureGeneral.Controls.Add(this.lblCaptureShadowOffset); this.tpCaptureGeneral.Controls.Add(this.cbCaptureAutoHideTaskbar); this.tpCaptureGeneral.Controls.Add(this.lblScreenshotDelayInfo); this.tpCaptureGeneral.Controls.Add(this.nudScreenshotDelay); @@ -1366,6 +1368,11 @@ private void InitializeComponent() this.chkUseDefaultAdvancedSettings.UseVisualStyleBackColor = true; this.chkUseDefaultAdvancedSettings.CheckedChanged += new System.EventHandler(this.chkUseDefaultAdvancedSettings_CheckedChanged); // + // lblCaptureShadowOffset + // + resources.ApplyResources(this.lblCaptureShadowOffset, "lblCaptureShadowOffset"); + this.lblCaptureShadowOffset.Name = "lblCaptureShadowOffset"; + // // TaskSettingsForm // resources.ApplyResources(this, "$this"); @@ -1576,6 +1583,7 @@ private void InitializeComponent() private System.Windows.Forms.ColumnHeader chActionsExtensions; private System.Windows.Forms.Button btnActionsDuplicate; private System.Windows.Forms.Label lblImageEffectsNote; + private System.Windows.Forms.Label lblCaptureShadowOffset; diff --git a/ShareX/Forms/TaskSettingsForm.resx b/ShareX/Forms/TaskSettingsForm.resx index ed40cfc0c..82d403c39 100644 --- a/ShareX/Forms/TaskSettingsForm.resx +++ b/ShareX/Forms/TaskSettingsForm.resx @@ -151,7 +151,7 @@ NoControl - 8, 70 + 8, 94 193, 17 @@ -181,7 +181,7 @@ NoControl - 8, 126 + 8, 150 189, 17 @@ -211,7 +211,7 @@ NoControl - 8, 182 + 8, 206 185, 17 @@ -265,10 +265,10 @@ 10 - 78, 9 + 8, 32 - 434, 20 + 504, 20 1 @@ -304,7 +304,7 @@ NoControl - 8, 240 + 8, 264 169, 17 @@ -331,10 +331,10 @@ False - 181, 238 + 8, 288 - 330, 21 + 504, 21 11 @@ -355,7 +355,7 @@ NoControl - 6, 93 + 6, 117 506, 23 @@ -385,7 +385,7 @@ NoControl - 6, 149 + 6, 173 506, 23 @@ -415,7 +415,7 @@ NoControl - 6, 205 + 6, 229 396, 17 @@ -487,7 +487,7 @@ NoControl - 6, 37 + 6, 61 506, 23 @@ -601,7 +601,7 @@ 1 - 128, 156 + 8, 176 224, 21 @@ -859,7 +859,7 @@ 1 - 104, 172 + 16, 224 176, 21 @@ -886,7 +886,7 @@ NoControl - 16, 176 + 16, 208 56, 13 @@ -946,7 +946,7 @@ NoControl - 288, 112 + 80, 132 121, 13 @@ -970,10 +970,10 @@ 3 - 104, 12 + 16, 32 - 56, 21 + 72, 21 1 @@ -997,7 +997,7 @@ NoControl - 168, 48 + 80, 84 40, 13 @@ -1027,7 +1027,7 @@ NoControl - 16, 48 + 16, 64 70, 13 @@ -1051,7 +1051,7 @@ 6 - 104, 76 + 136, 80 360, 21 @@ -1078,7 +1078,7 @@ NoControl - 16, 80 + 136, 64 60, 13 @@ -1102,10 +1102,10 @@ 8 - 104, 140 + 16, 176 - 56, 21 + 72, 21 11 @@ -1123,7 +1123,7 @@ 9 - 104, 44 + 16, 80 56, 20 @@ -1153,7 +1153,7 @@ NoControl - 16, 144 + 16, 160 80, 13 @@ -1177,7 +1177,7 @@ 11 - 224, 108 + 16, 128 56, 20 @@ -1264,7 +1264,7 @@ 16, 16 - 412, 13 + 415, 13 3 @@ -1405,7 +1405,7 @@ NoControl - 20, 104 + 16, 160 322, 17 @@ -1435,7 +1435,7 @@ NoControl - 248, 76 + 152, 132 45, 13 @@ -1465,7 +1465,7 @@ NoControl - 16, 76 + 16, 112 88, 13 @@ -1489,7 +1489,7 @@ 2 - 112, 72 + 16, 128 128, 20 @@ -1516,7 +1516,7 @@ NoControl - 16, 44 + 16, 64 41, 13 @@ -1570,7 +1570,7 @@ 5 - 64, 40 + 16, 80 64, 20 @@ -1594,7 +1594,7 @@ 6 - 64, 12 + 16, 32 64, 20 @@ -1731,6 +1731,33 @@ 2 + + True + + + 16, 88 + + + 78, 13 + + + 9 + + + Shadow offset: + + + lblCaptureShadowOffset + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCaptureGeneral + + + 0 + True @@ -1738,7 +1765,7 @@ NoControl - 16, 136 + 16, 216 402, 17 @@ -1759,7 +1786,7 @@ tpCaptureGeneral - 0 + 1 True @@ -1768,7 +1795,7 @@ NoControl - 192, 114 + 80, 188 47, 13 @@ -1789,10 +1816,10 @@ tpCaptureGeneral - 1 + 2 - 128, 110 + 16, 184 56, 20 @@ -1813,7 +1840,7 @@ tpCaptureGeneral - 2 + 3 True @@ -1822,7 +1849,7 @@ NoControl - 16, 112 + 16, 160 111, 17 @@ -1843,10 +1870,10 @@ tpCaptureGeneral - 3 + 4 - 368, 62 + 16, 104 48, 20 @@ -1867,7 +1894,7 @@ tpCaptureGeneral - 4 + 5 True @@ -1876,7 +1903,7 @@ NoControl - 16, 88 + 16, 136 334, 17 @@ -1897,7 +1924,7 @@ tpCaptureGeneral - 5 + 6 True @@ -1909,13 +1936,13 @@ 16, 64 - 351, 17 + 274, 17 2 - Capture window with shadow (requires transparency) Shadow offset: + Capture window with shadow (requires transparency) cbCaptureShadow @@ -1927,7 +1954,7 @@ tpCaptureGeneral - 6 + 7 True @@ -1957,7 +1984,7 @@ tpCaptureGeneral - 7 + 8 True @@ -1987,7 +2014,7 @@ tpCaptureGeneral - 8 + 9 4, 22 @@ -2152,7 +2179,7 @@ NoControl - 211, 111 + 243, 111 47, 13 @@ -2176,7 +2203,7 @@ 1 - 144, 60 + 176, 60 64, 20 @@ -2266,7 +2293,7 @@ 402, 11 - 70, 23 + 94, 23 2 @@ -2293,7 +2320,7 @@ 402, 35 - 70, 23 + 94, 23 5 @@ -2314,10 +2341,10 @@ 6 - 144, 36 + 176, 36 - 256, 21 + 224, 21 4 @@ -2335,7 +2362,7 @@ 7 - 144, 108 + 176, 108 64, 20 @@ -2389,7 +2416,7 @@ 9 - 144, 132 + 176, 132 64, 20 @@ -2413,10 +2440,10 @@ 10 - 144, 12 + 176, 12 - 256, 21 + 224, 21 1 @@ -2494,7 +2521,7 @@ 13 - 144, 84 + 176, 84 64, 20 @@ -2665,10 +2692,10 @@ NoControl - 168, 8 + 200, 8 - 75, 23 + 88, 23 2 @@ -2695,7 +2722,7 @@ 8, 8 - 75, 23 + 88, 23 0 @@ -2767,10 +2794,10 @@ NoControl - 88, 8 + 104, 8 - 75, 23 + 88, 23 1 @@ -2794,10 +2821,10 @@ NoControl - 248, 8 + 296, 8 - 75, 23 + 88, 23 3 @@ -2980,10 +3007,10 @@ NoControl - 88, 32 + 104, 32 - 75, 23 + 88, 23 2 @@ -3010,7 +3037,7 @@ 8, 32 - 75, 23 + 88, 23 1 diff --git a/ShareX/Forms/TaskSettingsForm.tr.resx b/ShareX/Forms/TaskSettingsForm.tr.resx index 836756a01..23b8b3bbd 100644 --- a/ShareX/Forms/TaskSettingsForm.tr.resx +++ b/ShareX/Forms/TaskSettingsForm.tr.resx @@ -117,34 +117,18 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 245, 17 - Varsayılan "Yakalama sonrası" ayarlarını kullan - - 239, 17 - Varsayılan "Yükleme sonrası" ayarlarını kullan - - 191, 17 - Varsayılan "Hedef" ayarlarını kullan - - 53, 13 - Açıklama: - - 127, 17 - FTP hesabını değiştir: @@ -154,39 +138,21 @@ Yükleme sonrası... - - 193, 22 - Resim yükleyiciler - - 193, 22 - Yazı yükleyiciler - - 193, 22 - Dosya yükleyiciler - - 193, 22 - URL kısaltıcılar - - 193, 22 - URL paylaşım servisleri - - 194, 114 - Hedefler... @@ -196,45 +162,24 @@ Görev - - 384, 17 - Yükleme öncesi hedefi değiştirebilmek için "Yükleme öncesi" ekranını göster - - 108, 13 - Görev bittikten sonra: - - 299, 17 - Görev tamamlandığında "Yükleme sonrası" ekranını göster - - 364, 17 - Yakalama yapıldıktan sonra "Yakalama sonrası görevleri" ekranını göster - - 160, 17 - Görev bittikten sonra ses çal - - 168, 17 - Görev bilgisini geçmişe kaydet - - 191, 17 - Yakalama yapıldıktan sonra ses çal @@ -244,60 +189,33 @@ Genel - - 69, 13 - Dosya varsa: - - 68, 13 - Resim biçimi: - - 126, 13 - kB 0 - 5000 (0 iptal eder) - - 72, 13 - JPEG kalitesi: - - 62, 13 - GIF kalitesi: - - 75, 13 - Resim biçim 2: - - 188, 13 - "Resim biçim 2" için resim boyutu limiti: Genel - - 248, 17 - Yakalama sonrası resim efektleri ekranını göster - - 232, 17 - Efektleri sadece yakalama bölgesine uygula @@ -307,33 +225,18 @@ Efekt - - 382, 17 - Küçük resimi sadece resim boyutu küçük resim boyutundan büyükse oluştur - - 53, 13 - Ön izleme - - 85, 13 - Küçük resim adı: - - 28, 13 - Boy: - - 23, 13 - En: @@ -346,45 +249,24 @@ Resim - - 430, 17 - Pencere yakalama sırasında pencere görev çubuğu ile kesişirse görev çubuğunu gizle - - 37, 13 - saniye - - 107, 17 - Beklemesi süresi: - - 378, 17 - Pencere veya aktif pencere yakalama sırasında başlık çubuğunu yakalama - - 311, 17 - - Pencereyi gölge ile yakala (şeffaflık gerektirir) Gölge çıkıntısı: - - - 185, 17 + Pencereyi gölge ile yakala (şeffaflık gerektirir) Ekran görüntülerinde imleci göster - - 159, 17 - Pencereyi şeffaflık ile yakala @@ -397,27 +279,15 @@ Dikdörtgen dipnot - - 462, 17 - Kaydetme sırasında Windows Aero otomatik kapatılsın (Aero kaydetme performansını düşürür) - - 37, 13 - saniye - - 86, 13 - Ekran kayıt FPS: - - 112, 17 - Ardından CLI çalıştır: @@ -427,21 +297,12 @@ Profiller... - - 106, 13 - Başlangıç gecikmesi: - - 32, 13 - Çıktı: - - 76, 17 - Sabit süre: @@ -484,9 +345,6 @@ Aksiyon - - 287, 17 - Dizinleri takip et ve eğer yeni dosya yaratılırsa onu yükle @@ -508,63 +366,36 @@ Dizinleri takip et - - 335, 17 - Dosya yükleme için de gerçek dosya ismi yerine isim deseni kullan - - 243, 13 - Yakalama veya panodan yükleme için isim deseni: Otomatik artan sayıyı sıfırla - - 188, 13 - Aktif pencere yakalama için isim deseni: - - 56, 13 - Ön izleme: - - 56, 13 - Ön izleme: İsim deseni - - 269, 17 - Pano URL içeriyorsa URL paylaşım servisi ile paylaş - - 271, 17 - Eğer pano dosya URL bilgisi içeriyorsa indir ve yükle - - 291, 17 - Pano dizin yolu içeriyorsa dizini indeksle ve indeksi yükle - - 216, 17 - Pano URL içeriyorsa URL kısaltıcı kullan @@ -598,4 +429,7 @@ "Yakalama sonrası -> Resim efekti ekle" menüsünden resim efektlerini açıp kapatabilirsiniz. + + Gölge çıkıntısı: + \ No newline at end of file diff --git a/UploadersLib/Forms/UploadersConfigForm.resx b/UploadersLib/Forms/UploadersConfigForm.resx index 16acf827f..68e18945b 100644 --- a/UploadersLib/Forms/UploadersConfigForm.resx +++ b/UploadersLib/Forms/UploadersConfigForm.resx @@ -1188,7 +1188,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ - + @Invariant txtCustomUploaderLog @@ -1350,7 +1350,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ URL: - + @Invariant lblCustomUploaderURL @@ -1638,7 +1638,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Twitter - + @Invariant tpTwitter @@ -1788,7 +1788,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ bit.ly - + @Invariant tpBitly @@ -1857,7 +1857,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Google - + @Invariant tpGoogleURLShortener @@ -2091,7 +2091,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ API URL: - + @Invariant lblYourlsAPIURL @@ -2118,7 +2118,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ YOURLS - + @Invariant tpYourls @@ -2199,7 +2199,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ API UID: - + @Invariant lblAdflyAPIUID @@ -2277,7 +2277,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ adf.ly - + @Invariant tpAdFly @@ -2583,7 +2583,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ FTP - + @Invariant tpFTP @@ -2993,7 +2993,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Dropbox - + @Invariant tpDropbox @@ -3215,7 +3215,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Google Drive - + @Invariant tpGoogleDrive @@ -3410,7 +3410,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Box - + @Invariant tpBox @@ -3731,7 +3731,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Copy - + @Invariant tpCopy @@ -3779,7 +3779,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ OneDrive - + @Invariant tpOneDrive @@ -3887,7 +3887,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ ... - + @Invariant btnAmazonS3BucketNameOpen @@ -3914,7 +3914,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ ... - + @Invariant btnAmazonS3AccessKeyOpen @@ -3929,31 +3929,31 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ https://s3-ap-northeast-1.amazonaws.com/ - + @Invariant https://s3-ap-southeast-1.amazonaws.com/ - + @Invariant https://s3-ap-southeast-2.amazonaws.com/ - + @Invariant https://s3-eu-west-1.amazonaws.com/ - + @Invariant https://s3-sa-east-1.amazonaws.com/ - + @Invariant https://s3-us-west-1.amazonaws.com/ - + @Invariant https://s3-us-west-2.amazonaws.com/ - + @Invariant https://s3.amazonaws.com/ - + @Invariant https://objects.dreamhost.com/ - + @Invariant 16, 128 @@ -4223,7 +4223,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Amazon S3 - + @Invariant tpAmazonS3 @@ -4541,7 +4541,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Mega - + @Invariant tpMega @@ -4862,7 +4862,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ ownCloud - + @Invariant tpOwnCloud @@ -5075,7 +5075,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ MediaFire - + @Invariant tpMediaFire @@ -5237,7 +5237,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Pushbullet - + @Invariant tpPushbullet @@ -5465,7 +5465,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ RapidShare - + @Invariant tpRapidShare @@ -5642,7 +5642,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ SendSpace - + @Invariant tpSendSpace @@ -5699,7 +5699,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ MediaCrush - + @Invariant tpMediaCrush @@ -5885,7 +5885,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Ge.tt - + @Invariant tpGe_tt @@ -6044,7 +6044,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Hostr - + @Invariant tpHostr @@ -6494,7 +6494,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Minus - + @Invariant tpMinus @@ -6518,7 +6518,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ PROJECT- - + @Invariant txtJiraIssuePrefix @@ -6602,7 +6602,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ http:// - + @Invariant txtJiraHost @@ -6701,7 +6701,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Atlassian Jira - + @Invariant tpJira @@ -7793,7 +7793,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Pastebin - + @Invariant tpPastebin @@ -7871,7 +7871,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Paste.ee - + @Invariant tpPaste_ee @@ -7970,7 +7970,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Gist - + @Invariant tpGist @@ -8078,7 +8078,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ uPaste - + @Invariant tpUpaste @@ -8207,7 +8207,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Hastebin - + @Invariant tpHastebin @@ -8375,7 +8375,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ ID - + @Invariant Title @@ -8504,7 +8504,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Imgur - + @Invariant tpImgur @@ -8744,7 +8744,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ ImageShack - + @Invariant tpImageShack @@ -8948,7 +8948,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ TinyPic - + @Invariant tpTinyPic @@ -9128,7 +9128,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Flickr - + @Invariant tpFlickr @@ -9620,7 +9620,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Photobucket - + @Invariant tpPhotobucket @@ -9686,7 +9686,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ ID - + @Invariant 135 @@ -9788,7 +9788,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Picasa - + @Invariant tpPicasa @@ -9848,7 +9848,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ /api/1/upload - + @Invariant lblCheveretoWebsiteTip @@ -9977,7 +9977,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/ Chevereto - + @Invariant tpChevereto