Skip to content

Commit

Permalink
New tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
DMagic1 committed Feb 10, 2017
1 parent 16e957d commit c5d00b0
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
15 changes: 15 additions & 0 deletions SCANassets/Resources/SCANlocalization.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,21 @@ SCAN_Localization
overlayRefresh = Map Refresh
insNextResource = Next Resource
insPreviousResource = Previous Resource
zoomVesselSync = Sync Current Vessel
zoomVesselLock = Lock Position To Vessel
zoomMapRefresh = Map Refresh
zoomMapWindowState = Toggle Window Size
zoomMapIn = Zoom In
zoomMapOut = Zoom Out
zoomMapLeft = Shift Left
zoomMapRight = Shift Right
zoomMapUp = Shift Up
zoomMapDown = Shift Down
zoomMapIcons = Map Icons
waypointToggle = Waypoint Selector
waypointSet = Create Waypoint
waypointCancel = Cancel Waypoint
waypointMechJeb = Set MechJeb Landing Target
}
}
}
32 changes: 32 additions & 0 deletions SCANsat/SCAN_UI/UI_Framework/SCANlanguagePack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,39 @@ public class SCANlanguagePack : SCAN_ConfigNodeStorage
[Persistent]
public string insPreviousResource = "Previous Resource";

//Zoom Map tooltips
[Persistent]
public string zoomVesselSync = "Sync Current Vessel";
[Persistent]
public string zoomVesselLock = "Lock Position To Vessel";
[Persistent]
public string zoomMapRefresh = "Map Refresh";
[Persistent]
public string zoomMapWindowState = "Toggle Window Size";
[Persistent]
public string zoomMapIn = "Zoom In";
[Persistent]
public string zoomMapOut = "Zoom Out";
[Persistent]
public string zoomMapLeft = "Shift Left";
[Persistent]
public string zoomMapRight = "Shift Right";
[Persistent]
public string zoomMapUp = "Shift Up";
[Persistent]
public string zoomMapDown = "Shift Down";
[Persistent]
public string zoomMapIcons = "Map Icons";

//Waypoint tooltips
[Persistent]
public string waypointToggle = "Waypoint Selector";
[Persistent]
public string waypointSet = "Create Waypoint";
[Persistent]
public string waypointCancel = "Cancel Waypoint";
[Persistent]
public string waypointMechJeb = "Set MechJeb Landing Target";

public override void OnDecodeFromConfigNode()
{
Expand Down

0 comments on commit c5d00b0

Please sign in to comment.