sl@0: Contents sl@0: -------- sl@0: sl@0: 1. How do I internationalize a Word template? sl@0: 1.1 For Word with a single "normal" template? sl@0: 1.2 For Word with multiple templates? sl@0: sl@0: ------------------------------------------------------------------------ sl@0: sl@0: 1. How do I internationalize a Word template? sl@0: 1.1 For Word with a single "normal" template? sl@0: sl@0: It depends on the version of Word, if it's word with templates sl@0: sl@0: You write a tool to do this (please!): sl@0: sl@0: Get WORD and WPENG, and associated components. sl@0: sl@0: WPENG: sl@0: sl@0: Remove the comments from CWordModel::ConstructL() around this code: sl@0: iStyleList=NULL; sl@0: iStyleShortCutList=NULL; sl@0: iStyleList=CStyleList::NewL(); sl@0: iStyleShortCutList=new(ELeave) CStyleShortCutList(3); sl@0: for (TInt ii=0;ii<3;ii++) sl@0: { sl@0: CParagraphStyle* style=CParagraphStyle::NewL(*iParaFormatLayer,*iCharFormatLayer); sl@0: RParagraphStyleInfo info(style); sl@0: iStyleList->AppendL(&info); sl@0: } sl@0: iStyleList->At(0).iStyle->SetType(KSystemParagraphStyleUid); sl@0: iStyleList->At(0).iStyle->iName=_L("Heading 1"); sl@0: iStyleList->At(1).iStyle->SetType(KSystemParagraphStyleUid); sl@0: iStyleList->At(1).iStyle->iName=_L("Heading 2"); sl@0: iStyleList->At(2).iStyle->SetType(KSystemParagraphStyleUid); sl@0: iStyleList->At(2).iStyle->iName=_L("Heading 3"); sl@0: iStyleShortCutList->AppendL('1'); sl@0: iStyleShortCutList->AppendL('2'); sl@0: iStyleShortCutList->AppendL('3'); sl@0: iNormalStyleShortCut='N'; sl@0: sl@0: Rename "Heading" and shortcuts above to your desired heading and sl@0: shortcut text. sl@0: sl@0: WORD: sl@0: sl@0: In CWordDocument::NewDocumentL() sl@0: sl@0: comment out these two lines: sl@0: sl@0: LocateTemplateL(templateFileName); sl@0: // sl@0: DoNewDocumentL(templateFileName); sl@0: sl@0: Start Word in the emulator. When Word has opened, close it straight sl@0: away. Open the document created (probably C:\Documents\Word) in word. sl@0: You are now fine to edit the style information, the text should be sl@0: OK. sl@0: sl@0: Don't forget all the other Word settings, such as Object view (set to sl@0: ICONIC by default - should be glass door) and printer settings (set to sl@0: Printer via PC for normal font information) sl@0: sl@0: ------------------------------------------------------------------------ sl@0: sl@0: 1.2 For Word with a single "normal" template? sl@0: sl@0: This hasn't been documented yet, though it shouldn't be radically sl@0: different from the above. Use your initiative. sl@0: