I'm attempting to use the localizations features for the first time and I'm struggling with the module actions menu.
I got this part fine -
Actions.Add(GetNextActionID, Localization.GetString(Entities.Modules.Actions.ModuleActionType.AddContent, LocalResourceFile), Entities.Modules.Actions.ModuleActionType.ContentOptions, "", "", EditUrl(), False, DotNetNuke.Security.SecurityAccessLevel.Edit, True, False)
I also got the AddContent.Action and value = "Edit Page Name" no porblems
What I'm struggling with is adding additional edit controls to the same view module. All I can get is the same control title duplicated if I add additional items to the .resx file and make another call to actions.add .
What I want is a menu that says something like:
Add Items
Edit Item Categories
Module Settings
What I can get it
Add Items
Add Items
Module Settings
I'm not understanding what all name/value pairs are possible in the .resx file (that apply to the menu - I understand the general localization naming). Documentation doesn't seem to have much on it in the DNN Book or the DNN Project documentation. They both kinda breeze through these without really explaining it.
Many thanks.