Download the PHP package mmoreram/translation-server without Composer
On this page you can find all versions of the php package mmoreram/translation-server. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mmoreram/translation-server
More information about mmoreram/translation-server
Files in mmoreram/translation-server
Informations about the package translation-server
Translation Server
This Translation Server aims to provide a very easy, intuitive and fast way of adding new translations in your projects, following the Symfony Standards, and using the console as interface.
Tags
- Use last unstable version ( alias of
dev-master
) to stay in last commit - Use last stable version tag to stay in a stable release.
Install
Install Translation Server in this way:
If it is the first time you globally install a dependency then make sure
you include ~/.composer/vendor/bin
in $PATH as shown here.
Always keep your Translation Server installation up to date:
.phar file
You can also use already last built .phar
.
You can copy the .phar
file as a global script
Compile
Finally you can also compile your own version of the package. ( You need set phar.readonly = Off
in your php.ini ).
You can copy the .phar
file as a global script
Config
If your project wants to provide support for this project, make sure you place
the definition about where are your translations, your master language and what
languages do you support in a file called .translation.yml
.
This file has this format (no needs to explain it, right? ^^)
you can also define where to search the .translation.yml
file using the
--config|-c
option
Commands
This server provides a set of commands useful for your project. Let's see all these commands one by one.
Translations statics
You can see all your translation statics by using this command. Without any extra configuration, you will be able to see statics of all the project.
Filtering by language
You can filter all results by language using the option [--language|-l] in all your commands. This is just a mask, so if you define one or more language, will simply mask all results provided to you.
As you can see, you can provide several languages
Filtering by domain
You can filter all results by domain using the option [--domain|-d] in all your commands. This is just a mask, so if you define one or more domains, will simply mask all results provided to you.
You can provide as well several domains, even mix languages and domains.
Asking for new translations
The power of this tool is that, just telling what language you'd like to work with, the tool will ask you interactively some translations.
Let's see an example. In that case we will ask some translations in Basque, but
we only want to add routing translations, marked with the domain routes
.
At this point, the prompt will wait for your response here. As soon as you have introduced your translation, just press Enter and your translation will be stored in it's place.
This means that if a new file must be created in order to store your translation, for example if you are creating a new language, the process will create it.
As soon as the value is saved, the system will ask for another translation. As long as you don't press Ctrl+C, the system will do it once and again.
Guessing missing translations
For lazy people, you can even translate your site using Google Translate. Of course we strongly recommend you to use this feature carefully, with a post checking of the results.
The command will start guessing your missing translations until you decide to stop with Ctrl+C.
This project uses the library Stichoza/google-translate-php. Easy and simple. Big kudos!
Of course, you can filter by language and domain.
Sorting your translations
You can sort all your translations as well, just using this great command.
Again, you can filter by language and domain.
All versions of translation-server with dependencies
symfony/console Version ^3.2
symfony/process Version ^3.2
symfony/finder Version ^3.2
symfony/filesystem Version ^3.2
symfony/stopwatch Version ^3.2
symfony/yaml Version ^3.2
symfony/event-dispatcher Version ^3.2
symfony/property-access Version ^3.2
stichoza/google-translate-php Version ^3.1