Skip to content

Commit

Permalink
Fix some broken loc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed May 27, 2024
1 parent 0336113 commit 183f9b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions SS14.Launcher/Assets/Locale/en-US/text.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ server-entry-description-fetching = Fetching server status…
server-entry-description-error = Error while fetching server description
server-entry-description-none = No server description provided
server-fetched-from-hub = Fetched from { $hub }
server-entry-raise = Raise to top
## Strings for the "Development" tab
## These aren't shown to users so they're not very important
Expand Down
2 changes: 1 addition & 1 deletion SS14.Launcher/Views/MainWindowTabs/ServerEntryView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<!-- Raise to top button. -->
<Button IsVisible="{Binding ViewedInFavoritesPane}"
Classes="OpenLeft"
Content="Raise to top"
Content="{loc:Loc server-entry-raise}"
Command="{Binding FavoriteRaiseButtonPressed}" />
</DockPanel>
</views:RowSideAlignedPanel>
Expand Down
2 changes: 1 addition & 1 deletion SS14.Launcher/Views/MainWindowTabs/ServerListTabView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Button DockPanel.Dock="Right" Content="{loc:Loc tab-servers-refresh}" Command="{Binding RefreshPressed}" Classes="OpenLeft" />
<ToggleButton DockPanel.Dock="Right" IsChecked="{Binding FiltersVisible}" Classes="OpenRight"
Content="{Binding Filters.FiltersText}" />
<TextBox DockPanel.Dock="Right" Text="{Binding SearchString, Mode=TwoWay}" Watermark="Search For Servers..."
<TextBox DockPanel.Dock="Right" Text="{Binding SearchString, Mode=TwoWay}" Watermark="{loc:Loc tab-servers-search-watermark}"
UseFloatingWatermark="False"
Margin="0 0 8 0" />
</DockPanel>
Expand Down

0 comments on commit 183f9b8

Please sign in to comment.