php-translation/phraseapp-adapter

Adapter for phraseapp.

0.2.0 2017-08-20 08:18 UTC

This package is auto-updated.

Last update: 2024-04-25 06:20:57 UTC


README

Latest Version Build Status Code Coverage Quality Score Total Downloads

This is an PHP-translation adapter for PhraseApp (phraseapp.com).

Install

composer require php-translation/phraseapp-adapter

Symfony bundle

If you want to use the Symfony bundle you may activate it in kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Translation\PlatformAdapter\Phraseapp\Bridge\Symfony\TranslationAdapterPhraseAppBundle(),
    );
}

Example configuration

# /app/config/config.yml
translation_adapter_phrase_app:
    httplug_client: httplug.client.default
    httplug_message_factory: httplug.message_factory.default
    httplug_uri_factory: httplug.uri_factory.default
    project_id: <your project id>
    locale_to_id_mapping:
        de: <de locale id>
        en: <en locale id>
        fr: <fr locale id>
    token: <your phrase app token>
    default_locale: en
    domains: ["<your>", "<list>", "<of>", "<domains>"]

This will produce a service named php_translation.adapter.phrase_app that could be used in the configuration for the Translation Bundle.

Documentation

Read our documentation at http://php-translation.readthedocs.io.

Contribute

Do you want to make a change? Pull requests are welcome.