- Special characters now supported

This commit is contained in:
9joao6 2018-02-23 16:02:10 +00:00 committed by GitHub
parent 862b14ceb5
commit a40b1ad288
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,8 +130,8 @@ private void llAttribution_LinkClicked(object sender, LinkLabelLinkClickedEventA
private void llGoogleTranslate_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
URLHelpers.OpenURL("https://translate.google.com/#auto/en/" + txtResult.Text);
URLHelpers.OpenURL("https://translate.google.com/#auto/en/" + Uri.EscapeDataString(txtResult.Text));
this.Close();
}
}
}
}