I have one windows form which is having textboxes and multiline textboxes in it.
I am using telerik Spell checker to use it with these controls.
I am initiating the Spell checker by click on a menu button in the form.
Now my issue is how can i localize this Spell checker popup window.
My form is localized using the resource files.
As well as how can i add dictionaries for these spell checker work with different languages.
We are using given bellow class, but "RadSpellCheckerLocalizationProvider" class is missing in any of the used namespaces. Please provide the DLL name in which that class is available or advise us how to proceed.
Please reply i am not able to move further without this.
As we are developing this prototype for another company, they had already purchased this control. We have informed them to add us as licensed developer for this.
I am using telerik Spell checker to use it with these controls.
I am initiating the Spell checker by click on a menu button in the form.
Now my issue is how can i localize this Spell checker popup window.
My form is localized using the resource files.
As well as how can i add dictionaries for these spell checker work with different languages.
We are using given bellow class, but "RadSpellCheckerLocalizationProvider" class is missing in any of the used namespaces. Please provide the DLL name in which that class is available or advise us how to proceed.
Please reply i am not able to move further without this.
Imports Telerik.WinControls.UI.Localization Imports Telerik.WinControls.UI Imports Telerik.WinControls.UI.Design Imports Telerik.WinControls Imports Telerik.WinControls.Localization Class MyEnglishSpellCheckerLocalizationProvider Inherits RadSpellCheckerLocalizationProvider Public Overrides Function GetLocalizedString(id As String) As String Select Case id Case RadSpellCheckerStringId.Title Return "Spell Checking" Case RadSpellCheckerStringId.OK Return "OK" Case RadSpellCheckerStringId.Cancel Return "Cancel" Case RadSpellCheckerStringId.Close Return "Close" Case RadSpellCheckerStringId.Change Return "Change" Case RadSpellCheckerStringId.Complete Return "The spelling check is complete." Case RadSpellCheckerStringId.AddToDictionary Return "Add to Dictionary" Case RadSpellCheckerStringId.IngoreAll Return "Ignore All" Case RadSpellCheckerStringId.Suggestions Return "Suggestions:" Case RadSpellCheckerStringId.ChangeTo Return "Change To:" Case RadSpellCheckerStringId.NotInDictionary Return "Not in Dicitionary:" End Select Return Nothing End Function End Class
As we are developing this prototype for another company, they had already purchased this control. We have informed them to add us as licensed developer for this.