2017 © Pedro Peláez
 

library i18n

CakePHP Internationalization library with support for messages translation and dates and numbers localization

image

cakephp/i18n

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  • Monday, July 16, 2018
  • by cakephp
  • Repository
  • 30 Watchers
  • 16 Stars
  • 27,539 Installations
  • PHP
  • 10 Dependents
  • 2 Suggesters
  • 3 Forks
  • 0 Open issues
  • 100 Versions
  • 11 % Grown

The README.md

Total Downloads License, (*1)

CakePHP Internationalization Library

The I18n library provides a I18n service locator that can be used for setting the current locale, building translation bundles and translating messages., (*2)

Additionally, it provides the Time and Number classes which can be used to output dates, currencies and any numbers in the right format for the specified locale., (*3)

Usage

Internally, the I18n class uses Aura.Intl. Getting familiar with it will help you understand how to build and manipulate translation bundles, should you wish to create them manually instead of using the conventions this library uses., (*4)

Setting the Current Locale

use Cake\I18n\I18n;

I18n::setLocale('en_US');

Setting path to folder containing po files.

use Cake\Core\Configure;

Configure::write('App.paths.locales', ['/path/with/trailing/slash/']);

Please refer to the CakePHP Manual for details about expected folder structure and file naming., (*5)

Translating a Message

echo __(
    'Hi {0,string}, your balance on the {1,date} is {2,number,currency}',
    ['Charles', '2014-01-13 11:12:00', 1354.37]
);

// Returns
Hi Charles, your balance on the Jan 13, 2014, 11:12 AM is $ 1,354.37

Creating Your Own Translators

use Cake\I18n\I18n;
use Cake\I18n\Package;

I18n::translator('animals', 'fr_FR', function () {
    $package = new Package(
        'default', // The formatting strategy (ICU)
        'default', // The fallback domain
    );
    $package->setMessages([
        'Dog' => 'Chien',
        'Cat' => 'Chat',
        'Bird' => 'Oiseau'
        ...
    ]);

    return $package;
});

I18n::getLocale('fr_FR');
__d('animals', 'Dog'); // Returns "Chien"

Formatting Time

$time = Time::now();
echo $time; // shows '4/20/14, 10:10 PM' for the en-US locale

Formatting Numbers

echo Number::format(100100100);
echo Number::currency(123456.7890, 'EUR');
// outputs €123,456.79

Documentation

Please make sure you check the official I18n documentation., (*6)

The documentation for the Time class contains instructions on how to configure and output time strings for selected locales., (*7)

The documentation for the Number class shows how to use the Number class for displaying numbers in specific locales., (*8)

The Versions

16/07 2018

dev-master

9999999-dev https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/07 2018

3.6.8

3.6.8.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/07 2018

3.6.9

3.6.9.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

03/07 2018

3.6.7

3.6.7.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/04 2018

3.6.3

3.6.3.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/04 2018

3.6.4

3.6.4.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/04 2018

3.6.5

3.6.5.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/04 2018

3.6.6

3.6.6.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

15/04 2018

3.6.0

3.6.0.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

15/04 2018

3.6.1

3.6.1.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

15/04 2018

3.6.2

3.6.2.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

13/04 2018

3.5.15

3.5.15.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

13/04 2018

3.5.x-dev

3.5.9999999.9999999-dev https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

13/04 2018

3.5.17

3.5.17.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

24/03 2018

dev-3.next

dev-3.next https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

24/03 2018

3.6.0-RC1

3.6.0.0-RC1 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

24/03 2018

3.6.0-RC2

3.6.0.0-RC2 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

13/12 2017

3.6.0-beta1

3.6.0.0-beta1 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

13/12 2017

3.6.0-beta2

3.6.0.0-beta2 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

13/12 2017

3.6.0-beta3

3.6.0.0-beta3 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

12/12 2017

3.5.9

3.5.9.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

12/12 2017

3.5.10

3.5.10.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

12/12 2017

3.5.11

3.5.11.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

12/12 2017

3.5.12

3.5.12.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

12/12 2017

3.5.13

3.5.13.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

12/12 2017

3.5.14

3.5.14.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

05/12 2017

3.5.7

3.5.7.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

05/12 2017

3.5.8

3.5.8.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

09/10 2017

3.5.4

3.5.4.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

09/10 2017

