pmdevelopment/translate-bundle

此包已被废弃,不再维护。未建议替代包。

Google Translate API Bundle for Symfony2

1.0.0 2016-10-18 11:33 UTC

This package is not auto-updated.

Last update: 2022-01-19 12:22:58 UTC


README

Google Translate API Bundle

Config.yml

"from" 和 "to" 是可选的。默认为 "en" 到 "de"。

    pm_translate:
        api_key: '%google_api_translate_key%'
        from: de
        to: en

用法

    /*
     * Default Language
     */
    $translation = $this->get('pm_translate.services.translation_service')->translate($keywordName);
    
    /*
     * Custom Language
     */
    $translation = $this->get('pm_translate.services.translation_service')->translate($keywordName, 'en', 'fr');