Few Lambda changes

This commit is contained in:
Jaex 2015-02-03 22:48:32 +02:00
parent 014192246f
commit 37417ccbf2
9 changed files with 127 additions and 110 deletions

View file

@ -120,7 +120,7 @@ public enum FileDestination
Localhostr,
[Description("JIRA")]
Jira,
[Description("λ")]
[Description("Lambda")]
Lambda,
SharedFolder, // Localized
Email, // Localized

View file

@ -57,7 +57,8 @@ public override UploadResult Upload(Stream stream, string fileName)
arguments.Add("apikey", Config.UserAPIKey);
UploadResult result = UploadData(stream, uploadUrl, fileName, "file", arguments);
if (result.IsSuccess) {
if (result.IsSuccess)
{
LambdaResponse response = JsonConvert.DeserializeObject<LambdaResponse>(result.Response);
if (response.success)
@ -66,7 +67,8 @@ public override UploadResult Upload(Stream stream, string fileName)
}
else
{
foreach (String e in response.errors) {
foreach (string e in response.errors)
{
Errors.Add(e);
}
}
@ -79,7 +81,7 @@ internal class LambdaResponse
{
public bool success { get; set; }
public List<LambdaFile> files { get; set; }
public List<String> errors { get; set; }
public List<string> errors { get; set; }
}
internal class LambdaFile

View file

@ -294,8 +294,8 @@ private void InitializeComponent()
this.lblJiraHost = new System.Windows.Forms.Label();
this.oAuthJira = new ShareX.UploadersLib.OAuthControl();
this.tpLambda = new System.Windows.Forms.TabPage();
this.lambdaInfoLabel = new System.Windows.Forms.Label();
this.lambdaApiKeyLabel = new System.Windows.Forms.Label();
this.lblLambdaInfo = new System.Windows.Forms.Label();
this.lblLambdaApiKey = new System.Windows.Forms.Label();
this.txtLambdaApiKey = new System.Windows.Forms.TextBox();
this.tpEmail = new System.Windows.Forms.TabPage();
this.chkEmailConfirm = new System.Windows.Forms.CheckBox();
@ -2431,23 +2431,23 @@ private void InitializeComponent()
//
// tpLambda
//
this.tpLambda.Controls.Add(this.lambdaInfoLabel);
this.tpLambda.Controls.Add(this.lambdaApiKeyLabel);
this.tpLambda.Controls.Add(this.lblLambdaInfo);
this.tpLambda.Controls.Add(this.lblLambdaApiKey);
this.tpLambda.Controls.Add(this.txtLambdaApiKey);
resources.ApplyResources(this.tpLambda, "tpLambda");
this.tpLambda.Name = "tpLambda";
this.tpLambda.UseVisualStyleBackColor = true;
//
// lambdaInfoLabel
// lblLambdaInfo
//
resources.ApplyResources(this.lambdaInfoLabel, "lambdaInfoLabel");
this.lambdaInfoLabel.Name = "lambdaInfoLabel";
this.lambdaInfoLabel.Click += new System.EventHandler(this.lambdaInfoLabel_Click);
resources.ApplyResources(this.lblLambdaInfo, "lblLambdaInfo");
this.lblLambdaInfo.Name = "lblLambdaInfo";
this.lblLambdaInfo.Click += new System.EventHandler(this.lambdaInfoLabel_Click);
//
// lambdaApiKeyLabel
// lblLambdaApiKey
//
resources.ApplyResources(this.lambdaApiKeyLabel, "lambdaApiKeyLabel");
this.lambdaApiKeyLabel.Name = "lambdaApiKeyLabel";
resources.ApplyResources(this.lblLambdaApiKey, "lblLambdaApiKey");
this.lblLambdaApiKey.Name = "lblLambdaApiKey";
//
// txtLambdaApiKey
//
@ -3958,8 +3958,8 @@ private void InitializeComponent()
private System.Windows.Forms.Button btnHubicRefreshFolders;
private System.Windows.Forms.CheckBox cbHubicPublishLink;
private System.Windows.Forms.TabPage tpLambda;
private System.Windows.Forms.Label lambdaApiKeyLabel;
private System.Windows.Forms.Label lblLambdaApiKey;
private System.Windows.Forms.TextBox txtLambdaApiKey;
private System.Windows.Forms.Label lambdaInfoLabel;
private System.Windows.Forms.Label lblLambdaInfo;
}
}

