Custom translations

  •  05-04-2010, 4:25 AM

    Custom translations

    Hi,
     
    We are using CuteEditor in a multilanguage customer application. Within this appliction there is already a functionality to translations all the text elements. It would be nice if I could use this same functionality to translate all the textelements in the CuteEditor, and not use the resource files.
     
    Is this possible in some way? I tried to loop thru all the toolbars and set and try to do this:
     
    foreach (ToolControl c in Editor1.ToolControls)
    {
       c.Name =
    TM.Get("editor", c.Name);
    }

    TM.Get("","") is my custom Translation Manager. This doesn't work because the c.Name is ReadOnly. Next to that, I dont know if this would work anyways...
     
    Can someone help me with this one?
     
     
    Regards,
     
    Paul 
View Complete Thread