fix missing translation

This commit is contained in:
Tom Carchrae 2017-05-18 14:04:23 -07:00 committed by Patrick Gansterer
parent 226192f7cb
commit 02328eba2b
4 changed files with 9 additions and 3 deletions

View file

@ -1,9 +1,9 @@
= simple_form_for @order, url: update_note_finance_order_path(@order), remote: true, method: :put do |f|
.modal-header
= close_button :modal
%h3 Notiz bearbeiten
%h3= t('.title')
.modal-body
= f.input :note, input_html: {class: 'input-xlarge'}
= f.input :note, input_html: {class: 'input-xlarge', rows: 10, cols: 80}
.modal-footer
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
= f.submit t('ui.save'), class: 'btn btn-primary'