class Site < ActiveRecord::Base
translates :title, :content
attr_accessor :rank
end
How I can list only the attributes of the Site model, which work with the translates method ? (in this case, I should get an array with ['title', 'content'], without the rank attribute, because it is not translated.