This package is abandoned and no longer maintained. No replacement package was suggested.

Simple internationalization interface

0.1 2013-12-07 17:57 UTC

This package is auto-updated.

Last update: 2021-03-19 16:08:07 UTC


README

Library that provides a simple i18n message interface that wraps some of the MediaWiki i18n functionality. The aim of this library is to collect the code needed by any extension to MediaWiki that wants to use the MediaWiki i18n system though at the same time not bind to the MediaWiki framework.

MediaWiki 1.20 or later is required.

Build Status

On Packagist: Latest Stable Version Download count

Installation

The recommended way to use this library is via Composer.

Composer

To add this package as a local, per-project dependency to your project, simply add a dependency on jeroen-de-dauw/i18n to your project's composer.json file. Here is a minimal example of a composer.json file that just defines a dependency on version 1.0 of this package:

{
    "require": {
        "jeroen-de-dauw/i18n": "1.0.*"
    }
}

Manual

Get the code of this package, either via git, or some other means. Also get all dependencies. You can find a list of the dependencies in the "require" section of the composer.json file. Then take care of autoloading the classes defined in the src directory.

Authors

i18n has been written by [Jeroen De Dauw] (https://github.com/JeroenDeDauw), partially as Wikimedia Germany employee for the Wikidata project.

Release notes

0.1 (2013-12-07)

Initial release with these features:

  • MessageBuilder interface
  • MediaWiki specific implementation
    • MediaWiki\MessageTextBuilder implementation of MessageBuilder
    • MediaWiki\MessageObjectBuilder to construct Message objects
    • MediaWiki\MessageBuilderFactory for construction of the message builders
    • MediaWiki\LanguageTypes enum with the available language types

Links