Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/azerion/phaser-i18next

Phaser plugin for translations using i18next
https://github.com/azerion/phaser-i18next

i18n i18next manage-translations phaser phaser-plugin translation translation-management

Last synced: 5 days ago
JSON representation

Phaser plugin for translations using i18next

Awesome Lists containing this project

README

        

Phaser i18next
==============
Phaser i18next is a plugin for [Phaser](http://phaser.io/) that allows you to have seamless translations in your game. It uses [i18next](https://github.com/i18next/i18next) as it's source for translations management, which is widely adopted by the JS community in other projects as well.

Key features:
* Support for translations namespaces
* Simple key/value JSON
* Seamless switching of languages
* No extra function calls for translating strings, directly build into Phaser's Text object

Getting Started
---------------
First you want to get a fresh copy of the plugin. You can get it from this repo or from npm, ain't that handy.
```
npm install @azerion/phaser-i18next --save-dev
```

Next up you'd want to add it to your list of js sources you load into your game
```html
//Local installed version

//Or use our cdn:

```

After adding the script to the page you can activate it by enabling the plugin:
```javascript
// Load the plugin with the options, for more details on all possible options, see: http://i18next.github.io/i18next/pages/doc_init.html
game.plugins.add(PhaserI18n.Plugin, {
fallbackLng: 'en',
backend: {
// The path from which we can load the translations, by default this path also includes the translation namespace.
// Since we only have one namespace, we'll skip this for now.
loadPath: '/locales/{{lng}}.json'
}
});
```
Please note that the backend config in the above example is required for the correct working of i18next with Phaser.
The loadPath itself can be anything you want as per i18next documentation, but it's required to be set!

Usage
-----
First up, you need to preload the languages you wish to have in the game.
```javascript
// Here we preload all the locales for our game.
game.load.locale(
// All the languages we support: (en, de, nl).
languages,
// The namespaces on which the translations are handled, defaults to ['translation'].
['translation']
);
```

i18next plugins
---------------
i18next has a very nice set of [plugins](http://i18next.com/docs/ecosystem/) you can use in order to enhance your i18n experience. You can still leverage the power of these plugins by passing them when you load this Phaser Plugin. All features should work out of the box.
You can pass an indefinite amount of plugins to the plugin constructor, just be mindfull that the first argument should be the i18n config:
```javascript
//Load the plugin with the options, for more details on all possible options, see: http://i18next.github.io/i18next/pages/doc_init.html
game.plugins.add(PhaserI18n.Plugin, {
//Configure the language we fall back to (defaults to 'dev')
fallbackLng: 'en',
debug: true,
load: 'languageOnly'
},
//From here we can add any i18next plugin we'd like to use, new plugins can be added comma-seperated
window.i18nextBrowserLanguageDetector
);
```

Manage translations
-------------------
When you're all done and set up for translations and have your key value file, next up is starting to translate them. For smaller games this is fairly simple and still manageable by editing your translations in a text file.
But when you start with bigger games and more translations (and translation namespaces) you want to manage your translations better and maybe even use external translator services.

Two of those service you could use are [locize](https://locize.com/) and/or [Poeditor](https://poeditor.com). Both these services allow you to online edit key value JSON translations that are used in i18next.
The advantage of using such tools is that it's easier to allow external people work on your translations and they aggregate the statistics of your projects (translation completion, languages managed, etc.)

Disclaimer
----------
We at Azerion just love playing and creating awesome games. We aren't affiliated with Phaser.io or i18next. We just needed some awesome translations in our awesome HTML5 games. Feel free to use it for enhancing your own awesome games!

Phaser i18next is distributed under the MIT license. All 3rd party libraries and components are distributed under their respective license terms.