Rails and Simpe Form - translate file upload button -
has found tip how translate simple_form input field upload files ? have pretty simple form (in slim):
= simple_form_for(@some_object) |f| = f.error_notification = f.input :text = f.input :photo, as: :file = f.button :submit
and generated html has button 'choose file' label on right 'no file chosen'. googling gave nothing working, of them proposing tricks in js. other ideas ?
Comments
Post a Comment