symfony/phrase-translation-provider

Symfony Phrase Translation Provider Bridge

Installs: 1 106

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 4

Forks: 0

Type:symfony-translation-bridge

v7.0.3 2024-01-23 15:02 UTC

README

Provides Phrase integration for Symfony Translation.

DSN example

// .env file
PHRASE_DSN=phrase://PROJECT_ID:API_TOKEN@default?userAgent=myProject

DSN elements

  • PROJECT_ID: can be retrieved in Phrase from project settings > API > Project ID
  • API_TOKEN: can be created in your Phrase profile settings
  • default: endpoint, defaults to api.phrase.com

Required DSN query parameters

  • userAgent: please read this for some examples.

See fine tuning your Phrase api calls for additional DSN options.

Phrase locale names

Translations being imported using the Symfony XLIFF format in Phrase, locales are matched on locale name in Phrase. Therefor it's necessary the locale names should be as defined in RFC4646 (e.g. pt-BR rather than pt_BR). Not doing so will result in Phrase creating a new locale for the imported keys.

Locale creation

If you define a locale in your translation.yaml which is not configured in your Phrase project, it will be automatically created. Deletion of locales however, is (currently) not managed by this provider.

Domains as tags

Translations will be tagged in Phrase with the Symfony translation domain they belong to. Check the wickedone/phrase-translation-bundle if you need help managing your tags in Phrase.

Cache

The read responses from Phrase are cached to speed up the read and delete methods of this provider and also to contribute to the rate limit as little as possible. Therefor the factory should be initialised with a PSR-6 compatible cache adapter.

Fine tuning your Phrase api calls

You can fine tune the read and write methods of this provider by adding query parameters to your dsn configuration. General usage is read|write[option_name]=value

**example: ** phrase://PROJECT_ID:API_TOKEN@default?read[encoding]=UTF-8&write[update_descriptions]=0

Read

In order to read translations from Phrase the download locale call is made to the Phrase API, supported parameters can be found in their documentation.

One additional read parameter is fallback_locale_enabled (defaults to 0). When set to 1, this provider will use the fallback locales as they are configured in Phrase.

❗enabling the fallback locale will disable the caching of the conditional get requests

Write

In order to write translations to Phrase the upload call is made to the Phrase API, supported parameters can be found in their documentation.

Default values This provider uses the following default values for read and write requests. All but file_format and tags can be overridden by configuring your DSN query parameters.

method(s) name type default value
read & write file_format string symfony_xliff
read & write tags string dynamically set to symfony translation domain
read include_empty_translations bool 1
read format_options array enclose_in_cdata
read fallback_locale_enabled bool 0
write update_translations bool 1

Resources