# Internationalization Support in Ember.js

DevFeed: [Internationalization Support in Ember.js](<https://devfeed.tech/articles/internationalization-support-in-ember-js-40624.md>)

Original publisher: [Read original article](<https://eviltrout.com/blog/2013-11-24-i18n-in-ember/>)

Published: 2013-11-24T00:00:00Z

Content type: tutorial

Language: en

Sources: [Robin Ward](<https://devfeed.tech/sources/robin-ward.md>)

Topics: [Internationalization (i18n)](<https://devfeed.tech/topics/i18n.md>), [Ember](<https://devfeed.tech/topics/ember.md>), [JavaScript](<https://devfeed.tech/topics/javascript.md>), [Rails](<https://devfeed.tech/topics/rails.md>), [Web Development](<https://devfeed.tech/topics/web-development.md>)

Tags: [client](<https://devfeed.tech/tags/client.md>), [ember](<https://devfeed.tech/tags/ember.md>), [framework](<https://devfeed.tech/tags/framework.md>), [function](<https://devfeed.tech/tags/function.md>), [i18n](<https://devfeed.tech/tags/i18n.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [library](<https://devfeed.tech/tags/library.md>), [parameter](<https://devfeed.tech/tags/parameter.md>), [rails](<https://devfeed.tech/tags/rails.md>), [server](<https://devfeed.tech/tags/server.md>), [templates](<https://devfeed.tech/tags/templates.md>), [translation](<https://devfeed.tech/tags/translation.md>), [web](<https://devfeed.tech/tags/web.md>)

## AI overview

A tutorial explains how to add internationalization to an Ember.js client-side application using i18n-js. It describes using Rails built-in i18n support on the server, including translation data in an application, exposing translations through a helper for Handlebars templates, and handling pluralization parameters.

## Source excerpt

One thing I'm really proud of is that when we launched Discourse, we had first class Internationalization (i18n) support ready to be used. Our first release only English, but thanks to our community we have 18 localizations of our software in progress! Here's what Discourse looks like in Simplified Chinese: On the server side, Discourse uses Rails' built in i18n support. It has been around for a long time and works easily so I won't go into that. Check out the documentation for your server side framework of choice for more.