1 <% content_for :heading do %>
 
   2   <h1><%= t ".title" %></h1>
 
   5 <%= bootstrap_form_for current_user, :url => { :action => :update } do |f| %>
 
   6   <%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{Settings.default_editor}.name")), "default"]] + Editors::AVAILABLE_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %>
 
   8   <%= f.text_field :languages %>
 
  10   <%= f.primary t(".save") %>
 
  11   <%= link_to t(".cancel"), preferences_path, :class => "btn btn-link" %>