Make the rest of the email translatable.
This commit is contained in:
parent
606e5ed267
commit
d9dbd3edf1
9 changed files with 76 additions and 54 deletions
|
@ -1,8 +1,7 @@
|
|||
<p>Hi,</p>
|
||||
<p><%= t 'notifier.email_confirm_html.greeting' %></p>
|
||||
|
||||
<p>Someone (hopefully you) would like to change their email address over at
|
||||
<%= SERVER_URL %> to <%= @address %>.</p>
|
||||
<p><%= t 'notifier.email_confirm_html.hopefully_you', :server_url => SERVER_URL, :new_address => @address %></p>
|
||||
|
||||
<p>If this is you, please click the link below to confirm the change.</p>
|
||||
<p><%= t 'notifier.email_confirm_html.click_the_link' %></p>
|
||||
|
||||
<p><a href="<%= @url %>"><%= @url %></a></p>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Hi,
|
||||
<%= t 'notifier.email_confirm_plain.greeting' %>
|
||||
|
||||
Someone (hopefully you) would like to change their email address over at
|
||||
<%= SERVER_URL %> to <%= @address %>.
|
||||
<%= t 'notifier.email_confirm_plain.hopefully_you_1' %>
|
||||
<%= t 'notifier.email_confirm_plain.hopefully_you_2', :server_url => SERVER_URL, :new_address => @address %>
|
||||
|
||||
If this is you, please click the link below to confirm the change.
|
||||
<%= t 'notifier.email_confirm_plain.click_the_link' %>
|
||||
|
||||
<%= @url %>
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
<p>Hi,</p>
|
||||
<p><%= t 'notifier.lost_password_html.greeting' %></p>
|
||||
|
||||
<p>Someone (possibly you) has asked for the password to be reset on this
|
||||
email addresses openstreetmap.org account.</p>
|
||||
<p><%= t 'notifier.lost_password_html.hopefully_you' %></p>
|
||||
|
||||
<p>If this is you, please click the link below to reset your password.</p>
|
||||
<p><%= t 'notifier.lost_password_html.click_the_link' %></p>
|
||||
|
||||
<p><a href="<%= @url %>"><%= @url %></a></p>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Hi,
|
||||
<%= t 'notifier.lost_password_plain.greeting' %>
|
||||
|
||||
Someone (possibly you) has asked for the password to be reset on this
|
||||
email addresses openstreetmap.org account.
|
||||
<%= t 'notifier.lost_password_plain.hopefully_you_1' %>
|
||||
<%= t 'notifier.lost_password_plain.hopefully_you_2' %>
|
||||
|
||||
If this is you, please click the link below to reset your password.
|
||||
<%= t 'notifier.lost_password_plain.click_the_link' %>
|
||||
|
||||
<%= @url %>
|
||||
|
|
|
@ -1,42 +1,24 @@
|
|||
***************************************************************************
|
||||
* *
|
||||
* Please do not reply to this email. *
|
||||
* Use the OpenStreetMap web site to reply. *
|
||||
* *
|
||||
* Bitte antworten Sie nicht auf diese E-Mail. *
|
||||
* Verwenden Sie die OpenStreetMap Website zum Antworten. *
|
||||
* *
|
||||
* Por favor, no responda a este mensaje. *
|
||||
* Utilice el OpenStreetMap sitio web para responder. *
|
||||
* *
|
||||
* S’il vous plaît de ne pas répondre à ce message. *
|
||||
* Utilisez le OpenStreetMap site Web pour y répondre. *
|
||||
<%= t'notifier.message_notification.banner1' %>
|
||||
<%= t'notifier.message_notification.banner2' %>
|
||||
* *
|
||||
***************************************************************************
|
||||
|
||||
Hi <%= @to_user %>,
|
||||
<%= t'notifier.message_notification.hi', :to_user => @to_user %>
|
||||
|
||||
<%= @from_user %> has sent you a message through OpenStreetMap with the subject "<%= @subject %>":
|
||||
<%= t'notifier.message_notification.header', :from_user => @from_user, :subject => @title %>
|
||||
|
||||
==
|
||||
<%= @body %>
|
||||
==
|
||||
|
||||
You can also read the message at <%= @readurl %>
|
||||
and you can reply at <%= @replyurl %>
|
||||
<%= t'notifier.message_notification.footer1', :readurl => @readurl %>
|
||||
<%= t'notifier.message_notification.footer2', :replyurl => @replyurl %>
|
||||
|
||||
***************************************************************************
|
||||
* *
|
||||
* Please do not reply to this email. *
|
||||
* Use the OpenStreetMap web site to reply. *
|
||||
* *
|
||||
* Bitte antworten Sie nicht auf diese E-Mail. *
|
||||
* Verwenden Sie die OpenStreetMap Website zum Antworten. *
|
||||
* *
|
||||
* Por favor, no responda a este mensaje. *
|
||||
* Utilice el OpenStreetMap sitio web para responder. *
|
||||
* *
|
||||
* S’il vous plaît de ne pas répondre à ce message. *
|
||||
* Utilisez le OpenStreetMap site Web pour y répondre. *
|
||||
<%= t'notifier.message_notification.banner1' %>
|
||||
<%= t'notifier.message_notification.banner2' %>
|
||||
* *
|
||||
***************************************************************************
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<p>Hi,</p>
|
||||
<p><%= t 'notifier.reset_password_html.greeting' %></p>
|
||||
|
||||
<p>Your password has been reset to <%= @pass %></p>
|
||||
<p><%= t 'notifier.reset_password_html.reset', :new_password => @pass %></p>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
Hi,
|
||||
<%= t 'notifier.reset_password_plain.greeting' %>
|
||||
|
||||
Your password has been reset to <%= @pass %>
|
||||
<%= t 'notifier.reset_password_plain.reset', :new_password => @pass %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue