Skip to main content

Installing a Language Pack for MOSS

The multi-lingual capabilities in MOSS are very cool. You can create sites in non-English languages simply by installing the appropriate language pack. This is especially slick when you are using variations (will cover this in another post). Note, the installation process is not very intuitive so I’ll provide details below.



1. Download the appropriate files.

a. For MOSS, you will need the MOSS and WSS files

b. Remember there are specific 64bit versions

c. On each of the download pages, change the language in the selector to the language pack you want

d. Here are your download links

i. WSS Language pack http://www.microsoft.com/downloads/details.aspx?FamilyId=36EE1BF0-652C-4E38-B247-F29B3EEFA048&displaylang=en

ii. WSS Language pack SP1 http://www.microsoft.com/downloads/details.aspx?familyid=EF93E453-75F1-45DF-8C6F-4565E8549C2A&displaylang=en

iii. MOSS Language pack http://www.microsoft.com/downloads/details.aspx?FamilyId=2447426B-8689-4768-BFF0-CBB511599A45&displaylang=en

iv. MOSS Language pack SP1 http://www.microsoft.com/downloads/details.aspx?familyid=1F5C7D10-B4F9-482D-B0E5-9547A7F508E5&displaylang=en

2. Install the files

a. The install wizard will be in the language of the language pack… so know how to say ‘Next’ in that language!... or practice on the English version

b. Follow these steps

i. Install WSS Language Pack (don’t run the MOSS Configuration Wizard)

ii. Install MOSS Language Pack (don’t run the MOSS Configuration Wizard)

iii. Install WSS Language Pack SP1 (don’t run the MOSS Configuration Wizard)

iv. Install MOSS Language Pack SP1

v. Run the MOSS Configuration Wizard (choose to not disconnect from farm)

3. Test

a. Create a new site; you should see a drop down for Language which includes your newly installed language

b. Go to the new site and learn how to say ‘Site Actions, ‘Edit Page’ in a foreign language!

Comments

Popular posts from this blog

How to get SPUser or SPGroup from Person or Group field

You have person or group field in SharePoint list and you want to programmatically get the user or person. The below code to gets SPUser from User or Group field in the list when multiple choice and Groups are not allowed in the field: //get SPUser SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(item["Users"].ToString()); SPUser user = userFieldValue.User; This part of code would help you to get SPUser when multiple choice is allowed and groups are not allowed: //Multiple choices are allowed SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString()); foreach (SPFieldUserValue userFieldValue in userFieldValueCollection) {     Console.WriteLine("     " + userFieldValue.User.LoginName); } And when group

SharePoint publishing page scheduling

In SharePoint 2010 publishing enabled team site collection is not showing schedule button in publish ribbon. Solution: Here is how to enable it  though the UI: Locate the SharePoint Server Web site on which you want to enable content approval and item scheduling. Click  Site Actions , click  Site Settings , and then click  Modify Pages Library Settings . Under  General Settings , click  Versioning Settings . Click  Yes  next to  Content Approval , and then click  OK . Click  Manage item scheduling .   Click to enable the  Enable scheduling of items in this list  check box, and then click  OK .

Changing Content Type Hub URL

Change the Hub URL through powershell by using: Set-SPMetadataServiceApplication -Identity " " -HubURI " " For Ex: Set-SPMetadataServiceApplication -Identity "Managed Metadata Service" -HubURI "http://contenttype.Domain.Com" When you try to do this you get this rather scary message: This is SharePoint telling you that this is a major thing so be careful! Essentially all your content types that you have published out will be removed if they can, and you have to republish all of your content types out again which can cause some issue.