Skip to content

Instantly share code, notes, and snippets.

@aldesantis
Created February 12, 2015 13:51
Show Gist options
  • Save aldesantis/d3f113118cd56b59aac5 to your computer and use it in GitHub Desktop.
Save aldesantis/d3f113118cd56b59aac5 to your computer and use it in GitHub Desktop.
class TranslationsController < ApplicationController
respond_to :json
def show
@locale = params[:id].to_sym
@translations = I18n.with_locale(@locale) do
I18n.backend.send(:translations)[@locale]
end
render json: @translations
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment