Skip to content

Commit

Permalink
Added Langurage File entry for the area Selection
Browse files Browse the repository at this point in the history
  • Loading branch information
Sn1p3rr3c0n committed Oct 13, 2020
1 parent 8f768f9 commit bc79b99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Languages/English/Keyed/AllKeyed_Other.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<PRFDroneStationLockdownAllDesc>Activate the Lockdown for all drone stations on the map.</PRFDroneStationLockdownAllDesc>
<PRFDroneStationLiftLockdownAll>Reactivate all</PRFDroneStationLiftLockdownAll>
<PRFDroneStationLfttLockdownAllDesc>Lift the Lockdown for all drone stations on the map.</PRFDroneStationLfttLockdownAllDesc>
<PRFDroneStationSelectArea>{0}\nSelect Area</PRFDroneStationSelectArea>

<ITab_DroneStation_labelKey>Settings</ITab_DroneStation_labelKey>
<ITab_DroneStation_InfoLabel>Toggle Jobs for this Drone Station</ITab_DroneStation_InfoLabel>
Expand Down
4 changes: 2 additions & 2 deletions Source/ProjectRimFactory/Drones/Building_DroneStation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,11 @@ private void update_droneAreaSelectorLable(Area a)
{
if (a == null)
{
droneAreaSelectorLable = "Unrestricted\nSelect Area";
droneAreaSelectorLable = "PRFDroneStationSelectArea".Translate("Unrestricted".Translate());
}
else
{
droneAreaSelectorLable = a.Label + "\nSelect Area";
droneAreaSelectorLable = "PRFDroneStationSelectArea".Translate(a.Label);
}
}

Expand Down

0 comments on commit bc79b99

Please sign in to comment.