Project

wow_i18n

0.0
No commit activity in last 3 years
No release in over 3 years
I18n for World of Warcraft for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
~> 0.6.0
~> 10.0
~> 3.2

Runtime

~> 0.7
 Project Readme

wow_i18n

Provides i18n compatible translations related to World of Warcraft.

Usage

Rails application

Use the wow_i18n_rails gem.

Non-Rails application

In a non-Rails application, install the gem and add

require "wow_i18n"
WowI18n.import

By default, all locale data will be loaded.
If you would like to only load translations for certain locales, you can pass those locales to import.

require "wow_i18n"

# Only load German and French translations
WowI18n.import(:de, :fr)
# this also works
WowI18n.import([:de, :fr])

Contributing

If you add a key to any locale, make sure to add it to every locale.

Only pull requests that pass the spec (run rake) will be accepted.