Skip to content

Commit 52e0f37

Browse files
committed
oops
1 parent 78fde68 commit 52e0f37

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Snowcloak/UI/CompactUI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public CompactUi(ILogger<CompactUi> logger, UiSharedService uiShared, SnowcloakC
119119
WindowName = $"{devTitle}###SnowcloakSyncMainUIDev";
120120
Toggle();
121121
#else
122-
var windowTitle = string.Format(L("Window.Title", "Snowcloak Sync {0}"), $"{ver.Major}.{ver.Minor}.{ver.Build}");
122+
var windowTitle = string.Format("Snowcloak Sync {0}", $"{ver.Major}.{ver.Minor}.{ver.Build}");
123123
WindowName = $"{windowTitle}###SnowcloakSyncMainUI";
124124
#endif
125125
Mediator.Subscribe<SwitchToMainUiMessage>(this, (_) => IsOpen = true);

Snowcloak/UI/IntroUI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ protected override void DrawInternal()
129129
{
130130
for (int i = 10; i > 0; i--)
131131
{
132-
_timeoutLabel = string.Format(CultureInfo.InvariantCulture, L("Agreement.Timeout", "'I agree' button will be available in {0}s"), i);
132+
_timeoutLabel = string.Format(CultureInfo.InvariantCulture, "'I agree' button will be available in {0}s", i);
133133
await Task.Delay(TimeSpan.FromSeconds(1)).ConfigureAwait(false);
134134
}
135135
});

0 commit comments

Comments
 (0)