pomo/pomo

Gettext library to translate with i18n

Fund package maintenance!
LeoColomb
Patreon

v1.5.0 2023-01-06 01:05 UTC

This package is auto-updated.

Last update: 2024-03-06 13:23:07 UTC


README

Gettext library to translate with i18n

Latest Release

About

Why use it.

Usage

<?php
use POMO\MO;

// Create MO object
$translations = new MO();

// Import MO file
$translations->import_from_file($the_mo_filepath);

// Translate
$translations->translate($text);

Installation

The easiest way to install POMO is via composer.

composer require pomo/pomo
<?php

require 'vendor/autoload.php';

use POMO\MO;

[...]

Requirements

POMO works with PHP 5.3 or above.

License

POMO is licensed under the GPLv2 License.