2017 © Pedro Peláez
 

library php-gettext

Wrapper for Gettext. This allow reading .mo files (machine object) in PHP if native gettext extension are not enable.

image

ashrey/php-gettext

Wrapper for Gettext. This allow reading .mo files (machine object) in PHP if native gettext extension are not enable.

  • Friday, April 11, 2014
  • by ashrey
  • Repository
  • 1 Watchers
  • 0 Stars
  • 34 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 9 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

About

Wrapper for Gettext. This allow reading .mo files (machine object) in PHP if native gettext extension are not enable., (*1)

Use

For composer add to your composer.json, (*2)

{
    "require": {
        "ashrey/php-gettext": "dev-master"
    }
}
use \Ashrey\Gettext\Base;
require  __DIR__."/../autoload.php";
register_gettext_autoload();
/*use translator to spanish*/
$trans = Base::getInstance($dirname, "gettext", "es");
echo $trans->gettext("File does not exist");

License Information

Copyright (c) 2014 David Soria Parra Modifiend by Alberto Berroteran, (*3)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*4)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*5)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*6)

The Versions

11/04 2014

dev-master

9999999-dev

Wrapper for Gettext. This allow reading .mo files (machine object) in PHP if native gettext extension are not enable.

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Alberto Berroteran