Skip to content

Commit 368f068

Browse files
authored
chore: rename CoderVPN to Coder Connect in UI (#59)
Part of coder/internal#458
1 parent 24853b0 commit 368f068

5 files changed

+9
-9
lines changed

App/ViewModels/TrayWindowViewModel.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ private async Task StartVpn()
234234
}
235235
catch (Exception e)
236236
{
237-
VpnFailedMessage = "Failed to start CoderVPN: " + MaybeUnwrapTunnelError(e);
237+
VpnFailedMessage = "Failed to start Coder Connect: " + MaybeUnwrapTunnelError(e);
238238
}
239239
}
240240

@@ -246,7 +246,7 @@ private async Task StopVpn()
246246
}
247247
catch (Exception e)
248248
{
249-
VpnFailedMessage = "Failed to stop CoderVPN: " + MaybeUnwrapTunnelError(e);
249+
VpnFailedMessage = "Failed to stop Coder Connect: " + MaybeUnwrapTunnelError(e);
250250
}
251251
}
252252

App/Views/Pages/TrayWindowDisconnectedPage.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
Spacing="10">
1818

1919
<TextBlock
20-
Text="CoderVPN"
20+
Text="Coder Connect"
2121
FontSize="18"
2222
VerticalAlignment="Center" />
2323
<TextBlock
2424
TextWrapping="Wrap"
25-
Text="Could not connect to the CoderVPN system service." />
25+
Text="Could not connect to the Coder Connect system service." />
2626
<TextBlock
2727
TextWrapping="Wrap"
2828
Margin="0,0,0,10"

App/Views/Pages/TrayWindowLoadingPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Spacing="10">
1717

1818
<TextBlock
19-
Text="CoderVPN"
19+
Text="Coder Connect"
2020
FontSize="18"
2121
VerticalAlignment="Center" />
2222
<TextBlock

App/Views/Pages/TrayWindowLoginRequiredPage.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
Spacing="10">
1818

1919
<TextBlock
20-
Text="CoderVPN"
20+
Text="Coder Connect"
2121
FontSize="18"
2222
VerticalAlignment="Center" />
2323
<TextBlock
24-
Text="Please sign in to use Coder VPN."
24+
Text="Please sign in to use Coder Connect."
2525
Margin="0,0,0,10" />
2626

2727
<controls:HorizontalRule />

App/Views/Pages/TrayWindowMainPage.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
<TextBlock
4242
Grid.Column="0"
43-
Text="CoderVPN"
43+
Text="Coder Connect"
4444
FontSize="18"
4545
VerticalAlignment="Center" />
4646
<ProgressRing
@@ -71,7 +71,7 @@
7171
Visibility="{x:Bind ViewModel.ShowFailedSection, Converter={StaticResource BoolToVisibilityConverter}, Mode=OneWay}" />
7272

7373
<TextBlock
74-
Text="Enable CoderVPN to view your workspaces."
74+
Text="Enable Coder Connect to view your workspaces."
7575
TextWrapping="Wrap"
7676
Margin="0,6,0,6"
7777
Visibility="{x:Bind ViewModel.ShowEnableSection, Converter={StaticResource BoolToVisibilityConverter}, Mode=OneWay}"

0 commit comments

Comments
 (0)