Update laravel/documentation/localization.md

Updated to use the two-letter, ISO standard language code for Spanish--'es' instead of 'sp'.
This commit is contained in:
j20 2012-11-03 14:54:38 -05:00
parent 4c53b9d94d
commit 39320dc847
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ ## The Basics
Localization is the process of translating your application into different languages. The **Lang** class provides a simple mechanism to help you organize and retrieve the text of your multilingual application. Localization is the process of translating your application into different languages. The **Lang** class provides a simple mechanism to help you organize and retrieve the text of your multilingual application.
All of the language files for your application live under the **application/language** directory. Within the **application/language** directory, you should create a directory for each language your application speaks. So, for example, if your application speaks English and Spanish, you might create **en** and **sp** directories under the **language** directory. All of the language files for your application live under the **application/language** directory. Within the **application/language** directory, you should create a directory for each language your application speaks. So, for example, if your application speaks English and Spanish, you might create **en** and **es** directories under the **language** directory.
Each language directory may contain many different language files. Each language file is simply an array of string values in that language. In fact, language files are structured identically to configuration files. For example, within the **application/language/en** directory, you could create a **marketing.php** file that looks like this: Each language directory may contain many different language files. Each language file is simply an array of string values in that language. In fact, language files are structured identically to configuration files. For example, within the **application/language/en** directory, you could create a **marketing.php** file that looks like this:
@ -23,7 +23,7 @@ #### Creating a language file:
); );
Next, you should create a corresponding **marketing.php** file within the **application/language/sp** directory. The file would look something like this: Next, you should create a corresponding **marketing.php** file within the **application/language/es** directory. The file would look something like this:
return array( return array(
@ -50,7 +50,7 @@ #### Retrieving a language line using the "__" helper:
#### Getting a language line in a given language: #### Getting a language line in a given language:
echo Lang::line('marketing.welcome')->get('sp'); echo Lang::line('marketing.welcome')->get('es');
<a name="replace"></a> <a name="replace"></a>
## Place Holders & Replacements ## Place Holders & Replacements