Skip to content

Commit

Permalink
feat(ui): Change shipyard ui labels for consistency with `BankATMMenu…
Browse files Browse the repository at this point in the history
…` and `CargoPalletMenu` (#998)
  • Loading branch information
exincore authored Feb 11, 2024
1 parent e356c38 commit f1d8141
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
18 changes: 16 additions & 2 deletions Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,22 @@
SetSize="500 360"
MinSize="460 280">
<BoxContainer Orientation="Vertical" Margin="5 0 5 0">
<Label Name="BankAccountLabel" />
<Label Name="ShipSellValueLabel" />
<BoxContainer Orientation="Vertical">
<BoxContainer Orientation="Horizontal">
<Label Text="{Loc 'cargo-shipyard-console-bank-label'}"
StyleClasses="LabelKeyText" />
<Label Name="BankAccountLabel"
Text="{Loc 'shipyard-console-no-bank'}" />
</BoxContainer>
</BoxContainer>
<BoxContainer Orientation="Vertical">
<BoxContainer Orientation="Horizontal">
<Label Text="{Loc 'cargo-shipyard-console-sell-label'}"
StyleClasses="LabelKeyText" />
<Label Name="ShipSellValueLabel"
Text="{Loc 'shipyard-console-no-deed'}" />
</BoxContainer>
</BoxContainer>
<BoxContainer Orientation="Horizontal">
<OptionButton Name="Categories"
Prefix="{Loc 'cargo-console-menu-categories-label'}"
Expand Down
6 changes: 4 additions & 2 deletions Resources/Locale/en-US/_NF/cargo/cargo-console-component.ftl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Cargo shipyard console
cargo-shipyard-console-bank-amount = Bank spesos:${$amount}
cargo-shipyard-console-sell-value = Shuttle estimated value:${$value}
cargo-shipyard-console-bank-label = Account Balance:{" "}
cargo-shipyard-console-bank-amount = ${$amount}
cargo-shipyard-console-sell-label = Shuttle Estimated Value:{" "}
cargo-shipyard-console-sell-value = ${$value}

0 comments on commit f1d8141

Please sign in to comment.