3.5.5

3.5.5.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

09/10 2017

3.5.6

3.5.6.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

15/09 2017

3.5.3

3.5.3.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

31/08 2017

3.5.2

3.5.2.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

20/08 2017

3.5.1

3.5.1.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

19/08 2017

3.5.0

3.5.0.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

07/08 2017

3.5.0-RC2

3.5.0.0-RC2 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

02/08 2017

3.4.13

3.4.13.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

02/08 2017

3.4.x-dev

3.4.9999999.9999999-dev https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

02/08 2017

3.4.14

3.4.14.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

27/07 2017

3.4.12

3.4.12.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

23/07 2017

3.5.0-RC1

3.5.0.0-RC1 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

16/07 2017

3.4.11

3.4.11.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

06/07 2017

3.4.10

3.4.10.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

20/06 2017

3.4.8

3.4.8.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

20/06 2017

3.4.9

3.4.9.0 https://cakephp.org

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

cakephp date translation i18n internationalization localization number localisation internationalisation

05/05 2017

3.4.7

3.4.7.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

19/04 2017

3.4.6

3.4.6.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/03 2017

3.4.4

3.4.4.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/03 2017

3.4.5

3.4.5.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

08/03 2017

3.4.3

3.4.3.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

16/02 2017

3.4.1

3.4.1.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

16/02 2017

3.4.2

3.4.2.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

10/02 2017

3.4.0

3.4.0.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

04/02 2017

3.4.0-RC4

3.4.0.0-RC4

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

01/02 2017

3.3.14

3.3.14.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

01/02 2017

3.3.15

3.3.15.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

01/02 2017

3.3.16

3.3.16.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

20/01 2017

3.4.0-RC3

3.4.0.0-RC3

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

15/01 2017

3.4.0-RC2

3.4.0.0-RC2

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

14/01 2017

3.4.0-RC1

3.4.0.0-RC1

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/01 2017

3.3.12

3.3.12.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/01 2017

3.3.13

3.3.13.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

22/12 2016

3.4.0-beta1

3.4.0.0-beta1

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

22/12 2016

3.4.0-beta2

3.4.0.0-beta2

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

22/12 2016

3.4.0-beta3

3.4.0.0-beta3

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

22/12 2016

3.4.0-beta4

3.4.0.0-beta4

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

04/11 2016

3.3.10

3.3.10.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

04/11 2016

3.3.11

3.3.11.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

04/11 2016

3.3.8

3.3.8.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

04/11 2016

3.3.9

3.3.9.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

26/10 2016

3.3.7

3.3.7.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/09 2016

3.3.4

3.3.4.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/09 2016

3.3.5

3.3.5.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/09 2016

3.3.6

3.3.6.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

23/08 2016

3.3.3

3.3.3.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

13/08 2016

3.3.0

3.3.0.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

13/08 2016

3.3.1

3.3.1.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

13/08 2016

3.3.2

3.3.2.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

10/08 2016

3.2.14

3.2.14.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

14/07 2016

3.3.0-beta2

3.3.0.0-beta2

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

14/07 2016

3.3.0-beta3

3.3.0.0-beta3

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

14/07 2016

3.3.0-RC1

3.3.0.0-RC1

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

13/07 2016

3.2.13

3.2.13.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

10/07 2016

3.3.0-beta

3.3.0.0-beta

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

08/07 2016

3.2.12

3.2.12.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

15/06 2016

3.2.11

3.2.11.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

30/04 2016

3.2.10

3.2.10.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

30/04 2016

3.2.9

3.2.9.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

02/04 2016

3.2.7

3.2.7.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

02/04 2016

3.2.8

3.2.8.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/03 2016

3.2.5

3.2.5.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

11/03 2016

3.2.6

3.2.6.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

03/03 2016

3.2.4

3.2.4.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

21/02 2016

3.2.3

3.2.3.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

10/02 2016

3.2.2

3.2.2.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

30/01 2016

3.2.0

3.2.0.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

30/01 2016

3.2.1

3.2.1.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

28/01 2016

3.1.x-dev

3.1.9999999.9999999-dev

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

28/01 2016

dev-3-1

dev-3-1

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires

 

28/01 2016

3.1.10

3.1.10.0

CakePHP Internationalization library with support for messages translation and dates and numbers localization

  Sources   Download

MIT

The Requires