Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Problem with pattern and locale long code like 'en_US' or 'fr_FR #6

Open
berturion opened this issue Aug 6, 2015 · 1 comment
Open

Comments

@berturion
Copy link

I see that this package only provides translation for locale short codes like fr or en. It is a problem when you want to translate framework messages with a locale detected as fr_FR or en_US and using the pattern method.

Why not providing those messages in folder names using the long code format ?

Anyway, I managed to get this working by adding this peace of code in my translator delegator factory:

    $languageMap = array(
        'fr' => array(
            'fr_BE',
            'fr_CA',
            'fr_CH',
            'fr_FR',
            'fr_LU',
            'fr_MC'
        ),
        'en' => array(
            'en_029',
            'en_AU',
            'en_BZ',
            'en_CA',
            'en_GB',
            'en_IE',
            'en_IN',
            'en_JM',
            'en_MY',
            'en_NZ',
            'en_PH',
            'en_SG',
            'en_TT',
            'en_US',
            'en_ZA',
            'en_ZW',
        )
    );
    foreach($languageMap as $shortCode => $shortCodeMap) {
        foreach($shortCodeMap as $longCode) {
            // Insère les traductions du framework dans le translator pour les validators et le Captcha
            $i18ntrans->addTranslationFile('phpArray', Resources::getBasePath() . '/' . $shortCode . '/Zend_Validate.php', 'default', $longCode);
            $i18ntrans->addTranslationFile('phpArray', Resources::getBasePath() . '/' . $shortCode . '/Zend_Captcha.php', 'default', $longCode);
        }
    }
@weierophinney
Copy link
Member

This repository has been closed and moved to laminas/laminas-i18n; a new issue has been opened at https://github.com/laminas/laminas-i18n/issues/12.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants