Skip to main content

Step by Step: Setup multi language support in SharePoint 2010

http://www.denisstadler.com/sharepoint-2010/sharepoint-2010-publishing-feature/set-up-multilingual-support-in-sharepoint-2010/

Before deploying multi language support you need to download the wanted language pack for SharePoint from Microsoft web site. Check out this older post – Adding language packs to SharePoint 2010 which describes how to get and deploy the German language pack.
Then if you are not already using a Publishing site template on your site collection, you have to enable the Publishing Infrastructure. This is done in two steps:
  • at the site collection features level: click on Site Actions -> Site Settings -> Site collection features (Under Site Collection Administration) and activate SharePoint Server Publishing Infrastructure
  • at the site features level: click on Site Actions -> Site Settings -> Manage site features (Under Site Actions) and activate SharePoint Server Publishing
Now under Site Collection Administration you should see the Variation links.

Please click on the Variation link. You will have to choose between multiple settings, but in my opinion the most important are: Variation Home – this is the starting point for your multilingual web site; in theory the value here should be “/” (root) and the Resource – here I would choose Reference existing resources – because I think that it won’t be nice to multiply the same picture on all translated sites. At the end click OK and you will see a message saying that a scheduled job has been created and it will be run between 00:00 and 03:00.
Now open the Variation Label link and create a the Source Variation Label (in my example this is English, so the value for the Site Template Language drop down is English). Please check the Set this variation to be the source variation checkbox under Source Hierarchy and choose wisely the Publishing site template which you want to use for the variations. This setting cannot be change afterwards. Click OK.
Please create another label for the German language (if you have installed the German Language Pack you should be able to choose German in the Site Template Language drop down). Now click on the Create Hierarchies button.
Next if you want to accelerate the creation process, open the SharePoint 2010 Central Administration site. Go to Monitoring -> Check Job Status (under Timer Jobs). Identify you Variation Create Hierarchies Job Definition, open it and click the Run Now button.
Please be aware of the following:
  • when you are going to access your site, as an example http://site you will be redirected to http://site/English (which is my default variation!!!, so you will be redirected to your default variation)
  • you have to force the run of Variation Create Job Definition in order to replicate the content under the default variation.
  • you have to edit / translate and publish the content under the secondary variation etc.
If everything is ok you should see the languages into your sites menu.

Comments

Popular posts from this blog

[Solved] SharePoint 2013 And Adobe Reader Problem : The URL you have provided could not be reached. Please verify that the URL is correct and that the network location is reachable

Dear All  When trying to open a PDF file from a mapped drive in SharePoint 2010.  You might see the following error message. The URL you have provided could not be reached. Please verify that the URL is correct and that the network location is reachable. 1. Open the registry. 2. Go to HKLM Local Software\SOFTWARE\Policies\Adobe\\\FeatureLockDown. 3. Create a key called cSharePoint. 4. Create a DWORD value called bDisableSharePointFeatures. 5. Set its value to 1. Regards Rashid Imran Bilgrami CEO Best visualization http://www.bestvisualization.com  

SharePoint: A Complete Guide to Getting and Setting Fields using C#

Original article https://social.technet.microsoft.com/wiki/contents/articles/21801.sharepoint-a-complete-guide-to-getting-and-setting-fields-using-c.aspx Introduction This article demonstrates how to set and get the various SPField types for a SharePoint list using C#. The examples demonstrated set and get fields from an item that belongs to a custom list. The custom list contains a number of fields, and all the fields are named based on the type of field they are. For example, there is a Text field, which has been named, textfield. This is depicted in the following picture:   Applies To The examples demonstrated below are tested with and apply to the following versions of SharePoint: SharePoint 2010 SharePoint 2013 Get the List, and the first SPListItem This is the basic code for getting an item. If the list has at least one item, the first item is retrieved, otherwise a new item is created. var web = SPContext.Current.Site.RootWeb; var list = web.Lists...

Updatepanel or Enable Ajax in SharePoint webpart

Dear All It is really giving me a hard to get this techniques if you want to run the update panel in sharepoint 2013 webpart then you need to initialize the script manage by code   protected override void OnInit(EventArgs e)         {             base.OnInit(e);             InitializeControl();             // Register the ScriptManager             ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);             if (scriptManager == null)             {                 scriptManager = new ScriptManager();                 scriptManager.ID = "ScriptManager1";                 scriptManager.EnablePartialRendering = true;       ...