function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
LatifulLatiful 

Visual Force API

What does it mean by <apex:outputText value="{!$Label.site.stay_tuned}"/>? How do I know all key and values about $Label? How to add and change those? Is there any reference website for it to see all variables? Any Visual Force API?

Best Answer chosen by Admin (Salesforce Developers) 
AvromAvrom

In answer to your more general question, take a look at this page from the VisualForce developer's guide.

All Answers

Anand@SAASAnand@SAAS

Label denotes a "Custom Label". There's two ways you can change the value of these:

 

1. Go to setup > Create > Custom Label on your Org and you'll see all the labels listed there.

2. Use the Force.com IDE and Meta data API to modify this in bulk.

AvromAvrom

In answer to your more general question, take a look at this page from the VisualForce developer's guide.

This was selected as the best answer