illuminate3 / lingos
Baseline language files for Laravel4
dev-master
2015-02-27 23:35 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-11-09 15:31:22 UTC
README
Depreciated
Use my new package called Kotoba for Laravel 5. I will no longer support this.
About
Baseline language files for Laravel4.
Version
0.8.0
- Basic Files based on stevemo's Cpanel
- Add in some of brunogaspar's lang files
Available Languages
- English
Installation
1.) Add to composer.json in the require statement:
"require": {
"illuminate3/lingos": "dev-master",
...
},
2.) Add to the app.php providers list
'Illuminate3\Lingos\LingosServiceProvider',
Usage
{{ Lang::get('lingos::auth.register') }}
real world examples:
{{ Lang::get('lingos::filename.word') }}
{{ trans('lingos::filename.word') }}
lingos:: // The package name auth. // The language file name register // The phrase or word that you want to call
Result: Register
Files
- auth :: relates to authorization and security
- button :: relates to various words appearing on buttons
- general :: relates to various often used words and phrases
- emails :: relates to email template phrases and words
- table :: relates to various words appearing in tables
- sentry :: relates to various words that sentry 2 uses
Note: Sometimes you have words or phrases that can fall into both the button and general categories. I separated these since you might want to have them slightly different, like capitalizations or similar.