app/views/auth/logged_out.html.erb in okkez-multi_auth-0.0.4 vs app/views/auth/logged_out.html.erb in okkez-multi_auth-0.0.5
- old
+ new
@@ -1,7 +1,7 @@
-<%- @title = "ログアウトしました" -%>
+<%- @title = p_("MultiAuth", "You have been logged out.") -%>
<%- @enable_side_column = false -%>
<%- @stylesheets = %[auth] -%>
<%- additional_head { -%>
<%# MEMO: meta要素による自動遷移は無効化されている可能性があるため、JavaScriptによる遷移を併用する %>
@@ -14,8 +14,10 @@
// ]]>
</script>
<%- } -%>
<div id="dialog">
- <h1>ログアウトしました</h1>
- <div class="message">ページが切り替わらない場合は <%= link_to(h(@return_path), @return_path) %> をクリックしてください。</div>
+ <h1><%=h @title %></h1>
+ <div class="message">
+ <%=h p_("MultiAuth", "Please click %{link} when the page doesn't change." % { :link => link_to(h(@return_path), @return_path) }) %>
+ </div>
</div>