Skip to content

Commit

Permalink
Merge branch 'master' into 2024-11-30-moth-food
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir001 authored Dec 1, 2024
2 parents 091dec5 + 26d5c50 commit 513c0c3
Show file tree
Hide file tree
Showing 10 changed files with 192 additions and 130 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public Dictionary<NetEntity, List<DockingPortState>> GetAllDocks()
_xformQuery.TryGetComponent(comp.DockedWith, out var otherDockXform) ?
GetNetEntity(otherDockXform.GridUid) :
null,
LabelName = comp.Name, // Frontier: docking labels
LabelName = comp.Name != null ? Loc.GetString(comp.Name) : null, // Frontier: docking labels
};

gridDocks.Add(state);
Expand Down
12 changes: 12 additions & 0 deletions Resources/Changelog/Frontier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5621,3 +5621,15 @@ Entries:
message: modified aspects of the Ambition to comply with ship guidelines.
id: 5544
time: '2024-11-30T18:00:47.0000000+00:00'
- author: whatston3
changes:
- type: Add
message: Localized dock names.
id: 5545
time: '2024-11-30T22:59:36.0000000+00:00'
- author: whatston3
changes:
- type: Remove
message: Cryoxadone no longer restores blood.
id: 5546
time: '2024-12-01T16:08:58.0000000+00:00'
48 changes: 48 additions & 0 deletions Resources/Locale/en-US/_NF/dock/dock.ftl
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
dock-label-station-one-a = 1A
dock-label-station-one-b = 1B
dock-label-station-one-c = 1C
dock-label-station-two-a = 2A
dock-label-station-two-b = 2B
dock-label-station-two-c = 2C
dock-label-station-three-a = 3A
dock-label-station-three-b = 3B
dock-label-station-three-c = 3C
dock-label-station-four-a = 4A
dock-label-station-four-b = 4B
dock-label-station-four-c = 4C
dock-label-station-five-a = 5A
dock-label-station-five-b = 5B
dock-label-station-five-c = 5C
dock-label-station-six-a = 6A
dock-label-station-six-b = 6B
dock-label-station-six-c = 6C
dock-label-station-seven-a = 7A
dock-label-station-seven-b = 7B
dock-label-station-seven-c = 7C
dock-label-trade-cargo-bay-one = CB1
dock-label-trade-cargo-bay-two = CB2
dock-label-trade-cargo-bay-three = CB3
dock-label-trade-cargo-bay-four = CB4
dock-label-trade-four = D4
dock-label-trade-four-a = D4A
dock-label-trade-four-b = D4B
dock-label-trade-four-c = D4C
dock-label-trade-five = D5
dock-label-trade-five-a = D5A
dock-label-trade-five-b = D5B
dock-label-trade-five-c = D5C
dock-label-trade-six = D6
dock-label-trade-six-a = D6A
dock-label-trade-six-b = D6B
dock-label-trade-six-c = D6C
dock-label-trade-seven = D7
dock-label-trade-seven-a = D7A
dock-label-trade-seven-b = D7B
dock-label-trade-seven-c = D7C
dock-label-bus = Bus Dock
dock-label-janitor = Jani
dock-label-guard = Guard
dock-label-nfsd = NFSD
dock-label-drive-thru = McDrive Thru
Loading

0 comments on commit 513c0c3

Please sign in to comment.