Localize flag events

This commit is contained in:
Andrew Cassidy 2020-06-08 19:50:33 -07:00
parent 492a7d0317
commit c4679acd49
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1
3 changed files with 7 additions and 5 deletions

View File

@ -3,8 +3,8 @@ Localization
en-us en-us
{ {
// AGENCIES // AGENCIES
#LOC_ConformalDecals_agent-peel-n-stick_title = Peel-N-Stik Adhesive Decals #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_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 // CATEGORIES
#LOC_ConformalDecals_category-decals_title = Decals #LOC_ConformalDecals_category-decals_title = Decals
@ -15,6 +15,8 @@ Localization
#LOC_ConformalDecals_gui-opacity = Opacity #LOC_ConformalDecals_gui-opacity = Opacity
#LOC_ConformalDecals_gui-cutoff = Cutoff #LOC_ConformalDecals_gui-cutoff = Cutoff
#LOC_ConformalDecals_gui-aspectratio = Aspect Ratio #LOC_ConformalDecals_gui-aspectratio = Aspect Ratio
#LOC_ConformalDecals_gui-select-flag = Select Flag
#LOC_ConformalDecals_gui-reset-flag = Reset Flag
// PARTS // PARTS

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:13a7bd932cbb3d6a0313eab6825908755df077b4ad0ff822dd0140fc3b69260c oid sha256:7b5be72cb4f8a55ce4459666301cd068d1e5fde8c90525585bb7ce9d4f931fd0
size 35840 size 35840

View File

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