Custom labels are custom text values that can be accessed from Apex classes or Visualforce pages. The values can be translated into any language Salesforce supports. Custom labels enable developers to create multilingual applications by automatically presenting information (for example, help text or error messages) in a user’s native language.
You can create up to 5,000 custom labels for your organization, and they can be up to 1,000 characters in length.
1. Go to Setup –> App Setup –> Custom Labels.
2. Click ‘New Custom Label’ Button.

3. Fill in the details and Click ‘Save’ button.

Calling Custom Label in Visualforce page:
Use the global variable $Label to access the Custom Label value in Visualforce page.
Sample Code:
<apex:page standardController="Account" extensions="sample">
<h1>Example for Custom labels</h1>
<apex:outputLabel value="{!$Label.Sample}"/>
</apex:page>
Using Custom Label in Apex Class:
Custom labels are called in Apex using System.Label.Label_name.
Sample Code:
String strSample = System.Label.Sample;
Nice Post
helpful
Nice post…
can you show some more with other languages
Hi ,
how to use vf page for different languages
ex:when user from spain login page should be in spanish and when user from India login it'll be English with single page how can we achieve this
custom label translations
nice one
thanks
useful