In order to add a language to Terrastories, the code has to be modified in a number of places:
application.rb: line 21 (default locale)
routes.rb: line 12 (list of available languages)
welcome/index.html.erb: line 27 (the front page language picker)
config/locales: here, the user has to add the languages as defined in the above places.
We should make it easy enough that the user doesn't have to change any of the code, and document the process of adding new languages.
In order to add a language to Terrastories, the code has to be modified in a number of places:
application.rb
: line 21 (default locale)routes.rb
: line 12 (list of available languages)welcome/index.html.erb
: line 27 (the front page language picker)config/locales
: here, the user has to add the languages as defined in the above places.We should make it easy enough that the user doesn't have to change any of the code, and document the process of adding new languages.