]> git.openstreetmap.org Git - rails.git/commitdiff
Use built-in form sumbit translation keys for diary comments
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 12 Jun 2019 14:20:29 +0000 (16:20 +0200)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 12 Jun 2019 14:20:29 +0000 (16:20 +0200)
Also use a diary comment object as the basis for the form

app/views/diary_entries/show.html.erb
config/locales/en.yml

index a56613b490121e3f1f042b037c092deaa3b0875b..cc761b15d3b03829997cd75a92d14a8238d804ae 100644 (file)
@@ -19,9 +19,9 @@
 
     <%= error_messages_for "diary_comment" %>
 
-    <%= form_for :diary_comment, :url => { :action => "comment" } do |f| %>
+    <%= form_for @entry.comments.new, :url => { :action => "comment" } do |f| %>
       <%= richtext_area :diary_comment, :body, :cols => 80, :rows => 15 %>
-      <%= submit_tag t(".save_button") %>
+      <%= f.submit %>
     <% end %>
     <% if @entry.subscribers.exists?(current_user.id) %>
       <div class="diary-subscribe-buttons"><%= link_to t("javascripts.changesets.show.unsubscribe"), diary_entry_unsubscribe_path(:display_name => @entry.user.display_name, :id => @entry.id), :method => :post, :class => :button %></div>
index 2ba2ce8ffed870756a03aa64293e689332ed8157..6ff69733d12b607bbc1645c599a1ab557f96fd47 100644 (file)
@@ -7,6 +7,8 @@ en:
       blog: "%e %B %Y"
   helpers:
     submit:
+      diary_comment:
+        create: Save
       diary_entry:
         create: "Publish"
         update: "Update"
@@ -324,7 +326,6 @@ en:
       leave_a_comment: "Leave a comment"
       login_to_leave_a_comment: "%{login_link} to leave a comment"
       login: "Login"
-      save_button: "Save"
     no_such_entry:
       title: "No such diary entry"
       heading: "No entry with the id: %{id}"