I'm working with the Christoc Module Template, trying to create a module with localized text. I've added a new User Control called TeamList.ascx to the project, and to the App_LocalResources folder I've added two new files:
TeamList.ascx.resx and TeamList.ascx.fr-CA.resx (for Canadian french).
I can include the user control in my view with no issues, but when the module loads on the page, all of the places containing localized text are blank.
I have tried registering the user control by including:
<moduleControl>
<controlKey>Teams</controlKey>
<controlSrc>
DesktopModules/LTSC_DashboardModule/TeamList.ascx
</controlSrc>
<supportsPartialRendering>False</supportsPartialRendering>
<controlTitle>Team Control</controlTitle>
<controlType>View</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
<supportsPopUps>True</supportsPopUps>
</moduleControl>
...in the DNN manifest file, but it has no effect.
I'm not sure what I'm missing here. I think it's probably something simple.
Thanks in advance for any help.