Title: flexo-language
Author: flexostudio
Published: <strong>November 22, 2011</strong>
Last modified: November 22, 2011

---

Search plugins

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/flexo-language.svg)

# flexo-language

 By [flexostudio](https://profiles.wordpress.org/flexostudio/)

[Download](https://downloads.wordpress.org/plugin/flexo-language.1.0001.zip)

 * [Details](https://wordpress.org/plugins/flexo-language/#description)
 * [Reviews](https://wordpress.org/plugins/flexo-language/#reviews)
 *  [Installation](https://wordpress.org/plugins/flexo-language/#installation)
 * [Development](https://wordpress.org/plugins/flexo-language/#developers)

 [Support](https://wordpress.org/support/plugin/flexo-language/)

## Description

It allow the user to translate static texts as the example:
 echo _l(‘cat’);

see http://www.flexostudio.com/

### How to use

need to make php file that is located inside the theme, it must be said lang_ (languages??
which will translate as lang_en.php)
 and contains the following code:

<?php $**FL_DICT** = array(

    ```
       'cat' => 'Katze',
       'dog' => 'Hund',
    .............
    ```

);?>
 where ‘cat’ => ‘Katze’ ‘regulations is a word and its translation.

in function.php to add the code:
 <?php if(class_exists(‘flexoLanguage’)){

    ```
    $f  =   dirname(__FILE__);

    if(!flexoLanguage::is_set_language())
        flexoLanguage::set_language('en');//selected language

    flexoLanguage::add_dictionary($f);

    function _l($key){
        return flexoLanguage::_($key);
    }
    ```

}
 else{ function _l($key){return $key;} }?>

and everywhere in the code where you write words you want to have a translation 
in another language and place:
 _l(‘cat’);

## Installation

 1. Download.
 2. Unzip.
 3. Upload to the plugins directory.
 4. Activate the plugin.
 5. Have a nice work.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“flexo-language” is open source software. The following people have contributed 
to this plugin.

Contributors

 *   [ flexostudio ](https://profiles.wordpress.org/flexostudio/)

[Translate “flexo-language” into your language.](https://translate.wordpress.org/projects/wp-plugins/flexo-language)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/flexo-language/), check
out the [SVN repository](https://plugins.svn.wordpress.org/flexo-language/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/flexo-language/)
by [RSS](https://plugins.trac.wordpress.org/log/flexo-language/?limit=100&mode=stop_on_copy&format=rss).

## Meta

 *  Version **1.0001**
 *  Last updated **15 years ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 3.0.5 or higher **
 *  Tested up to **3.0.5**
 * Tags
 * [language](https://wordpress.org/plugins/tags/language/)[translation](https://wordpress.org/plugins/tags/translation/)
 *  [Advanced View](https://wordpress.org/plugins/flexo-language/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/flexo-language/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/flexo-language/reviews/)

## Contributors

 *   [ flexostudio ](https://profiles.wordpress.org/flexostudio/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/flexo-language/)