Localize flag events

feature-multiSDF
Andrew Cassidy 4 years ago
parent a4c46b94d2
commit f098e922cb

@ -3,8 +3,8 @@ Localization
en-us
{
// AGENCIES
#LOC_ConformalDecals_agent-peel-n-stick_title = Peel-N-Stik Adhesive Decals
#LOC_ConformalDecals_agent-peel-n-stick_description = Creators of premium stickers and decals for over 50 years, Peel-N-Stik only recently broke into the aerospace industry after noticing the increased demand for branding on rockets and aircraft.
#LOC_ConformalDecals_agent-peel-n-stick_title = Peel-N-Stik Adhesive Decals
#LOC_ConformalDecals_agent-peel-n-stick_description = Creators of premium stickers and decals for over 50 years, Peel-N-Stik only recently broke into the aerospace industry after noticing the increased demand for branding on rockets and aircraft.
// CATEGORIES
#LOC_ConformalDecals_category-decals_title = Decals
@ -15,6 +15,8 @@ Localization
#LOC_ConformalDecals_gui-opacity = Opacity
#LOC_ConformalDecals_gui-cutoff = Cutoff
#LOC_ConformalDecals_gui-aspectratio = Aspect Ratio
#LOC_ConformalDecals_gui-select-flag = Select Flag
#LOC_ConformalDecals_gui-reset-flag = Reset Flag
// PARTS

@ -58,13 +58,13 @@ namespace ConformalDecals {
base.OnDestroy();
}
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "Select Flag")]
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "#LOC_ConformalDecals_gui-select-flag")]
public void SelectFlag() {
var flagBrowser = (Instantiate((Object) (new FlagBrowserGUIButton(null, null, null, null)).FlagBrowserPrefab) as GameObject).GetComponent<FlagBrowser>();
flagBrowser.OnFlagSelected = OnCustomFlagSelected;
}
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "Reset Flag")]
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "#LOC_ConformalDecals_gui-reset-flag")]
public void ResetFlag() {
SetFlag(MissionFlagUrl);
SetFlagSymmetryCounterparts(MissionFlagUrl);

Loading…
Cancel
Save