symfony / phrase-translation-provider
Symfony Phrase Translation Provider Bridge
Fund package maintenance!
fabpot
Tidelift
symfony.com/sponsor
Installs: 5 672
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 0
Type:symfony-translation-bridge
Requires
- php: >=8.2
- psr/cache: ^3.0
- symfony/http-client: ^6.4|^7.0
- symfony/mime: ^6.4|^7.0
- symfony/translation: ^7.2
This package is auto-updated.
Last update: 2024-11-13 15:16:24 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 fromproject settings > API > Project ID
API_TOKEN
: can be created in your Phrase profile settingsdefault
: endpoint, defaults toapi.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.