2017 © Pedro PelĂĄez
 

library yii-pophpconvertor

yii 1.x command to convert yii::t php source files to gettext and vice-versa

image

dikderoy/yii-pophpconvertor

yii 1.x command to convert yii::t php source files to gettext and vice-versa

  • Friday, June 24, 2016
  • by dikderoy
  • Repository
  • 1 Watchers
  • 0 Stars
  • 314 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

yii-pophpconvertor

Latest Version on Packagist ![Software License][ico-license] Total Downloads, (*1)

This is a fork of the EMessageCommand for Yii 1.x, (*2)

This command: - searches for messages to be translated in the specified source files and compiles them into PHP arrays as message source; - converts messages from .php files to gettext .po files and vice; - finds duplicates between all .php files; - shows the translation statistics., (*3)

Install

Via Composer, (*4)

``` bash $ composer require dikderoy/yii-pophpconvertor, (*5)


Add the following items for commandMap to your `console.php` config file: 'commandMap' => array( 'emessage' => array( 'class' => '\EMessageCommand', ), ), ## Usage Usage instructions and examples are available on [official extension page at yiiframework.com](http://www.yiiframework.com/extension/pophpcommand/) ### Actions #### duplicates Finds the duplicates between all .php files. The search can be case insensitive. Run it after a `message` execution, as it searches into the first language. duplicates [--caseSensitive=true] [--config=protected/messages/config.php] #### message Searches for messages to be translated in the specified source files message [--config=protected/messages/config.php] #### po Converts messages from gettext .po files to .php files. po [--config=protected/messages/config.php] #### php Converts messages from .php files to gettext .po files. php [--config=protected/messages/config.php] #### statistics Shows the translation statistics. statistics [--config=protected/messages/config.php] ### Configuration File You can specify the path of the configuration file with `--config=` argument, default is `protected/messages/config.php`. The file must be a valid PHP script which returns an array of name-value pairs. Each name-value pair represents a configuration option. The following options must be specified: |parameter|description|required|default| |---------|-----------|--------|-------| | `sourcePath` | string, root directory of all source files | yes | none | | `messagePath` | string, root directory containing message translations. | yes | none | | `languages` | array, list of language codes that the extracted messages should be translated to. | yes | none | | `autoMerge` | boolean, overwrite the .php files with the new extracted messages. | no | `false` | | `launchpad` | boolean, if the .po files must be stored as `protected/messages/launchpad/template/lang.po` or in the same directory of the converted .php file. | no | `false` | | `skipUnused` | boolean, do not mark unused string with `@@` and skip them | no | `false` | | `fileTypes` | array, a list of file extensions (e.g. `php`, `xml`) Only the files whose extension name can be found in this list will be processed. If empty, all files will be processed. | yes | none | | `exclude` | array, a list of directory and file exclusions. Each exclusion can be either a name or a path. If a file or directory name or path matches the exclusion, it will not be copied. For example, an exclusion of `.svn` will exclude all files and directories whose name is `.svn`. And an exclusion of `/a/b` will exclude file or directory `sourcePath/a/b` | no | `array()` | | `translator` | the name of the function for translating messages. This is used as a mark to find messages to be translated. | no | `Yii::t` | Example (if located at default path `protected/messages/config.php`): ```php <?php return array( 'sourcePath' => dirname(__DIR__), 'messagePath' => __DIR__, 'languages' => array('da', 'de', 'eo', 'fr', 'it', 'nl', 'pl'), 'autoMerge' => true, 'launchpad' => true, 'skipUnused' => true, 'fileTypes' => array('php'), 'exclude' => array( '.svn', '.bzr', '/messages', '/protected/vendor/' ), );

Change log

June 21, 2016
  • Repackaged for Composer
June 4, 2012
  • Add check action to check the plural forms.
  • Add removeEmptyFiles action to delete the untranslated files.
  • Corrections by Motin.
January 4, 2012
  • Add the caseSensitive option to the duplicates action.
December 14, 2011
  • Patch on sorting the string by Attila N.
November 10, 2010
  • Third release with more options, among them : creation of the .po files in a launchpad directory.
May 12, 2010
  • Second release (renamed to EMessage) with 2 more commands: message and statistics
May 23, 2009
  • Initial release.

Contributing

Fork and Pull-Request, (*6)

Credits

License

  • GNU-GPLv2 License. Please see License for more information.
  • GNU-LGPLv3 License for parts. Please see Licence for more information.

The Versions

24/06 2016

dev-master

9999999-dev http://www.yiiframework.com/extension/pophpcommand/

yii 1.x command to convert yii::t php source files to gettext and vice-versa

  Sources   Download

GPL-2.0 LGPL-3.0

The Requires

 

The Development Requires

by Roman Bulgakov
by Olivier Maury

22/06 2016

1.0.0

1.0.0.0 http://www.yiiframework.com/extension/pophpcommand/

yii 1.x command to convert yii::t php source files to gettext and vice-versa

  Sources   Download

GPL-2.0 LGPL-3.0

The Requires

 

The Development Requires

by Roman Bulgakov
by Olivier Maury