Skip to content

Commit fb9e91b

Browse files
author
LAB02 Research
committed
v2023.3.17.0
1 parent 4719fc2 commit fb9e91b

17 files changed

+182
-26
lines changed

src/DeepLClient/Controls/DocumentsPage.Designer.cs

Lines changed: 17 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/DeepLClient/Controls/DocumentsPage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,8 +432,8 @@ internal async void ExecuteTranslation()
432432
{
433433
var billedCharacters = Convert.ToDouble(state.BilledCharacters);
434434
LblState.Text = SubscriptionManager.UsingFreeSubscription()
435-
? $"translation complete!\r\n\r\nthe document has been billed for {billedCharacters} characters\r\nyou're on a free subscription, so no costs"
436-
: $"translation complete!\r\n\r\nthe document has been billed for {billedCharacters} characters, costing {SubscriptionManager.CalculateCost(billedCharacters)}.";
435+
? $"translation complete!\r\n\r\nthe document has been billed for {billedCharacters:N0} characters\r\nyou're on a free subscription, so no costs"
436+
: $"translation complete!\r\n\r\nthe document has been billed for {billedCharacters:N0} characters, costing {SubscriptionManager.CalculateCost(billedCharacters)}.";
437437
}
438438
else LblState.Text = "translation complete!";
439439

src/DeepLClient/Controls/DocumentsPage.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,7 @@
5757
<resheader name="writer">
5858
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
5959
</resheader>
60+
<metadata name="ToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
61+
<value>49, 25</value>
62+
</metadata>
6063
</root>

src/DeepLClient/Controls/TextPage.Designer.cs

Lines changed: 76 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/DeepLClient/Controls/TextPage.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using Serilog;
66
using System.Diagnostics.CodeAnalysis;
77
using DeepLClient.Forms.Dialogs;
8+
using Syncfusion.WinForms.Controls.Styles;
89

910
namespace DeepLClient.Controls
1011
{

src/DeepLClient/Controls/TextPage.resx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
<resheader name="writer">
5858
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
5959
</resheader>
60+
<metadata name="ToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
61+
<value>348, 27</value>
62+
</metadata>
6063
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
6164
<data name="resource.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
6265
<value>
@@ -66,4 +69,10 @@
6669
4fokFWShaAwAdGZUfyL/FuTvIUjurdQBaE0luFgHKUIAAAAASUVORK5CYII=
6770
</value>
6871
</data>
72+
<metadata name="TbSourceScroller.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
73+
<value>192, 22</value>
74+
</metadata>
75+
<metadata name="TbTranslatedScroller.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
76+
<value>17, 17</value>
77+
</metadata>
6978
</root>

src/DeepLClient/Controls/UrlPage.Designer.cs

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)