agentphoenix / intuition

Framework for localisation of tools.

Home Page:https://tools.wmflabs.org/intuition/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Packagist Build Status

Intuition

Install

It's recommended you use Composer.

  • Run composer require Krinkle/intuition.
  • Include vendor/autoload.php in your program.

Usage

To use it in a tool, read the Usage documentation.

Example:

require_once __DIR__ . '/vendor/autoload.php';

$int = new Intuition( 'mytool' );
$int->registerDomain( 'mytool', __DIR__ . '/i18n' );

echo $int->msg( 'example' );

Getting involved

Testing

Use Composer for managing dependenices (such as PHPUnit). Install Composer via your preferred package manager, or from source. Some tests also require Node.js.

Prior to running tests, ensure presence of development dependencies:

composer install

Run the tests:

composer test

Misc

To regenerate the AUTHORS.txt:

npm run authors

About

Framework for localisation of tools.

https://tools.wmflabs.org/intuition/


Languages

Language:PHP 99.6%Language:JavaScript 0.4%