Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinary1 committed Oct 21, 2024
1 parent 5df71a5 commit 794ff8c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Content.Client/_Sunrise/Roadmap/Roadmap.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ private void PopulateRoadmap(RoadmapVersionsPrototype roadmapVersions)
{
var roadmapItem = new RoadmapItem()
{
HeaderText = Loc.TryGetString($"{goal.Value.ID}-name", out var name) ? name : goal.Value.Name,
Text = Loc.TryGetString($"{goal.Value.ID}-desc", out var desc) ? desc : goal.Value.Desc,
HeaderText = Loc.TryGetString($"{goal.Value.Id}-name", out var name) ? name : goal.Value.Name,
Text = Loc.TryGetString($"{goal.Value.Id}-desc", out var desc) ? desc : goal.Value.Desc,
ItemState = goal.Value.State,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public sealed partial class RoadmapGroup
public sealed partial class RoadmapGoal
{
[DataField]
public string ID { get; set; } = string.Empty; //Хуйня нужная для локализации, не трогать
public string Id { get; set; } = string.Empty; //Хуйня нужная для локализации, не трогать

[DataField]
public string Name { get; set; } = string.Empty;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ assault-ops-name = Диверсионый отряд
assault-ops-desc = Отряд наемников, цель которого незаметно совершать диверсии на станции, нарушая ее работу.
ert-call-name = Консоль вызова ОБР
ert-call-desc = Консоль с помощью которой можно вызвать обр.
SSSP-name = Станция СССП
SSSP-desc = Отдельная станция СССП с своими задачами на смену.
ussp-name = Станция СССП
ussp-desc = Отдельная станция СССП с своими задачами на смену.
vent-crawling-name = Передвижение по вентиляции
vent-crawling-desc = Возможность мелким существам и разным антагонистами передвигаться по вентиляционной системе.
flesh-cult-name = Культ плоти
Expand Down
5 changes: 3 additions & 2 deletions Resources/Prototypes/_Sunrise/roadmap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
name: ERT Call Console
desc: A console that can be used to call an ERT.
state: InProgress
USSP:
id: USSP
ussp:
id: ussp
name: USSP Station
desc: A separate station of the USSP with its own shift tasks.
state: InProgress
Expand Down Expand Up @@ -211,6 +211,7 @@
name: 2026
goals:
ratvar:
id: ratvar
name: Ratvar Cult
desc: A cult worshipping a mechanical god.
state: Planned

0 comments on commit 794ff8c

Please sign in to comment.