IntroductionIn this article you will be seeing how to localize site columns in SharePoint 2010 using Visual Studio 2010. Steps InvolvedThe following steps must be performed to localize the site columns in SharePoint 2010 using Visual Studio 2010:
Create Empty SharePoint Project
Create Resource files
Add Empty Element
<?xmlversion="1.0"encoding="utf-8"?><Elementsxmlns="http://schemas.microsoft.com/sharepoint/"> <FieldID="{E6D3305E-6879-4935-AE56-88F2D526258E}" Name="EmployeeName" DisplayName="$Resources:LocalizeColumns,EmployeeName" Type="Text"></Field> <FieldID="{EF87891F-7726-4772-B5EA-B435924EBFA2}" Name="Designation" DisplayName="$Resources:LocalizeColumns,Designation" Type="Text"></Field> <FieldID="{82266CE8-AEF5-478C-9CDA-B86FED9EDEAE}" Name="Location" DisplayName="$Resources:LocalizeColumns,Location" Type="Text"></Field> </Elements>
Deploy the solution
Test the Localized columns
Note: Make sure the language packs are installed in the SharePoint server.SummaryThus in this article you have seen how to localize site columns in SharePoint 2010 using Visual Studio 2010.