View file

@ -2069,16 +2069,16 @@ private void cbMediaCrushDirectLink_CheckedChanged(object sender, EventArgs e)
#region Lambda
private void lambdaInfoLabel_Click(object sender, EventArgs e)
{
URLHelpers.OpenURL("https://lambda.sx/usercp");
}
private void txtLambdaApiKey_TextChanged(object sender, EventArgs e)
{
Config.LambdaSettings.UserAPIKey = txtLambdaApiKey.Text;
}
private void lambdaInfoLabel_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://lambda.sx/usercp");
}
#endregion Lambda
#endregion File Uploaders

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
@ -1188,7 +1188,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="txtCustomUploaderLog.Text" xml:space="preserve">
<value />
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;txtCustomUploaderLog.Name" xml:space="preserve">
<value>txtCustomUploaderLog</value>
</data>
@ -1350,7 +1350,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="lblCustomUploaderURL.Text" xml:space="preserve">
<value>URL:</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;lblCustomUploaderURL.Name" xml:space="preserve">
<value>lblCustomUploaderURL</value>
</data>
@ -1638,7 +1638,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpTwitter.Text" xml:space="preserve">
<value>Twitter</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpTwitter.Name" xml:space="preserve">
<value>tpTwitter</value>
</data>
@ -1788,7 +1788,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpBitly.Text" xml:space="preserve">
<value>bit.ly</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpBitly.Name" xml:space="preserve">
<value>tpBitly</value>
</data>
@ -1857,7 +1857,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpGoogleURLShortener.Text" xml:space="preserve">
<value>Google</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpGoogleURLShortener.Name" xml:space="preserve">
<value>tpGoogleURLShortener</value>
</data>
@ -2091,7 +2091,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="lblYourlsAPIURL.Text" xml:space="preserve">
<value>API URL:</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;lblYourlsAPIURL.Name" xml:space="preserve">
<value>lblYourlsAPIURL</value>
</data>
@ -2118,7 +2118,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpYourls.Text" xml:space="preserve">
<value>YOURLS</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpYourls.Name" xml:space="preserve">
<value>tpYourls</value>
</data>
@ -2199,7 +2199,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="lblAdflyAPIUID.Text" xml:space="preserve">
<value>API UID:</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;lblAdflyAPIUID.Name" xml:space="preserve">
<value>lblAdflyAPIUID</value>
</data>
@ -2277,7 +2277,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpAdFly.Text" xml:space="preserve">
<value>adf.ly</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpAdFly.Name" xml:space="preserve">
<value>tpAdFly</value>
</data>
@ -2583,7 +2583,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpFTP.Text" xml:space="preserve">
<value>FTP</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpFTP.Name" xml:space="preserve">
<value>tpFTP</value>
</data>
@ -2993,7 +2993,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpDropbox.Text" xml:space="preserve">
<value>Dropbox</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpDropbox.Name" xml:space="preserve">
<value>tpDropbox</value>
</data>
@ -3125,7 +3125,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpOneDrive.Text" xml:space="preserve">
<value>OneDrive</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpOneDrive.Name" xml:space="preserve">
<value>tpOneDrive</value>
</data>
@ -3347,7 +3347,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpGoogleDrive.Text" xml:space="preserve">
<value>Google Drive</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpGoogleDrive.Name" xml:space="preserve">
<value>tpGoogleDrive</value>
</data>
@ -3542,7 +3542,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpBox.Text" xml:space="preserve">
<value>Box</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpBox.Name" xml:space="preserve">
<value>tpBox</value>
</data>
@ -3863,7 +3863,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpCopy.Text" xml:space="preserve">
<value>Copy</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpCopy.Name" xml:space="preserve">
<value>tpCopy</value>
</data>
@ -4058,7 +4058,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpHubic.Text" xml:space="preserve">
<value>hubiC</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpHubic.Name" xml:space="preserve">
<value>tpHubic</value>
</data>
@ -4166,7 +4166,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="btnAmazonS3BucketNameOpen.Text" xml:space="preserve">
<value>...</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;btnAmazonS3BucketNameOpen.Name" xml:space="preserve">
<value>btnAmazonS3BucketNameOpen</value>
</data>
@ -4193,7 +4193,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="btnAmazonS3AccessKeyOpen.Text" xml:space="preserve">
<value>...</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;btnAmazonS3AccessKeyOpen.Name" xml:space="preserve">
<value>btnAmazonS3AccessKeyOpen</value>
</data>
@ -4208,31 +4208,31 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="cbAmazonS3Endpoint.Items" xml:space="preserve">
<value>https://s3-ap-northeast-1.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items1" xml:space="preserve">
<value>https://s3-ap-southeast-1.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items2" xml:space="preserve">
<value>https://s3-ap-southeast-2.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items3" xml:space="preserve">
<value>https://s3-eu-west-1.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items4" xml:space="preserve">
<value>https://s3-sa-east-1.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items5" xml:space="preserve">
<value>https://s3-us-west-1.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items6" xml:space="preserve">
<value>https://s3-us-west-2.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items7" xml:space="preserve">
<value>https://s3.amazonaws.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Items8" xml:space="preserve">
<value>https://objects.dreamhost.com/</value>
</data>
<comment>@Invariant</comment></data>
<data name="cbAmazonS3Endpoint.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 128</value>
</data>
@ -4502,7 +4502,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpAmazonS3.Text" xml:space="preserve">
<value>Amazon S3</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpAmazonS3.Name" xml:space="preserve">
<value>tpAmazonS3</value>
</data>
@ -4820,7 +4820,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpMega.Text" xml:space="preserve">
<value>Mega</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpMega.Name" xml:space="preserve">
<value>tpMega</value>
</data>
@ -5141,7 +5141,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpOwnCloud.Text" xml:space="preserve">
<value>ownCloud</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpOwnCloud.Name" xml:space="preserve">
<value>tpOwnCloud</value>
</data>
@ -5354,7 +5354,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpMediaFire.Text" xml:space="preserve">
<value>MediaFire</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpMediaFire.Name" xml:space="preserve">
<value>tpMediaFire</value>
</data>
@ -5516,7 +5516,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpPushbullet.Text" xml:space="preserve">
<value>Pushbullet</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpPushbullet.Name" xml:space="preserve">
<value>tpPushbullet</value>
</data>
@ -5744,7 +5744,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpRapidShare.Text" xml:space="preserve">
<value>RapidShare</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpRapidShare.Name" xml:space="preserve">
<value>tpRapidShare</value>
</data>
@ -5921,7 +5921,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpSendSpace.Text" xml:space="preserve">
<value>SendSpace</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpSendSpace.Name" xml:space="preserve">
<value>tpSendSpace</value>
</data>
@ -5978,7 +5978,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpMediaCrush.Text" xml:space="preserve">
<value>MediaCrush</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpMediaCrush.Name" xml:space="preserve">
<value>tpMediaCrush</value>
</data>
@ -6164,7 +6164,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpGe_tt.Text" xml:space="preserve">
<value>Ge.tt</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpGe_tt.Name" xml:space="preserve">
<value>tpGe_tt</value>
</data>
@ -6323,7 +6323,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpHostr.Text" xml:space="preserve">
<value>Hostr</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpHostr.Name" xml:space="preserve">
<value>tpHostr</value>
</data>
@ -6773,7 +6773,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpMinus.Text" xml:space="preserve">
<value>Minus</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpMinus.Name" xml:space="preserve">
<value>tpMinus</value>
</data>
@ -6797,7 +6797,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="txtJiraIssuePrefix.Text" xml:space="preserve">
<value>PROJECT-</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;txtJiraIssuePrefix.Name" xml:space="preserve">
<value>txtJiraIssuePrefix</value>
</data>
@ -6881,7 +6881,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="txtJiraHost.Text" xml:space="preserve">
<value>http://</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;txtJiraHost.Name" xml:space="preserve">
<value>txtJiraHost</value>
</data>
@ -6980,7 +6980,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpJira.Text" xml:space="preserve">
<value>Atlassian Jira</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpJira.Name" xml:space="preserve">
<value>tpJira</value>
</data>
@ -6993,62 +6993,68 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
<data name="&gt;&gt;tpJira.ZOrder" xml:space="preserve">
<value>18</value>
</data>
<data name="lambdaInfoLabel.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<data name="lblLambdaInfo.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblLambdaInfo.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="lambdaInfoLabel.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 7</value>
<data name="lblLambdaInfo.Location" type="System.Drawing.Point, System.Drawing">
<value>13, 16</value>
</data>
<data name="lambdaInfoLabel.Size" type="System.Drawing.Size, System.Drawing">
<value>498, 20</value>
<data name="lblLambdaInfo.Size" type="System.Drawing.Size, System.Drawing">
<value>496, 13</value>
</data>
<data name="lambdaInfoLabel.TabIndex" type="System.Int32, mscorlib">
<data name="lblLambdaInfo.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lambdaInfoLabel.Text" xml:space="preserve">
<data name="lblLambdaInfo.Text" xml:space="preserve">
<value>To get an API key, log in to Lambda at https://lambda.sx/ then click on the settings cog at the top right.</value>
</data>
<data name="&gt;&gt;lambdaInfoLabel.Name" xml:space="preserve">
<value>lambdaInfoLabel</value>
<data name="&gt;&gt;lblLambdaInfo.Name" xml:space="preserve">
<value>lblLambdaInfo</value>
</data>
<data name="&gt;&gt;lambdaInfoLabel.Type" xml:space="preserve">
<data name="&gt;&gt;lblLambdaInfo.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lambdaInfoLabel.Parent" xml:space="preserve">
<data name="&gt;&gt;lblLambdaInfo.Parent" xml:space="preserve">
<value>tpLambda</value>
</data>
<data name="&gt;&gt;lambdaInfoLabel.ZOrder" xml:space="preserve">
<data name="&gt;&gt;lblLambdaInfo.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="lambdaApiKeyLabel.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<data name="lblLambdaApiKey.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblLambdaApiKey.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="lambdaApiKeyLabel.Location" type="System.Drawing.Point, System.Drawing">
<value>13, 32</value>
<data name="lblLambdaApiKey.Location" type="System.Drawing.Point, System.Drawing">
<value>13, 40</value>
</data>
<data name="lambdaApiKeyLabel.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 14</value>
<data name="lblLambdaApiKey.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 13</value>
</data>
<data name="lambdaApiKeyLabel.TabIndex" type="System.Int32, mscorlib">
<data name="lblLambdaApiKey.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="lambdaApiKeyLabel.Text" xml:space="preserve">
<value>API Key:</value>
<data name="lblLambdaApiKey.Text" xml:space="preserve">
<value>API key:</value>
</data>
<data name="&gt;&gt;lambdaApiKeyLabel.Name" xml:space="preserve">
<value>lambdaApiKeyLabel</value>
<data name="&gt;&gt;lblLambdaApiKey.Name" xml:space="preserve">
<value>lblLambdaApiKey</value>
</data>
<data name="&gt;&gt;lambdaApiKeyLabel.Type" xml:space="preserve">
<data name="&gt;&gt;lblLambdaApiKey.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lambdaApiKeyLabel.Parent" xml:space="preserve">
<data name="&gt;&gt;lblLambdaApiKey.Parent" xml:space="preserve">
<value>tpLambda</value>
</data>
<data name="&gt;&gt;lambdaApiKeyLabel.ZOrder" xml:space="preserve">
<data name="&gt;&gt;lblLambdaApiKey.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="txtLambdaApiKey.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 49</value>
<value>16, 57</value>
</data>
<data name="txtLambdaApiKey.Size" type="System.Drawing.Size, System.Drawing">
<value>346, 20</value>
@ -7081,8 +7087,8 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
<value>20</value>
</data>
<data name="tpLambda.Text" xml:space="preserve">
<value>λ</value>
</data>
<value>Lambda</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpLambda.Name" xml:space="preserve">
<value>tpLambda</value>
</data>
@ -8174,7 +8180,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpPastebin.Text" xml:space="preserve">
<value>Pastebin</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpPastebin.Name" xml:space="preserve">
<value>tpPastebin</value>
</data>
@ -8252,7 +8258,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpPaste_ee.Text" xml:space="preserve">
<value>Paste.ee</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpPaste_ee.Name" xml:space="preserve">
<value>tpPaste_ee</value>
</data>
@ -8351,7 +8357,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpGist.Text" xml:space="preserve">
<value>Gist</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpGist.Name" xml:space="preserve">
<value>tpGist</value>
</data>
@ -8459,7 +8465,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpUpaste.Text" xml:space="preserve">
<value>uPaste</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpUpaste.Name" xml:space="preserve">
<value>tpUpaste</value>
</data>
@ -8588,7 +8594,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpHastebin.Text" xml:space="preserve">
<value>Hastebin</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpHastebin.Name" xml:space="preserve">
<value>tpHastebin</value>
</data>
@ -8756,7 +8762,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="chImgurID.Text" xml:space="preserve">
<value>ID</value>
</data>
<comment>@Invariant</comment></data>
<data name="chImgurTitle.Text" xml:space="preserve">
<value>Title</value>
</data>
@ -8885,7 +8891,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpImgur.Text" xml:space="preserve">
<value>Imgur</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpImgur.Name" xml:space="preserve">
<value>tpImgur</value>
</data>
@ -9125,7 +9131,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpImageShack.Text" xml:space="preserve">
<value>ImageShack</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpImageShack.Name" xml:space="preserve">
<value>tpImageShack</value>
</data>
@ -9329,7 +9335,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpTinyPic.Text" xml:space="preserve">
<value>TinyPic</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpTinyPic.Name" xml:space="preserve">
<value>tpTinyPic</value>
</data>
@ -9509,7 +9515,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpFlickr.Text" xml:space="preserve">
<value>Flickr</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpFlickr.Name" xml:space="preserve">
<value>tpFlickr</value>
</data>
@ -10001,7 +10007,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpPhotobucket.Text" xml:space="preserve">
<value>Photobucket</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpPhotobucket.Name" xml:space="preserve">
<value>tpPhotobucket</value>
</data>
@ -10067,7 +10073,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="chPicasaID.Text" xml:space="preserve">
<value>ID</value>
</data>
<comment>@Invariant</comment></data>
<data name="chPicasaID.Width" type="System.Int32, mscorlib">
<value>135</value>
</data>
@ -10169,7 +10175,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpPicasa.Text" xml:space="preserve">
<value>Picasa</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpPicasa.Name" xml:space="preserve">
<value>tpPicasa</value>
</data>
@ -10229,7 +10235,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="lblCheveretoWebsiteTip.Text" xml:space="preserve">
<value>/api/1/upload</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;lblCheveretoWebsiteTip.Name" xml:space="preserve">
<value>lblCheveretoWebsiteTip</value>
</data>
@ -10358,7 +10364,7 @@ For example, if your bucket is called bucket.example.com then URL will be http:/
</data>
<data name="tpChevereto.Text" xml:space="preserve">
<value>Chevereto</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpChevereto.Name" xml:space="preserve">
<value>tpChevereto</value>
</data>

