Download the PHP package niyko/transpicious without Composer
On this page you can find all versions of the php package niyko/transpicious. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download niyko/transpicious
More information about niyko/transpicious
Files in niyko/transpicious
Package transpicious
Short Description A simple hello world composer package
License MIT
Informations about the package transpicious
Transpicious converts yours website's content in any language you want, automatically.
Yea, You heard it right, Now you can write the content of the website in any language and the user can change it to any other language on wish. Transpicious automatically converts the website's contents to any one of the 90 supported language on the fly. Transpicious supports is Laravel, Codeigniter and core PHP. This is a very useful package to integrate multi language (multi locale) functionality to your code. You can also give custom translations if needed.
:cyclone: Simple Installation, Even a baby :baby: can do it
You can install via Composer
or by downloading the Source zip
.
You can install Transpicious via Composer or by downloading the source code from the github repository, Continue reading for knowing more about installing Transpicious. Don't worry its super super easy.
If you are using Laravel
1. Open the terminal from the project folder and Run this command in your command line:
``
2. Add this line in to your config/app.php
in the aliases
array like this
`
3. Writing the content with Transpicious
Using Transpicious in Laravel View
``
Or using Transpicious in Laravel Controller
`
You can find the full list of language code, CLICK HERE.
If you are using Codeigniter
1. Open the terminal from the application
folder inside your project, and Run this command in your command line:
``
2. Open YOUR PROJECT/application/config.php
and change the value of $config['composer_autoload']
to TRUE
Like shown here : ` And use Transpicious in the view's html like ``
Or using Transpicious in Codeigniter Controller
In the top of the View add this line `
4. Changing the language from user part
In the top of the View add this line `
You can find the full list of language code, CLICK HERE.
If you are using Core PHP
1. Download the .zip version of Transpicious from this link,CLICK HERE.
2. Unzip the file and extract it to your project's folder
3. In the top of your php file, add this line
``Html
`
configuration definition
Variable | Description | Value type | Example |
---|---|---|---|
$_DEFAULT_CONVERT_FROM |
Language code of the language which is used to write the content of the website | String - Language code |
'en' , 'sp' , 'hi' |
$_DEFAULT_CONVERT_TO |
Language code of the defualt language of the website, The content will be shown in this lanuage when the user is firstly enters the website | String - Language code |
'en' , 'sp' , 'hi' |
What if some of the automatically gentrated translation is wrong?
If any translation that is automatically gentrated is worng, then you can define the correct on in the custom translation
.
To know more about how to add custom translations, keep reading the next topic.
:pencil: Adding custom translations
Method 1
Adding it in the custom translation file
Inside the Transpicious
folder (if you are using composer
then it will be vendor/niyko/transpicious
), there is a folder called custom_translations
, inside that there is a file called custom_translations.json
. You can add your custom translations in this file using the below syntax.
``
Didn't got it? Look at an example
If I am using Transpicious::translate('hello, I'm Lilly')
in the content, And if you want to change the automatic translation of this content in the spanish
language, the the custom_translations.json
file will look like this :
``
:books: API
Transpicious::translate();
This function is used to give the content of the website. translate()
function supports three parameters which all of them are string, Which are :
`
Transpicious::set_translate_to();
This function is used to change the current language of the website. All the content of the website will be translated to the language that is given as the parameter of this function `
Example (2)
If the config.php
is set as $_DEFAULT_CONVERT_FROM = "en"
and $_DEFAULT_CONVERT_TO = "en"
`
:globe_with_meridians: All supported language codes
CLICK HERE to check out all the language codes supported in Transpicious for automatic translation.
:page_with_curl: License
Transpicious is licensed under the GNU GENERAL PUBLIC LICENSE, And this repo is made for educational purpose.