PHPackages                             now-here/laravel-gettext - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Localization &amp; i18n](/categories/localization)
4. /
5. now-here/laravel-gettext

ActiveLibrary[Localization &amp; i18n](/categories/localization)

now-here/laravel-gettext
========================

Adds localization support to laravel applications in an easy way using Poedit and GNU gettext.

4.0.4(9y ago)011.5k↓50%MITPHPPHP &gt;=5.6.0CI failing

Since Oct 9Pushed 10mo ago13 watchersCompare

[ Source](https://github.com/now-here/laravel-gettext)[ Packagist](https://packagist.org/packages/now-here/laravel-gettext)[ Docs](https://github.com/xinax/laravel-gettext)[ RSS](/packages/now-here-laravel-gettext/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (5)Versions (32)Used By (0)

Laravel Gettext
===============

[](#laravel-gettext)

*Laravel Gettext* is a package compatible with the great Laravel PHP Framework. It provides a simple way to add localization support to Laravel applications. It is designed to work with *GNU gettext* and *Poedit*. Former versions of this package (before 4.x) works with the native php-gettext module. Current versions uses the Symfony translation package by default instead of native php extension.

[![Stable build Status](https://camo.githubusercontent.com/1e285c1ea63cf73ed05f8656a410eedfccb3854a231cce2cefd2933934b6899b/68747470733a2f2f7472617669732d63692e6f72672f78696e61782f6c61726176656c2d676574746578742e706e673f6272616e63683d342e302e34)](https://travis-ci.org/xinax/laravel-gettext) [Latest Laravel 5.3.x stable release (4.0.4)](https://github.com/xinax/laravel-gettext/tree/4.0.4)

> Note: This documentation applies to laravel 5.3.x and 4.x branch. For older versions of laravel check the following links:

### Older versions

[](#older-versions)

[![Stable build Status](https://camo.githubusercontent.com/432ca3f59d2a5f851147461a78e5e5cee041aa76181039fb8b64f7306399475e/68747470733a2f2f7472617669732d63692e6f72672f78696e61782f6c61726176656c2d676574746578742e706e673f6272616e63683d332e312e30)](https://travis-ci.org/xinax/laravel-gettext) [Latest Laravel 5.2.x stable release (3.1.0)](https://github.com/xinax/laravel-gettext/tree/3.1.0)

[![Stable build Status](https://camo.githubusercontent.com/496b2afc6a9b4c21307422de1019e786ee6bb8923c4d1b5b558b12f952d00f69/68747470733a2f2f7472617669732d63692e6f72672f78696e61782f6c61726176656c2d676574746578742e706e673f6272616e63683d332e302e33)](https://travis-ci.org/xinax/laravel-gettext) [Latest Laravel 5.1.x stable release (3.0.3)](https://github.com/xinax/laravel-gettext/tree/3.0.3)

[![Stable build Status](https://camo.githubusercontent.com/6d60938142df6e7fc5341dab669366a792a70156e1656e0270faf66e465eeae9/68747470733a2f2f7472617669732d63692e6f72672f78696e61782f6c61726176656c2d676574746578742e706e673f6272616e63683d322e302e33)](https://travis-ci.org/xinax/laravel-gettext) [Latest Laravel 5.0 stable release (2.0.3)](https://github.com/xinax/laravel-gettext/tree/2.0.3)

[![Stable build Status](https://camo.githubusercontent.com/813b64f688975756cd29dad4ceefefecb700e4ec6fbcb43f90ff78c01c117a12/68747470733a2f2f7472617669732d63692e6f72672f78696e61782f6c61726176656c2d676574746578742e706e673f6272616e63683d312e302e33)](https://travis-ci.org/xinax/laravel-gettext) [Latest Laravel 4.x stable release (1.0.3)](https://github.com/xinax/laravel-gettext/tree/1.0.3)

[![Dev build Status](https://camo.githubusercontent.com/53d3ccf4d249ff0f0277fde9689ad1478ffeb37c14224de2bb85dbcb2aecb533/68747470733a2f2f7472617669732d63692e6f72672f78696e61782f6c61726176656c2d676574746578742e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/xinax/laravel-gettext) [Development master](https://github.com/xinax/laravel-gettext/tree/master) Unstable, only for development (dev-master)

### 1. Requirements

[](#1-requirements)

- Composer -
- Laravel 5.3.\* -
- Poedit -

Optional requirements if you want to use the native php-gettext extension:

- php-gettext -
- GNU gettext on system (and production server!) -

> You will need to update the 'handler' option to 'gettext' in order to use the native php-gettext module.

### 2. Install

[](#2-install)

Add the composer repository to your *composer.json* file:

```
    "xinax/laravel-gettext": "4.x"
```

And run composer update. Once it's installed, you can register the service provider in config/app.php in the providers array:

```
    'providers' = [
        // ...
        Xinax\LaravelGettext\LaravelGettextServiceProvider::class,
        // ...
    ]
```

Now you need to publish the configuration file in order to set your own application values:

```
    php artisan vendor:publish
```

This command creates the package configuration file in: `config/laravel-gettext.php`.

You also need to register the LaravelGettext middleware in the `app/Http/Kernel.php` file:

```
    protected $middlewareGroups = [
        'web' => [
            // ...
            \Xinax\LaravelGettext\Middleware\GettextMiddleware::class,
        ],
        // ...
    ]
```

> Be sure to add the line after `Illuminate\Session\Middleware\StartSession`, otherwise the locale won't be saved into the session.

### 3. Configuration

[](#3-configuration)

At this time your application has full gettext support. Now you need to set some configuration values in `config/laravel-gettext.php`.

```
    /**
     * Default locale: this will be the default for your application all
     * localized strings. Is to be supposed that all strings are written
     * on this language.
     */
    'locale' => 'es_ES',
```

```
    /**
     * Supported locales: An array containing all allowed languages
     */
    'supported-locales' => array(
        'es_ES',
        'en_US',
        'it_IT',
        'es_AR',
    ),
```

```
    /**
     * Default charset encoding.
     */
    'encoding' => 'UTF-8',
```

Ok, now it's configured. It's time to generate the directory structure and translation files for the first time.

> Make sure you have write permissions on `resources/` before you run this command

```
    php artisan gettext:create
```

With this command the needed directories and files are created on **resources/lang/i18n**

### 4. Workflow

[](#4-workflow)

##### A. Write strings :D

[](#a-write-strings-d)

By default *LaravelGettext* looks on app/Http/Controllers and resources/views recursively searching for translations. Translations are all texts printed with the **\_\_()** function. Let's look a simple view example:

```
    // an example view file
    echo 'Non translated string';
    echo __('Translated string');
    echo __('Another translated string');
    // with parameter
    $str = 'parameter';
    $n = 2;
    echo __('Translated string with %s', $str);
    echo __('%dnd translated string with %s', [$n, $str]);
```

```
    // an example view in blade
    {{ __('Translated string') }}
```

> Poedit doesn't "understand" blade syntax. When using blade views you must run `php artisan gettext:update` in order to compile all blade views to plain php before update the translations in Poedit

##### B. Plural strings

[](#b-plural-strings)

The plural translations follow the same pattern above. Plural translations are all texts printed with the **\_n()** function, and it follow the [php ngettext](http://php.net/manual/en/function.ngettext.php). Let's look a simple view example:

```
    // an example view file
    $n = 2;
    echo ($n > 1) ? 'Non translated plural string' : 'Non translated string';
    echo _n('Translated string', 'Translated plural string', $n);
    // with parameter
    $str = 'parameter';
    echo _n('Translated string %s', 'Translated plural string %s', 2, $str);
```

```
    // an example view in blade
    {{ _n('Translated string', 'Translated plural string', $n) }}
```

> The Poedit keywords are defined in configuration file with this default pattern:

```
    ['_n:1,2', 'ngettext:1,2']
```

See [Plural forms](http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html?id=l10n/pluralforms) used by Poedit to configure for your language.

##### C. Translate with Poedit

[](#c-translate-with-poedit)

Open the PO file for the language that you want to translate with Poedit. The PO files are located by default in **resources/lang/i18n/\[locale\]/LC\_MESSAGES/\[domain\].po**. If you have multiple gettext domains, one file is generated by each domain.

[![](https://camo.githubusercontent.com/878ae43663262eeab0fda43a5587662cd689637bbd86338ea0c5416126b039c6/68747470733a2f2f7261772e6769746875622e636f6d2f78696e61782f6c61726176656c2d676574746578742f6d61737465722f646f632f706f656469742e706e67)](https://camo.githubusercontent.com/878ae43663262eeab0fda43a5587662cd689637bbd86338ea0c5416126b039c6/68747470733a2f2f7261772e6769746875622e636f6d2f78696e61782f6c61726176656c2d676574746578742f6d61737465722f646f632f706f656469742e706e67)

Once Poedit is loaded press the Update button to load all localized strings. You can repeat this step anytime you add a new localized string.

Fill translation fields in Poedit and save the file. The first time that you do this the MO files will be generated for each locale.

##### C. Runtime methods

[](#c-runtime-methods)

To change configuration on runtime you have these methods:

```
    /**
     * Sets the Current locale.
     * Example param value: 'es_ES'
     *
     * @param mixed $locale the locale
     * @return LaravelGettext
     */
    LaravelGettext::setLocale($locale);
```

```
    /**
     * Gets the Current locale.
     * Example returned value: 'es_ES'
     *
     * @return String
     */
     LaravelGettext::getLocale();
```

```
    /**
     * Gets the language portion of the locale.
     * Eg from en_GB, returns en
     *
     * @return mixed
     */
    LaravelGettext::getLocaleLanguage()
```

```
    /**
     * Sets the Current encoding.
     * Example param value: 'UTF-8'
     *
     * @param mixed $encoding the encoding
     * @return LaravelGettext
     */
     LaravelGettext::setEncoding($encoding);
```

```
    /**
     * Gets the Current encoding.
     * Example returned value: 'UTF-8'
     *
     * @return String
     */
     LaravelGettext::getEncoding();
```

```
    /**
     * Sets the current domain
     *
     * @param String $domain
     */
    LaravelGettext::setDomain($domain);
```

```
    /**
     * Returns the current domain
     *
     * @return String
     */
    LaravelGettext::getDomain();
```

```
    /**
     * Returns the language selector object
     *
     * @param  Array $labels
     * @return LanguageSelector
     */
    LaravelGettext::getSelector($labels = []);
```

### 5. Features and examples:

[](#5-features-and-examples)

#### A. Route and controller implementation example:

[](#a-route-and-controller-implementation-example)

app/Http/routes.php

```
    Route::get('/lang/{locale?}', [
        'as'=>'lang',
        'uses'=>'HomeController@changeLang'
    ]);
```

app/Http/Controllers/HomeController.php

```
    /**
     * Changes the current language and returns to previous page
     * @return Redirect
     */
    public function changeLang($locale=null)
    {
        LaravelGettext::setLocale($locale);
        return Redirect::to(URL::previous());
    }
```

#### B. A basic language selector example:

[](#b-a-basic-language-selector-example)

```

      @foreach(Config::get('laravel-gettext.supported-locales') as $locale)
            {{$locale}}
      @endforeach

```

#### C. Built-in language selector:

[](#c-built-in-language-selector)

You can use the built-in language selector in your views:

```
    // Plain php:
    LaravelGettext::getSelector()->render();

    // Blade views:
    {!! LaravelGettext::getSelector()->render() !!}
```

It also supports custom labels:

```
    LaravelGettext::getSelector([
        'en_US' => 'English',
        'es_ES' => 'Spanish',
        'de_DE' => 'Deutsch',
    ])->render();
```

#### D. Adding source directories and domains

[](#d-adding-source-directories-and-domains)

You can achieve this editing the **source-paths** configuration array. By default resources/views and app/Http/Controllers are set.

```
    /**
     * Paths where Poedit will search recursively for strings to translate.
     * All paths are relative to app/ (don't use trailing slash).
     *
     * Remember to call artisan gettext:update after change this.
     */
    'source-paths' => array(
        'Http/Controllers',
        '../resources/views',
        'foo/bar',              // app/foo/bar
    ),
```

You may want your **translations in different files**. Translations in GNUGettext are separated by domains, domains are simply context names.

Laravel-Gettext set always a default domain that contains all paths that doesn't belong to any domain, its name is established by the 'domain' configuration option.

To add a new domain just wrap your paths in the desired domain name, like this example:

```
    'source-paths' => array(
        'frontend' => array(
            'Http/Controllers',
            '../resources/views/frontend',
        ),
        'backend' => array(
            '../resources/views/backend',
        ),
        '../resources/views/misc',
    ),
```

This configuration generates three translation files by each language: **messages.po**, **frontend.po** and **backend.po**

To change the current domain in runtime (a route-middleware would be a nice place for do this):

```
    LaravelGettext::setDomain("backend");
```

**Remember:** *update your gettext files every time you change the 'source-paths'* option, otherwise is not necessary.

```
    php artisan gettext:update
```

This command will update your PO files and will keep the current translations intact. After this you can open Poedit and click on update button to add the new text strings in the new paths.

You can update only the files of a single domain with the same command:

```
    php artisan gettext:update --domain backend
```

#### E. About gettext cache (only applies to php-gettext native module)

[](#e-about-gettext-cache-only-applies-to-php-gettext-native-module)

Sometimes when you edit/add translations on PO files the changes does not appear instantly. This is because the gettext cache system holds content. The most quick fix is restart your web server.

### 6. Contributing

[](#6-contributing)

If you want to help with the development of this package, you can:

- Warn about errors that you find, in issues section
- Send me a pull request with your patch
- Fix my disastrous English in the documentation/comments ;-)
- Make a fork and create your own version of laravel-gettext
- Give a star!

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 82.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~46 days

Recently: every ~57 days

Total

22

Last Release

3270d ago

Major Versions

1.x-dev → 2.0.02015-02-17

2.0.3 → 3.0.02015-07-17

2.x-dev → 3.1.12016-03-10

3.1.1 → 4.0.02016-10-17

PHP version history (2 changes)1.0.1PHP &gt;=5.4.0

4.0.0PHP &gt;=5.6.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/ee48e3f8c618a4b9d4b1c7aede5cde28e1493f88a320b704f8b558a79c0d2c79?d=identicon)[lavluda](/maintainers/lavluda)

---

Top Contributors

[![shaggyz](https://avatars.githubusercontent.com/u/1447280?v=4)](https://github.com/shaggyz "shaggyz (189 commits)")[![bart](https://avatars.githubusercontent.com/u/5200235?v=4)](https://github.com/bart "bart (5 commits)")[![christianesperar](https://avatars.githubusercontent.com/u/1621344?v=4)](https://github.com/christianesperar "christianesperar (5 commits)")[![matiit](https://avatars.githubusercontent.com/u/138194?v=4)](https://github.com/matiit "matiit (4 commits)")[![loranger](https://avatars.githubusercontent.com/u/6014?v=4)](https://github.com/loranger "loranger (4 commits)")[![KasperFranz](https://avatars.githubusercontent.com/u/191405?v=4)](https://github.com/KasperFranz "KasperFranz (3 commits)")[![nikolajlovenhardt](https://avatars.githubusercontent.com/u/3541622?v=4)](https://github.com/nikolajlovenhardt "nikolajlovenhardt (3 commits)")[![jonatascabral](https://avatars.githubusercontent.com/u/7024044?v=4)](https://github.com/jonatascabral "jonatascabral (3 commits)")[![nilkesede](https://avatars.githubusercontent.com/u/1965127?v=4)](https://github.com/nilkesede "nilkesede (2 commits)")[![guiwoda](https://avatars.githubusercontent.com/u/1625545?v=4)](https://github.com/guiwoda "guiwoda (1 commits)")[![mixisLv](https://avatars.githubusercontent.com/u/3735128?v=4)](https://github.com/mixisLv "mixisLv (1 commits)")[![mkwsra](https://avatars.githubusercontent.com/u/1743919?v=4)](https://github.com/mkwsra "mkwsra (1 commits)")[![nchankov](https://avatars.githubusercontent.com/u/187725?v=4)](https://github.com/nchankov "nchankov (1 commits)")[![optimys](https://avatars.githubusercontent.com/u/4016347?v=4)](https://github.com/optimys "optimys (1 commits)")[![charles-rumley](https://avatars.githubusercontent.com/u/8379704?v=4)](https://github.com/charles-rumley "charles-rumley (1 commits)")[![Solinx](https://avatars.githubusercontent.com/u/2049212?v=4)](https://github.com/Solinx "Solinx (1 commits)")[![ihoru](https://avatars.githubusercontent.com/u/361908?v=4)](https://github.com/ihoru "ihoru (1 commits)")[![jramcast](https://avatars.githubusercontent.com/u/675470?v=4)](https://github.com/jramcast "jramcast (1 commits)")[![lavluda](https://avatars.githubusercontent.com/u/22485?v=4)](https://github.com/lavluda "lavluda (1 commits)")[![vslavik](https://avatars.githubusercontent.com/u/145881?v=4)](https://github.com/vslavik "vslavik (1 commits)")

---

Tags

laravellocalizationtranslationgettextpoEditlaravel-gettext

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/now-here-laravel-gettext/health.svg)

```
[![Health](https://phpackages.com/badges/now-here-laravel-gettext/health.svg)](https://phpackages.com/packages/now-here-laravel-gettext)
```

###  Alternatives

[zerospam/laravel-gettext

Adds localization support to laravel applications in an easy way using Poedit and GNU gettext.

102207.4k](/packages/zerospam-laravel-gettext)[tio/laravel

Add this package to localize your Laravel application (PHP, JSON or GetText).

170318.5k](/packages/tio-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
