
Tips.Net > WordTips Home > Tools > Languages > Stubborn Foreign Languages
Summary: Word is a program designed to work in and with multiple languages. This can lead to some problems, however, for those users who end up with documents formatted for multiple languages. This tip explains some of the ways you can force a document to pay attention to a single language rather than multiple languages. (This tip works with Microsoft Word 2000, Word 2002, and Word 2003.)
Fred describes a problem where he works with documents that he receives from users in other countries. Fred does all his work using English (US) as his document language. When he receives documents from others, he copies pieces and parts of those documents into his own documents. What he ends up with is a document in which some paragraphs are set to English (US), some to Dutch (Netherlands), and some for German. It seems that when Fred tries to select those parts of the document (or even the entire document) and set them to English (US), it doesn't work--Word still sticks with the original, source languages.
The first thing you need to do is make sure that your system is really set to use English (US) as your default language. Assuming you are using Word 2000 or a later version, you need to disable the Office capability that allows Word to try to figure out which language you are using in a paragraph. Get out of Word and start the Office Language Settings utility. (Click here to see a related figure.) (Click Start, choose Programs, select Microsoft Office Tools, and then run Microsoft Office Language Settings.)
The utility differs a bit based on the version of Office installed on your system, but in essence you want to make sure that there are no languages selected except English (US). There should be a list of available languages shown, along with a list of languages that are enabled. Make sure that English (US) is the only one enabled, and then exit the utility. The reason you do this--set only English (US)--is because it stops Word from trying to read your mind (well, your document text) and setting the language of the paragraph based on what it thinks it should be.
Next you will want to set, within Word, English (US) as your default language. Start Word; you should have a blank document on the screen. Choose Tools | Language | Set Language to display the Language dialog box. (Click here to see a related figure.)
Make sure that English (US) is selected in the language list (it should be selected automatically) and make sure the Automatically Select Language check box is cleared. Click the Default button, then close the dialog box. If you regularly use different templates on your system, you will need to go through this same process for each template you use. (The Default button affects only the template on which the open document is based.)
Finally, if you have any existing documents that have different languages set within them, you will need to make changes to those documents. One way to do so is to use Find and Replace to change the language assigned to each paragraph:
Word should replace the language used for all instances of paragraphs in the document. If you have a lot of documents you need to change, or if you need to make the changes often, then a macro is a better approach. The following macro will step through all paragraph styles in a document and modify the language setting for each paragraph to English (US).
Sub StyleUS_English()
Dim oStyle As Style
Dim MyStyle As Variant
For Each oStyle In ActiveDocument.Styles
If oStyle.InUse = True Then
On Error Resume Next
With ActiveDocument.Content.Find
.Style = oStyle.NameLocal
End With
MyStyle = oStyle
'Do not modify any character styles
If InStr(MyStyle, " Char") = 0 Then
oStyle.LanguageID = wdEnglishUS
End If
On Error GoTo 0
End If
Next oStyle
End Sub
Tip #285 applies to Microsoft Word versions: 2000 2002 2003
Great Idea! Uncover the many ways you can master the full potential of printing your documents. WordTips: Printing and Printers can help you get the most from both the printed page and your printer.
Thousands of WordTips, available for immediate download. Have all the Microsoft Word info you need, right at your fingertips. (more information...)
Ask a Word Question
Make a Comment
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips