X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/edaddbedaec78a252e988e2271962407e64483fd..39cbc9d653d7ff685626ec7873d04fbd315b480b:/app/controllers/changeset_controller.rb
diff --git a/app/controllers/changeset_controller.rb b/app/controllers/changeset_controller.rb
index d7f3d39c8..c02ced7c2 100644
--- a/app/controllers/changeset_controller.rb
+++ b/app/controllers/changeset_controller.rb
@@ -284,15 +284,25 @@ class ChangesetController < ApplicationController
bbox_link = "#{bbox.to_s}"
end
- @title = t 'changeset.list.title'
+ if user
+ user_link = "#{user.display_name}"
+ end
if user and bbox
- @description = t 'changeset.list.description_user_bbox', :user => user.display_name, :bbox => bbox_link
+ @title = t 'changeset.list.title_user_bbox', :user => user.display_name, :bbox => bbox.to_s
+ @heading = t 'changeset.list.heading_user_bbox', :user => user.display_name, :bbox => bbox.to_s
+ @description = t 'changeset.list.description_user_bbox', :user => user_link, :bbox => bbox_link
elsif user
- @description = t 'changeset.list.description_user', :user => user.display_name
+ @title = t 'changeset.list.title_user', :user => user.display_name
+ @heading = t 'changeset.list.heading_user', :user => user.display_name
+ @description = t 'changeset.list.description_user', :user => user_link
elsif bbox
+ @title = t 'changeset.list.title_bbox', :bbox => bbox.to_s
+ @heading = t 'changeset.list.heading_bbox', :bbox => bbox.to_s
@description = t 'changeset.list.description_bbox', :bbox => bbox_link
else
+ @title = t 'changeset.list.title'
+ @heading = t 'changeset.list.heading'
@description = t 'changeset.list.description'
end