Merge remote-tracking branch 'upstream/pull/2248'
This commit is contained in:
commit
6499b2603d
9 changed files with 142 additions and 7 deletions
|
@ -331,11 +331,13 @@ en:
|
|||
other: "%{count} comments"
|
||||
edit_link: Edit this entry
|
||||
hide_link: Hide this entry
|
||||
unhide_link: Unhide this entry
|
||||
confirm: Confirm
|
||||
report: Report this entry
|
||||
diary_comment:
|
||||
comment_from: "Comment from %{link_user} on %{comment_created_at}"
|
||||
hide_link: Hide this comment
|
||||
unhide_link: Unhide this comment
|
||||
confirm: Confirm
|
||||
report: Report this comment
|
||||
location:
|
||||
|
|
|
@ -234,7 +234,9 @@ OpenStreetMap::Application.routes.draw do
|
|||
end
|
||||
post "/user/:display_name/diary/:id/newcomment" => "diary_entries#comment", :id => /\d+/
|
||||
post "/user/:display_name/diary/:id/hide" => "diary_entries#hide", :id => /\d+/, :as => :hide_diary_entry
|
||||
post "/user/:display_name/diary/:id/unhide" => "diary_entries#unhide", :id => /\d+/, :as => :unhide_diary_entry
|
||||
post "/user/:display_name/diary/:id/hidecomment/:comment" => "diary_entries#hidecomment", :id => /\d+/, :comment => /\d+/, :as => :hide_diary_comment
|
||||
post "/user/:display_name/diary/:id/unhidecomment/:comment" => "diary_entries#unhidecomment", :id => /\d+/, :comment => /\d+/, :as => :unhide_diary_comment
|
||||
post "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :as => :diary_entry_subscribe, :id => /\d+/
|
||||
post "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :as => :diary_entry_unsubscribe, :id => /\d+/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue