Added translations for discard/send buttons in composer
This commit is contained in:
@@ -53,6 +53,7 @@
|
|||||||
"Buttons_TryAgain": "Try Again",
|
"Buttons_TryAgain": "Try Again",
|
||||||
"Buttons_Yes": "Yes",
|
"Buttons_Yes": "Yes",
|
||||||
"Buttons_Reset": "Reset",
|
"Buttons_Reset": "Reset",
|
||||||
|
"Buttons_Send": "Send",
|
||||||
"Center": "Center",
|
"Center": "Center",
|
||||||
"ComingSoon": "Coming soon...",
|
"ComingSoon": "Coming soon...",
|
||||||
"ComposerFrom": "From: ",
|
"ComposerFrom": "From: ",
|
||||||
|
|||||||
5
Wino.Core.Domain/Translator.Designer.cs
generated
5
Wino.Core.Domain/Translator.Designer.cs
generated
@@ -288,6 +288,11 @@ namespace Wino.Core.Domain
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static string Buttons_Reset => Resources.GetTranslatedString(@"Buttons_Reset");
|
public static string Buttons_Reset => Resources.GetTranslatedString(@"Buttons_Reset");
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Send
|
||||||
|
/// </summary>
|
||||||
|
public static string Buttons_Send => Resources.GetTranslatedString(@"Buttons_Send");
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Center
|
/// Center
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -180,12 +180,12 @@
|
|||||||
</AppBarButton.Icon>
|
</AppBarButton.Icon>
|
||||||
</AppBarButton>
|
</AppBarButton>
|
||||||
|
|
||||||
<AppBarButton Command="{x:Bind ViewModel.DiscardCommand}" Label="Discard">
|
<AppBarButton Command="{x:Bind ViewModel.DiscardCommand}" Label="{x:Bind domain:Translator.Buttons_Discard}">
|
||||||
<AppBarButton.Icon>
|
<AppBarButton.Icon>
|
||||||
<controls:WinoFontIcon Icon="Delete" />
|
<controls:WinoFontIcon Icon="Delete" />
|
||||||
</AppBarButton.Icon>
|
</AppBarButton.Icon>
|
||||||
</AppBarButton>
|
</AppBarButton>
|
||||||
<AppBarButton Command="{x:Bind ViewModel.SendCommand}" Label="Send">
|
<AppBarButton Command="{x:Bind ViewModel.SendCommand}" Label="{x:Bind domain:Translator.Buttons_Send}">
|
||||||
<AppBarButton.Icon>
|
<AppBarButton.Icon>
|
||||||
<controls:WinoFontIcon Icon="Send" />
|
<controls:WinoFontIcon Icon="Send" />
|
||||||
</AppBarButton.Icon>
|
</AppBarButton.Icon>
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace Wino.Views
|
|||||||
IRecipient<ShellStateUpdated>,
|
IRecipient<ShellStateUpdated>,
|
||||||
IRecipient<DisposeRenderingFrameRequested>
|
IRecipient<DisposeRenderingFrameRequested>
|
||||||
{
|
{
|
||||||
private const double RENDERING_COLUMN_MIN_WIDTH = 300;
|
private const double RENDERING_COLUMN_MIN_WIDTH = 375;
|
||||||
|
|
||||||
private IStatePersistanceService StatePersistenceService { get; } = App.Current.Services.GetService<IStatePersistanceService>();
|
private IStatePersistanceService StatePersistenceService { get; } = App.Current.Services.GetService<IStatePersistanceService>();
|
||||||
private IKeyPressService KeyPressService { get; } = App.Current.Services.GetService<IKeyPressService>();
|
private IKeyPressService KeyPressService { get; } = App.Current.Services.GetService<IKeyPressService>();
|
||||||
|
|||||||
Reference in New Issue
Block a user