Created
August 29, 2016 00:38
-
-
Save jonpitch/b997c88d4debee13897c34f93c6cf874 to your computer and use it in GitHub Desktop.
ember-i18n
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/locales/en/translations.js | |
export default { | |
app: { | |
hello: 'Hello' | |
} | |
} | |
// app/locales/es/translations.js | |
export default { | |
app: { | |
hello: 'Hola' | |
} | |
} | |
// app/templates/whatever.hbs | |
<p>{{t "app.hello"}}</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment