Componette

Componette

68publishers

68publishers / i18n v0.4.1

๐ŸŒŽ Internationalization and localization your app with a minimum effort

download-cloud-line composer require 68publishers/i18n

โš ๏ธ Warning! This package does not have active support, it exists only for the historical needs of the author.

i18n

Build Status Quality Score Coverage Status Total Downloads Latest Version on Packagist

This package helps you to deal with regions with different languages, currencies and countries. It could be helpful even if you have single region project.

Installation

The best way to install 68publishers/i18n is using Composer:

$ composer require 68publishers/i18n

then you can register extension into DIC:

extensions:
    68publishers.i18n: SixtyEightPublishers\i18n\DI\I18nExtension(%debugMode%)

Configuration

68publishers.i18n:
    profiles:
        europe:
            language: [ sk_SK, en_GB, de_DE, pl_PL ]
            currency: [ EUR, PLZ, GBP ]
            country: [ SK, GB, DE, PL ]
            domain: [ 'europe\.example\.com' ] # regex
        north_america:
            language: en_US
            currency: USD
            country: US
            domain: 'example\.com\/na'
            enabled: no # default is `yes`
        default: # If the default profile doesn't exists, the first profile is taken as default
            language: cs_CZ
            currency: CZK
            country: CZ
    lists:
        fallback_language: en # default
        default_language: null # default

    translation_bridge:
        locale_resolver:
            enabled: yes # registers custom TranslatorLocaleResolver through 68publishers/translation-bridge extension
            use_default: yes # use language of default's profile if profile is not detected, default is `no`
            priority: 15

    # if you want to use custom profile storage or profile detector:
    storage: My\Custom\ProfileStorage
    detector: My\Custom\Detector

Integration with 68publishers/translation-bridge

Translator Locale Resolving

The Translator's locale can be resolved by the currently active profile. That is done with custom TranslatorLocaleResolver that is automatically registered if an option translation_bridge.locale_resolver.enabled is set to TRUE.

Synchronization Between Profile's Language and Translator's Locale

The Translator's locale is automatically changed when the active profile's language is changed.

<?php

/** @var \SixtyEightPublishers\i18n\Profile\ActiveProfile $activeProfile */
/** @var \SixtyEightPublishers\TranslationBridge\Localization\TranslatorLocalizerInterface $localizer */

$activeProfile->changeLanguage('en_GB');
$localizer->getLocale(); # en_GB

$activeProfile->changeLanguage('cs_CZ');
$localizer->getLocale(); # cs_CZ

Contributing

Before committing any changes, don't forget to run

$ vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run

and

$ composer run tests
  • v0.4.1 v0.4.1

  • v0.4.0 v0.4.0

  • v0.3.0 v0.3.0

  • v0.2 v0.2

    • nette 3 support
    • integration of 68publishers/translation-bridge instead of kdyby/translation
  • v0.1.2 v0.1.2

    ๐Ÿ†• Added list of Languages

  • v0.1.1 v0.1.1

    ๐Ÿ› Fixed unpacking of associative array

  • v0.1 v0.1 - First release

    ๐Ÿ“ฆ separated from 68publishers/application

    โœ”๏ธ Nette ^2.4

bar-chart-fill

Statistics

download-cloud-fill
2925
star-fill
0
bug-fill
4
flashlight-fill
1.2y
price-tag-2-line

Badges

guide-fill

Dependencies

Componette Componette felix@nette.org