Difference between revisions of "Language Files"

From WHMCS Documentation

(Modifying Existing Language Strings 修改存在的語言串接檔)
(Modifying Existing Language Strings)
Line 15: Line 15:
  
 
You can change any of the text displayed in the WHMCS Client Area by editing the relevant language file in the lang folder of your WHMCS system.  All text strings in the client area can be found in the language file and modified in any way you want.
 
You can change any of the text displayed in the WHMCS Client Area by editing the relevant language file in the lang folder of your WHMCS system.  All text strings in the client area can be found in the language file and modified in any way you want.
 +
 +
For example if you wanted to change the "You are here" text to say "Current Page" then you would edit /lang/English.txt and find the following line:
 +
 +
  $_LANG["globalyouarehere"] = "You are here";
 +
 +
Then edit so it reads:
 +
 +
  $_LANG["globalyouarehere"] = "Current Page";
 +
 +
Save the file and upload.

Revision as of 16:19, 2 July 2010

The language files in WHMCS contain all the text strings shown to clients. This allows you to customise any of the text your clients see.

Adding Support for a New Language

If WHMCS doesn't currently have a language file for your language then you can create your own. This is a fairly simple thing to do but will take some time to translate all the text strings.

  1. Begin by duplicating an existing language file in the lang directory.
  2. Save this with the name you want shown in the language selection dropdown menu of WHMCS - it should not contain any special characters.
  3. Once the file is duplicated, you can begin translating all the text strings in it for your language.
  4. Once complete, just save and upload the file to your live WHMCS lang directory. You will then find the language available as an option in the language dropdown in the admin and client areas.

Be careful not to delete any of the quotation marks (") around the text strings or the semi-colons on the ends of each line (;). Doing so will result in errors occuring when you select your language from within WHMCS.

Modifying Existing Language Strings

You can change any of the text displayed in the WHMCS Client Area by editing the relevant language file in the lang folder of your WHMCS system. All text strings in the client area can be found in the language file and modified in any way you want.

For example if you wanted to change the "You are here" text to say "Current Page" then you would edit /lang/English.txt and find the following line:

 $_LANG["globalyouarehere"] = "You are here";

Then edit so it reads:

 $_LANG["globalyouarehere"] = "Current Page";

Save the file and upload.