View file

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
@ -754,4 +755,10 @@ Bir başka deyişle Amazon S3'den bazı durumlarda kaybolabilirler.</value>
<data name="lblHubicSelectedFolderNote.Text" xml:space="preserve">
<value>Not: Dizin içine gitmek için dizin adına çift tıklayabilirsiniz.</value>
</data>
<data name="lblLambdaInfo.Text" xml:space="preserve">
<value>API anahtarını almak için Lambda sitesine giriş yapın https://lambda.sx/ adresinden ve sağ üstteki dişli tuşuna basın.</value>
</data>
<data name="lblLambdaApiKey.Text" xml:space="preserve">
<value>API anahtarı:</value>
</data>
</root>

View file

@ -421,7 +421,6 @@
</EmbeddedResource>
<EmbeddedResource Include="Forms\UploadersConfigForm.de.resx">
<DependentUpon>UploadersConfigForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Forms\UploadersConfigForm.fr.resx">
<DependentUpon>UploadersConfigForm.cs</DependentUpon>

View file

@ -1499,7 +1499,7 @@
</data>
<data name="niTray.Text" xml:space="preserve">
<value>ShareX</value>
</data>
<comment>@Invariant</comment></data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
@ -1520,7 +1520,7 @@
</data>
<data name="$this.Text" xml:space="preserve">
<value>ShareX</value>
</data>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;chFilename.Name" xml:space="preserve">
<value>chFilename</value>
</data>

View file

@ -1165,4 +1165,7 @@
<data name="tsmiTrayColorPicker.Text" xml:space="preserve">
<value>Renk seçici...</value>
</data>
<data name="tsmiTrayRecentItems.Text" xml:space="preserve">
<value>Son adresler</value>
</data>
</root>