- Add i18n to enterprise confirmation_instructions.html.erb (SAML/SSO support) - Add SSO-specific translation keys (en + pt_BR) - Use raw output (<%==) in Devise ERB templates to prevent apostrophe HTML-encoding
11 lines
633 B
Plaintext
11 lines
633 B
Plaintext
<p><%== t('mailer.devise.reset_password_instructions.greeting', name: @resource.name) %></p>
|
|
|
|
<p><%== t('mailer.devise.reset_password_instructions.body') %></p>
|
|
|
|
<p><%= link_to t('mailer.devise.reset_password_instructions.action'), frontend_url('auth/password/edit', reset_password_token: @token) %></p>
|
|
|
|
<p style="color: #999999; font-size: 12px;"><%== t('mailer.devise.reset_password_instructions.copy_paste') %> <%= frontend_url('auth/password/edit', reset_password_token: @token) %></p>
|
|
|
|
<p><%== t('mailer.devise.reset_password_instructions.ignore') %></p>
|
|
<p><%== t('mailer.devise.reset_password_instructions.no_change') %></p>
|