Reduce welcome email to minimal text
Instead, redirect newly-confirmed users to the welcome page. If confirmation is not required, redirect immediately and don't send an email.
This commit is contained in:
parent
e3aaa6dd4b
commit
2690342b08
7 changed files with 10 additions and 92 deletions
|
@ -1262,28 +1262,7 @@ en:
|
|||
greeting: "Hi there!"
|
||||
created: "Someone (hopefully you) just created an account at %{site_url}."
|
||||
confirm: "Before we do anything else, we need to confirm that this request came from you, so if it did then please click the link below to confirm your account:"
|
||||
welcome: "We would like to welcome you and provide you with some additional information to get you started."
|
||||
signup_confirm_plain:
|
||||
introductory_video: "You can watch an introductory video to OpenStreetMap here:"
|
||||
more_videos: "There are more videos here:"
|
||||
the_wiki: "Get reading about OpenStreetMap on the wiki:"
|
||||
the_wiki_url: "http://wiki.openstreetmap.org/wiki/Beginners%27_guide"
|
||||
blog_and_twitter: "Catch up with the latest news via the OpenStreetMap blog or Twitter:"
|
||||
ask_questions: "You can ask any questions you may have about OpenStreetMap at our question and answer site:"
|
||||
wiki_signup: "You may also want to sign up to the OpenStreetMap wiki at:"
|
||||
wiki_signup_url: "http://wiki.openstreetmap.org/index.php?title=Special:Userlogin&type=signup&returnto=Main_Page"
|
||||
user_wiki_page: "It is recommended that you create a user wiki page, which includes category tags noting where you are, such as [[Category:Users_in_London]]."
|
||||
current_user: "A list of current users in categories, based on where in the world they are, is available from:"
|
||||
signup_confirm_html:
|
||||
introductory_video: "You can watch an %{introductory_video_link}."
|
||||
video_to_openstreetmap: "introductory video to OpenStreetMap"
|
||||
more_videos: "There are %{more_videos_link}."
|
||||
more_videos_here: "more videos here"
|
||||
get_reading: Get reading about OpenStreetMap <a href="http://wiki.openstreetmap.org/wiki/Beginners%27_guide">on the wiki</a>, and catch up with the latest news via the <a href="http://blog.openstreetmap.org/">OpenStreetMap blog</a> or <a href="http://twitter.com/openstreetmap">Twitter</a>.
|
||||
ask_questions: You can ask any questions you may have about OpenStreetMap at our <a href="http://help.openstreetmap.org/">question and answer site</a>.
|
||||
wiki_signup: 'You may also want to <a href="http://wiki.openstreetmap.org/index.php?title=Special:Userlogin&type=signup&returnto=Main_Page">sign up to the OpenStreetMap wiki</a>.'
|
||||
user_wiki_page: 'It is recommended that you create a user wiki page, which includes category tags noting where you are, such as <a href="http://wiki.openstreetmap.org/wiki/Category:Users_in_London">[[Category:Users_in_London]]</a>.'
|
||||
current_user: 'A list of current users in categories, based on where in the world they are, is available from <a href="http://wiki.openstreetmap.org/wiki/Category:Users_by_geographical_region">Category:Users_by_geographical_region</a>.'
|
||||
welcome: "After you confirm your account, we'll provide you with some additional information to get you started."
|
||||
email_confirm:
|
||||
subject: "[OpenStreetMap] Confirm your email address"
|
||||
email_confirm_plain:
|
||||
|
|
|
@ -125,7 +125,7 @@ OpenStreetMap::Application.routes.draw do
|
|||
match '/edit' => 'site#edit', :via => :get
|
||||
match '/copyright/:copyright_locale' => 'site#copyright', :via => :get
|
||||
match '/copyright' => 'site#copyright', :via => :get
|
||||
match '/welcome' => 'site#welcome', :via => :get
|
||||
match '/welcome' => 'site#welcome', :via => :get, :as => :welcome
|
||||
match '/history' => 'changeset#list', :via => :get
|
||||
match '/history/feed' => 'changeset#feed', :via => :get, :format => :atom
|
||||
match '/export' => 'site#index', :export => true, :via => :get
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue