multi_auth 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +11 -0
- data/app/controllers/auth/name_controller.rb +31 -0
- data/app/controllers/credentials/email_controller.rb +3 -3
- data/app/controllers/credentials/name_controller.rb +93 -0
- data/app/controllers/credentials_controller.rb +6 -4
- data/app/models/name_credential.rb +63 -0
- data/app/models/name_credential_edit_form.rb +40 -0
- data/app/models/name_login_form.rb +14 -0
- data/app/models/{email_password_edit_form.rb → password_edit_form.rb} +5 -13
- data/app/views/auth/name/index.html.erb +89 -0
- data/app/views/credentials/index.html.erb +46 -0
- data/app/views/credentials/name/delete.html.erb +19 -0
- data/app/views/credentials/name/edit_password.html.erb +27 -0
- data/app/views/credentials/name/new.html.erb +32 -0
- data/config/routes.rb +8 -0
- data/db/development.sqlite3 +0 -0
- data/db/schema.rb +13 -1
- data/db/test.sqlite3 +0 -0
- data/generators/multi_auth_migration/templates/migration.rb +13 -0
- data/generators/multi_auth_migration/templates/upgrade_migration.rb +19 -0
- data/generators/multi_auth_migration/upgrade_multi_auth_tables_generator.rb +11 -0
- data/lib/multi_auth.rb +1 -0
- data/lib/multi_auth/active_record.rb +1 -0
- data/locale/ja/LC_MESSAGES/multi_auth.mo +0 -0
- data/po/ja/multi_auth.po +357 -259
- data/po/multi_auth.pot +309 -215
- data/test/functional/auth/name_controller_test.rb +77 -0
- data/test/functional/credentials/email_controller_test.rb +3 -4
- data/test/functional/credentials/name_controller_test.rb +292 -0
- data/test/unit/name_credential_edit_form_test.rb +151 -0
- data/test/unit/name_credential_test.rb +173 -0
- data/test/unit/name_login_form_test.rb +68 -0
- data/test/unit/{email_password_edit_form_test.rb → password_edit_form_test.rb} +7 -6
- metadata +22 -6
@@ -0,0 +1,19 @@
|
|
1
|
+
<%- @title = p_("MultiAuth", "Delete name authentication credential.") -%>
|
2
|
+
|
3
|
+
<h1><%=h @title %></h1>
|
4
|
+
|
5
|
+
<div>
|
6
|
+
<%=h p_("MultiAuth", "Delete name authentication credential.") %>
|
7
|
+
<%=h p_("MultiAuth", "Are you sure?") %>
|
8
|
+
</div>
|
9
|
+
|
10
|
+
<table>
|
11
|
+
<tr>
|
12
|
+
<th><%=h s_("NameCredential|Name") %></th>
|
13
|
+
<td><%=h @name_credential.name %></td>
|
14
|
+
</tr>
|
15
|
+
</table>
|
16
|
+
|
17
|
+
<%- form_tag(:action => "destroy") { -%>
|
18
|
+
<div><%= submit_tag(p_("MultiAuth", "Delete")) %></div>
|
19
|
+
<%- } -%>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<%- @title = p_("MultiAuth", "Update password") -%>
|
2
|
+
|
3
|
+
<h1><%=h @title %></h1>
|
4
|
+
|
5
|
+
<%- form_for(:edit_form, @edit_form, :url => {:action => "update_password"}) { |f| -%>
|
6
|
+
<table>
|
7
|
+
<tr>
|
8
|
+
<th><%= f.label(:name) %></th>
|
9
|
+
<td><%=h @name_credential.name %></td>
|
10
|
+
</tr>
|
11
|
+
<tr>
|
12
|
+
<th><%= f.label(:password) %></th>
|
13
|
+
<td>
|
14
|
+
<div><%= f.password_field(:password, :size => 20) %></div>
|
15
|
+
<div><%= f.password_field(:password_confirmation, :size => 20) %></div>
|
16
|
+
<%= error_message_on(:edit_form, :password) %>
|
17
|
+
</td>
|
18
|
+
</tr>
|
19
|
+
</table>
|
20
|
+
<div><%= submit_tag(p_("MultiAuth", "Update")) %></div>
|
21
|
+
<%- } -%>
|
22
|
+
|
23
|
+
<%- unless production? -%>
|
24
|
+
<div class="debug">
|
25
|
+
<%= error_messages_for(:edit_form) %>
|
26
|
+
</div>
|
27
|
+
<%- end -%>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<%- @title = p_("MultiAuth", "Add name authentication credential") -%>
|
2
|
+
|
3
|
+
<h1><%=h @title %></h1>
|
4
|
+
|
5
|
+
<%- form_for(:edit_form, @edit_form, :url => {:action => "create"}) { |f| -%>
|
6
|
+
<table>
|
7
|
+
<tr>
|
8
|
+
<th><%= f.label(:name) %></th>
|
9
|
+
<td>
|
10
|
+
<%= f.text_field(:name, :size => 30) %>
|
11
|
+
<%= error_message_on(:edit_form, :name) %>
|
12
|
+
<%= error_message_on(:name_credential, :name) %>
|
13
|
+
</td>
|
14
|
+
</tr>
|
15
|
+
<tr>
|
16
|
+
<th><%= f.label(:password) %></th>
|
17
|
+
<td>
|
18
|
+
<div><%= f.password_field(:password, :size => 20) %></div>
|
19
|
+
<div><%= f.password_field(:password_confirmation, :size => 20) %></div>
|
20
|
+
<%= error_message_on(:edit_form, :password) %>
|
21
|
+
</td>
|
22
|
+
</tr>
|
23
|
+
</table>
|
24
|
+
<div><%= submit_tag(p_("MultiAuth", "Add")) %></div>
|
25
|
+
<%- } -%>
|
26
|
+
|
27
|
+
<%- unless production? -%>
|
28
|
+
<div class="debug">
|
29
|
+
<%= error_messages_for(:edit_form) %>
|
30
|
+
<%= error_messages_for(:name_credential) %>
|
31
|
+
</div>
|
32
|
+
<%- end -%>
|
data/config/routes.rb
CHANGED
@@ -28,6 +28,7 @@ ActionController::Routing::Routes.draw do |map|
|
|
28
28
|
map.namespace :auth do |auth|
|
29
29
|
auth.connect "email/:action", :controller => "email", :action => /(index|login)/
|
30
30
|
auth.connect "open_id/:action", :controller => "open_id", :action => /(index|login)/
|
31
|
+
auth.connect "name/:action", :controller => "name", :action => /(index|login)/
|
31
32
|
end
|
32
33
|
|
33
34
|
map.credentials "credentials", :controller => "credentials", :conditions => { :method => :get }
|
@@ -43,6 +44,13 @@ ActionController::Routing::Routes.draw do |map|
|
|
43
44
|
open_id.connect "credential/open_id/:open_id_credential_id/:action", :action => /(delete|destroy)/, :open_id_credential_id => IdPattern
|
44
45
|
end
|
45
46
|
|
47
|
+
map.with_options :controller => "credentials/name" do |name|
|
48
|
+
name.connect "credentials/name/:action", :action => /(new|create)/
|
49
|
+
name.connect("credential/name/:name_credential_id/:action",
|
50
|
+
:action => /(edit_password|update_password|delete|destroy)/,
|
51
|
+
:name_credential_id => IdPattern)
|
52
|
+
end
|
53
|
+
|
46
54
|
# MEMO: 下記2行のデフォルトルールをコメントアウトしてrake test:functionalsを
|
47
55
|
# 実行することにより、リンクチェックを行うことができる
|
48
56
|
# NOTE: この二行を有効にするとアプリケーション側の config/routes.rb で定義した
|
data/db/development.sqlite3
CHANGED
Binary file
|
data/db/schema.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
#
|
10
10
|
# It's strongly recommended to check this file into your version control system.
|
11
11
|
|
12
|
-
ActiveRecord::Schema.define(:version =>
|
12
|
+
ActiveRecord::Schema.define(:version => 20100813091052) do
|
13
13
|
|
14
14
|
create_table "email_credentials", :force => true do |t|
|
15
15
|
t.datetime "created_at", :null => false
|
@@ -27,6 +27,18 @@ ActiveRecord::Schema.define(:version => 20090415163347) do
|
|
27
27
|
add_index "email_credentials", ["email"], :name => "index_email_credentials_on_email", :unique => true
|
28
28
|
add_index "email_credentials", ["user_id"], :name => "index_email_credentials_on_user_id"
|
29
29
|
|
30
|
+
create_table "name_credentials", :force => true do |t|
|
31
|
+
t.datetime "created_at", :null => false
|
32
|
+
t.integer "user_id", :null => false
|
33
|
+
t.string "name", :limit => 200, :null => false
|
34
|
+
t.string "hashed_password", :limit => 73, :null => false
|
35
|
+
t.datetime "loggedin_at"
|
36
|
+
end
|
37
|
+
|
38
|
+
add_index "name_credentials", ["created_at"], :name => "index_name_credentials_on_created_at"
|
39
|
+
add_index "name_credentials", ["name"], :name => "index_name_credentials_on_name", :unique => true
|
40
|
+
add_index "name_credentials", ["user_id"], :name => "index_name_credentials_on_user_id"
|
41
|
+
|
30
42
|
create_table "open_id_authentication_associations", :force => true do |t|
|
31
43
|
t.integer "issued"
|
32
44
|
t.integer "lifetime"
|
data/db/test.sqlite3
CHANGED
Binary file
|
@@ -26,10 +26,23 @@ class <%= class_name %> < ActiveRecord::Migration
|
|
26
26
|
add_index :email_credentials, :user_id
|
27
27
|
add_index :email_credentials, :email, :unique => true
|
28
28
|
add_index :email_credentials, :activated_at
|
29
|
+
|
30
|
+
create_table :name_credentials do |t|
|
31
|
+
t.datetime :created_at, :null => false
|
32
|
+
t.integer :user_id, :null => false
|
33
|
+
t.string :name, :null => false, :limit => 200
|
34
|
+
t.string :hashed_password, :null => false, :limit => 8 + 1 + 64
|
35
|
+
t.datetime :loggedin_at, :null => true
|
36
|
+
end
|
37
|
+
|
38
|
+
add_index :name_credentials, :created_at
|
39
|
+
add_index :name_credentials, :user_id
|
40
|
+
add_index :name_credentials, :name, :unique => true
|
29
41
|
end
|
30
42
|
|
31
43
|
def self.down
|
32
44
|
drop_table :open_id_credentials
|
33
45
|
drop_table :email_credentials
|
46
|
+
drop_table :name_credentials
|
34
47
|
end
|
35
48
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
class <%= class_name %> < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :name_credentials do |t|
|
4
|
+
t.datetime :created_at, :null => false
|
5
|
+
t.integer :user_id, :null => false
|
6
|
+
t.string :name, :null => false, :limit => 200
|
7
|
+
t.string :hashed_password, :null => false, :limit => 8 + 1 + 64
|
8
|
+
t.datetime :loggedin_at, :null => true
|
9
|
+
end
|
10
|
+
|
11
|
+
add_index :name_credentials, :created_at
|
12
|
+
add_index :name_credentials, :user_id
|
13
|
+
add_index :name_credentials, :name, :unique => true
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.down
|
17
|
+
drop_table :name_credentials
|
18
|
+
end
|
19
|
+
end
|
data/lib/multi_auth.rb
CHANGED
@@ -7,6 +7,7 @@ module MultiAuth
|
|
7
7
|
attr_accessor_with_default :from_address, 'noreply@example.com'
|
8
8
|
attr_accessor_with_default :user_model, 'User'
|
9
9
|
attr_accessor_with_default :session_times_out_in, 1.hour
|
10
|
+
attr_accessor_with_default :credentials, { :open_id => true, :email => true, :name => true }
|
10
11
|
def setup
|
11
12
|
yield self
|
12
13
|
end
|
@@ -6,6 +6,7 @@ module MultiAuth
|
|
6
6
|
class_eval do
|
7
7
|
has_many :open_id_credentials, :foreign_key => 'user_id', :dependent => :destroy
|
8
8
|
has_many :email_credentials, :foreign_key => 'user_id', :dependent => :destroy
|
9
|
+
has_many :name_credentials, :foreign_key => 'user_id', :dependent => :destroy
|
9
10
|
end
|
10
11
|
end
|
11
12
|
end
|
Binary file
|
data/po/ja/multi_auth.po
CHANGED
@@ -7,10 +7,11 @@
|
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: multi_auth 1.0.0\n"
|
10
|
-
"POT-Creation-Date: 2010-
|
11
|
-
"PO-Revision-Date: 2010-
|
10
|
+
"POT-Creation-Date: 2010-08-16 18:38+0900\n"
|
11
|
+
"PO-Revision-Date: 2010-08-16 18:45+0900\n"
|
12
12
|
"Last-Translator: okkez <okkez000@gmail.com>\n"
|
13
13
|
"Language-Team: Japanese\n"
|
14
|
+
"Language: \n"
|
14
15
|
"MIME-Version: 1.0\n"
|
15
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
17
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -23,6 +24,8 @@ msgstr "メール認証情報を追加しました。"
|
|
23
24
|
|
24
25
|
#: app/controllers/credentials/email_controller.rb:46
|
25
26
|
#: app/controllers/credentials/email_controller.rb:73
|
27
|
+
#: app/controllers/credentials/name_controller.rb:29
|
28
|
+
#: app/controllers/credentials/name_controller.rb:51
|
26
29
|
#: app/controllers/credentials/open_id_controller.rb:22
|
27
30
|
#: app/controllers/signup/email_controller.rb:27
|
28
31
|
#: app/controllers/signup/email_controller.rb:39
|
@@ -32,6 +35,7 @@ msgid "Please confirm your input."
|
|
32
35
|
msgstr "入力内容を確認してください。"
|
33
36
|
|
34
37
|
#: app/controllers/credentials/email_controller.rb:68
|
38
|
+
#: app/controllers/credentials/name_controller.rb:46
|
35
39
|
msgctxt "MultiAuth"
|
36
40
|
msgid "Password was changed."
|
37
41
|
msgstr "パスワードを変更しました。"
|
@@ -57,6 +61,22 @@ msgctxt "MultiAuth"
|
|
57
61
|
msgid "This email authentication credential has been already activated."
|
58
62
|
msgstr "このメール認証情報は既に有効になっています。"
|
59
63
|
|
64
|
+
#: app/controllers/credentials/name_controller.rb:24
|
65
|
+
msgctxt "MultiAuth"
|
66
|
+
msgid "Name authentication credential was successfully added."
|
67
|
+
msgstr "名前による認証情報を追加しました。"
|
68
|
+
|
69
|
+
#: app/controllers/credentials/name_controller.rb:65
|
70
|
+
msgctxt "MultiAuth"
|
71
|
+
msgid "Name authentication credential was successfully deleted."
|
72
|
+
msgstr "名前による認証情報を削除しました。"
|
73
|
+
|
74
|
+
#: app/controllers/credentials/name_controller.rb:77
|
75
|
+
#: app/controllers/credentials/name_controller.rb:87
|
76
|
+
msgctxt "MultiAuth"
|
77
|
+
msgid "It is invalid name authentication credential."
|
78
|
+
msgstr "名前による認証情報が正しくありません。"
|
79
|
+
|
60
80
|
#: app/controllers/credentials/open_id_controller.rb:37
|
61
81
|
msgctxt "MultiAuth"
|
62
82
|
msgid "OpenID authentication credential was successfully added."
|
@@ -78,11 +98,33 @@ msgctxt "MultiAuth"
|
|
78
98
|
msgid "It is invalid OpenID authentication credential."
|
79
99
|
msgstr "OpenID 認証情報が正しくありません。"
|
80
100
|
|
101
|
+
#: app/controllers/signup/email_controller.rb:93
|
102
|
+
msgctxt "MultiAuth"
|
103
|
+
msgid "It is an invalid activation key."
|
104
|
+
msgstr "無効なアクティベーションキーです。"
|
105
|
+
|
106
|
+
#: app/controllers/signup/email_controller.rb:99
|
107
|
+
msgctxt "MultiAuth"
|
108
|
+
msgid "This email address has been already registered."
|
109
|
+
msgstr "このメールアドレスは既に本登録されています。"
|
110
|
+
|
111
|
+
#: app/controllers/signup/open_id_controller.rb:25
|
112
|
+
msgctxt "MultiAuth"
|
113
|
+
msgid ""
|
114
|
+
"Because specified OpenID has already been registered, it is not possible to "
|
115
|
+
"use it. "
|
116
|
+
msgstr "指定された OpenID は既に登録されているため、利用できません。"
|
117
|
+
|
81
118
|
#: app/controllers/auth/email_controller.rb:30
|
82
119
|
msgctxt "MultiAuth"
|
83
120
|
msgid "The email address or the password is wrong."
|
84
121
|
msgstr "メールアドレスかパスワードが間違っています。"
|
85
122
|
|
123
|
+
#: app/controllers/auth/name_controller.rb:27
|
124
|
+
msgctxt "MultiAuth"
|
125
|
+
msgid "The name or the password is wrong."
|
126
|
+
msgstr "名前かパスワードが間違っています。"
|
127
|
+
|
86
128
|
#: app/controllers/auth/open_id_controller.rb:24
|
87
129
|
#: app/views/auth/logged_in.html.erb:2
|
88
130
|
msgctxt "MultiAuth"
|
@@ -94,22 +136,13 @@ msgctxt "MultiAuth"
|
|
94
136
|
msgid "This OpenID has not been registered yet."
|
95
137
|
msgstr "この OpenID はまだ登録されていません。"
|
96
138
|
|
97
|
-
#: app/
|
98
|
-
|
99
|
-
|
100
|
-
msgstr "無効なアクティベーションキーです。"
|
101
|
-
|
102
|
-
#: app/controllers/signup/email_controller.rb:99
|
103
|
-
msgctxt "MultiAuth"
|
104
|
-
msgid "This email address has been already registered."
|
105
|
-
msgstr "このメールアドレスは既に本登録されています。"
|
139
|
+
#: app/models/email_login_form.rb:15
|
140
|
+
msgid "EmailLoginForm|Email"
|
141
|
+
msgstr "メールアドレス"
|
106
142
|
|
107
|
-
#: app/
|
108
|
-
|
109
|
-
|
110
|
-
"Because specified OpenID has already been registered, it is not possible to "
|
111
|
-
"use it. "
|
112
|
-
msgstr "指定された OpenID は既に登録されているため、利用できません。"
|
143
|
+
#: app/models/email_login_form.rb:16
|
144
|
+
msgid "EmailLoginForm|Password"
|
145
|
+
msgstr "パスワード"
|
113
146
|
|
114
147
|
#: app/models/email_credential_edit_form.rb:21
|
115
148
|
msgid "EmailCredentialEditForm|Email"
|
@@ -127,6 +160,69 @@ msgstr "パスワード (確認)"
|
|
127
160
|
msgid "OpenIdLoginForm|Openid url"
|
128
161
|
msgstr "OpenID URL"
|
129
162
|
|
163
|
+
#: app/models/name_credential_edit_form.rb:11
|
164
|
+
msgid "NameCredentialEditForm|Name"
|
165
|
+
msgstr "名前"
|
166
|
+
|
167
|
+
#: app/models/name_credential_edit_form.rb:12
|
168
|
+
msgid "NameCredentialEditForm|Password"
|
169
|
+
msgstr "パスワード"
|
170
|
+
|
171
|
+
#: app/models/name_credential_edit_form.rb:13
|
172
|
+
msgid "NameCredentialEditForm|Password confirmation"
|
173
|
+
msgstr "パスワード (確認)"
|
174
|
+
|
175
|
+
#: app/models/name_credential.rb:-
|
176
|
+
msgid "name credential"
|
177
|
+
msgstr ""
|
178
|
+
|
179
|
+
#: app/models/name_credential.rb:-
|
180
|
+
#: app/views/credentials/name/delete.html.erb:12
|
181
|
+
#: app/views/credentials/index.html.erb:99
|
182
|
+
msgid "NameCredential|Name"
|
183
|
+
msgstr "名前"
|
184
|
+
|
185
|
+
#: app/models/name_credential.rb:- app/views/credentials/index.html.erb:98
|
186
|
+
msgid "NameCredential|Loggedin at"
|
187
|
+
msgstr "最終ログイン日時"
|
188
|
+
|
189
|
+
#: app/models/email_credential.rb:-
|
190
|
+
msgid "email credential"
|
191
|
+
msgstr ""
|
192
|
+
|
193
|
+
#: app/models/email_credential.rb:-
|
194
|
+
msgid "EmailCredential|Activation token"
|
195
|
+
msgstr ""
|
196
|
+
|
197
|
+
#: app/models/email_credential.rb:-
|
198
|
+
#: app/views/credentials/email/delete.html.erb:13
|
199
|
+
#: app/views/credentials/email/activation.html.erb:8
|
200
|
+
#: app/views/credentials/index.html.erb:53
|
201
|
+
#: app/views/signup/email/activation.html.erb:16
|
202
|
+
#: app/views/signup/email/validated.html.erb:10
|
203
|
+
msgid "EmailCredential|Email"
|
204
|
+
msgstr "メールアドレス"
|
205
|
+
|
206
|
+
#: app/models/email_credential.rb:-
|
207
|
+
msgid "EmailCredential|Activated at"
|
208
|
+
msgstr "登録日時"
|
209
|
+
|
210
|
+
#: app/models/email_credential.rb:- app/views/credentials/index.html.erb:52
|
211
|
+
msgid "EmailCredential|Loggedin at"
|
212
|
+
msgstr "最終ログイン日時"
|
213
|
+
|
214
|
+
#: app/models/email_credential.rb:22 app/views/credentials/index.html.erb:51
|
215
|
+
msgid "EmailCredential|Activated on"
|
216
|
+
msgstr "登録日時"
|
217
|
+
|
218
|
+
#: app/models/password_edit_form.rb:7
|
219
|
+
msgid "EmailPasswordEditForm|Password"
|
220
|
+
msgstr "パスワード"
|
221
|
+
|
222
|
+
#: app/models/password_edit_form.rb:8
|
223
|
+
msgid "EmailPasswordEditForm|Password confirmation"
|
224
|
+
msgstr "パスワード (確認)"
|
225
|
+
|
130
226
|
#: app/models/activation_mailer.rb:17
|
131
227
|
msgctxt "MultiAuth"
|
132
228
|
msgid "User registration"
|
@@ -157,33 +253,13 @@ msgctxt "MultiAuth"
|
|
157
253
|
msgid "Email address registration for notification completed"
|
158
254
|
msgstr "通知先メールアドレス登録完了"
|
159
255
|
|
160
|
-
#: app/models/
|
161
|
-
msgid "
|
162
|
-
msgstr ""
|
256
|
+
#: app/models/name_login_form.rb:5
|
257
|
+
msgid "NameLoginForm|Name"
|
258
|
+
msgstr "名前"
|
163
259
|
|
164
|
-
#: app/models/
|
165
|
-
msgid "
|
166
|
-
msgstr ""
|
167
|
-
|
168
|
-
#: app/models/email_credential.rb:- app/views/credentials/index.html.erb:50
|
169
|
-
#: app/views/credentials/email/delete.html.erb:13
|
170
|
-
#: app/views/credentials/email/activation.html.erb:8
|
171
|
-
#: app/views/signup/email/validated.html.erb:10
|
172
|
-
#: app/views/signup/email/activation.html.erb:16
|
173
|
-
msgid "EmailCredential|Email"
|
174
|
-
msgstr "メールアドレス"
|
175
|
-
|
176
|
-
#: app/models/email_credential.rb:-
|
177
|
-
msgid "EmailCredential|Activated at"
|
178
|
-
msgstr "登録日時"
|
179
|
-
|
180
|
-
#: app/models/email_credential.rb:- app/views/credentials/index.html.erb:49
|
181
|
-
msgid "EmailCredential|Loggedin at"
|
182
|
-
msgstr "最終ログイン日時"
|
183
|
-
|
184
|
-
#: app/models/email_credential.rb:22 app/views/credentials/index.html.erb:48
|
185
|
-
msgid "EmailCredential|Activated on"
|
186
|
-
msgstr "登録日時"
|
260
|
+
#: app/models/name_login_form.rb:6
|
261
|
+
msgid "NameLoginForm|Password"
|
262
|
+
msgstr "パスワード"
|
187
263
|
|
188
264
|
#: app/models/open_id_credential.rb:-
|
189
265
|
msgid "open id credential"
|
@@ -193,117 +269,139 @@ msgstr ""
|
|
193
269
|
msgid "OpenIdCredential|Identity url"
|
194
270
|
msgstr ""
|
195
271
|
|
196
|
-
#: app/models/open_id_credential.rb:- app/views/credentials/index.html.erb:
|
272
|
+
#: app/models/open_id_credential.rb:- app/views/credentials/index.html.erb:11
|
197
273
|
msgid "OpenIdCredential|Loggedin at"
|
198
274
|
msgstr "ログイン日時"
|
199
275
|
|
200
|
-
#: app/models/open_id_credential.rb:19 app/views/credentials/index.html.erb:
|
276
|
+
#: app/models/open_id_credential.rb:19 app/views/credentials/index.html.erb:10
|
201
277
|
msgid "OpenIdCredential|Activated on"
|
202
278
|
msgstr "登録日時"
|
203
279
|
|
204
|
-
#: app/
|
205
|
-
msgid "EmailLoginForm|Email"
|
206
|
-
msgstr "メールアドレス"
|
207
|
-
|
208
|
-
#: app/models/email_login_form.rb:16
|
209
|
-
msgid "EmailLoginForm|Password"
|
210
|
-
msgstr "パスワード"
|
211
|
-
|
212
|
-
#: app/models/email_password_edit_form.rb:15
|
213
|
-
msgid "EmailPasswordEditForm|Password"
|
214
|
-
msgstr "パスワード"
|
215
|
-
|
216
|
-
#: app/models/email_password_edit_form.rb:16
|
217
|
-
msgid "EmailPasswordEditForm|Password confirmation"
|
218
|
-
msgstr "パスワード (確認)"
|
219
|
-
|
220
|
-
#: app/views/credentials/index.html.erb:2
|
280
|
+
#: app/views/activation_mailer/complete_for_credential.erb:1
|
221
281
|
msgctxt "MultiAuth"
|
222
|
-
msgid "
|
223
|
-
msgstr "
|
282
|
+
msgid "The registration of the email address authentication was completed."
|
283
|
+
msgstr "メールアドレス認証の登録は完了しました。"
|
224
284
|
|
225
|
-
#: app/views/
|
285
|
+
#: app/views/activation_mailer/request_for_notice.erb:1
|
226
286
|
msgctxt "MultiAuth"
|
227
|
-
msgid "
|
228
|
-
msgstr "
|
287
|
+
msgid "Email address for notification will be registered."
|
288
|
+
msgstr "通知用メールアドレスを登録します。"
|
229
289
|
|
230
|
-
#: app/views/
|
290
|
+
#: app/views/activation_mailer/request_for_notice.erb:2
|
291
|
+
#: app/views/activation_mailer/request_for_signup.erb:2
|
292
|
+
#: app/views/activation_mailer/request_for_credential.erb:2
|
231
293
|
msgctxt "MultiAuth"
|
232
|
-
msgid "
|
233
|
-
msgstr "
|
294
|
+
msgid "Registration is completed by accessing following URL."
|
295
|
+
msgstr "以下の URL にアクセスすると登録は完了します。"
|
234
296
|
|
235
|
-
#: app/views/
|
297
|
+
#: app/views/activation_mailer/request_for_notice.erb:6
|
298
|
+
#: app/views/activation_mailer/request_for_signup.erb:6
|
299
|
+
#: app/views/activation_mailer/request_for_credential.erb:6
|
236
300
|
msgctxt "MultiAuth"
|
237
|
-
msgid "
|
238
|
-
msgstr "
|
301
|
+
msgid "- For access with cellular phone etc."
|
302
|
+
msgstr "※ 携帯電話等でのアクセスに関して"
|
239
303
|
|
240
|
-
#: app/views/
|
241
|
-
#: app/views/
|
242
|
-
#: app/views/
|
243
|
-
#: app/views/credentials/email/delete.html.erb:19
|
304
|
+
#: app/views/activation_mailer/request_for_notice.erb:7
|
305
|
+
#: app/views/activation_mailer/request_for_signup.erb:7
|
306
|
+
#: app/views/activation_mailer/request_for_credential.erb:7
|
244
307
|
msgctxt "MultiAuth"
|
245
|
-
msgid "
|
246
|
-
|
308
|
+
msgid ""
|
309
|
+
"It is not possible to register from the cellular phone etc. that do not "
|
310
|
+
"correspond to Cookie now."
|
311
|
+
msgstr ""
|
312
|
+
"現時点では、Cookieに対応していない携帯電話等からは登録を行うことができませ"
|
313
|
+
"ん。"
|
247
314
|
|
248
|
-
#: app/views/
|
315
|
+
#: app/views/activation_mailer/request_for_notice.erb:8
|
316
|
+
#: app/views/activation_mailer/request_for_signup.erb:8
|
317
|
+
#: app/views/activation_mailer/request_for_credential.erb:8
|
249
318
|
msgctxt "MultiAuth"
|
250
|
-
msgid "
|
251
|
-
|
319
|
+
msgid ""
|
320
|
+
"Please register after forwarding this mail to PC etc. though it is time."
|
321
|
+
msgstr ""
|
322
|
+
"お手数ではございますが、本メールをPC等に転送した上で、登録をお願いいたしま"
|
323
|
+
"す。"
|
252
324
|
|
253
|
-
#: app/views/
|
325
|
+
#: app/views/activation_mailer/request_for_signup.erb:1
|
254
326
|
msgctxt "MultiAuth"
|
255
|
-
msgid "
|
256
|
-
msgstr "
|
327
|
+
msgid "Thank you for the user registration to %{app}."
|
328
|
+
msgstr "%{app} へのユーザ登録、ありがとうございます。"
|
257
329
|
|
258
|
-
#: app/views/
|
330
|
+
#: app/views/activation_mailer/complete_for_notice.erb:1
|
259
331
|
msgctxt "MultiAuth"
|
260
|
-
msgid "
|
261
|
-
msgstr "
|
332
|
+
msgid "The email address registration was completed."
|
333
|
+
msgstr "メールアドレスの登録が完了しました。"
|
262
334
|
|
263
|
-
#: app/views/
|
335
|
+
#: app/views/activation_mailer/request_for_credential.erb:1
|
264
336
|
msgctxt "MultiAuth"
|
265
|
-
msgid "
|
266
|
-
msgstr "
|
337
|
+
msgid "Email address for authentication will be registered."
|
338
|
+
msgstr "認証用メールアドレスを登録します。"
|
267
339
|
|
268
|
-
#: app/views/
|
269
|
-
#: app/views/credentials/email/edit_password.html.erb:2
|
340
|
+
#: app/views/activation_mailer/complete_for_signup.erb:1
|
270
341
|
msgctxt "MultiAuth"
|
271
|
-
msgid "
|
272
|
-
msgstr "
|
342
|
+
msgid "The user registration was completed."
|
343
|
+
msgstr "ユーザ登録が完了しました。"
|
273
344
|
|
274
|
-
#: app/views/credentials/
|
275
|
-
#: app/views/credentials/
|
345
|
+
#: app/views/credentials/name/delete.html.erb:1
|
346
|
+
#: app/views/credentials/name/delete.html.erb:6
|
276
347
|
msgctxt "MultiAuth"
|
277
|
-
msgid "Delete
|
278
|
-
msgstr "
|
348
|
+
msgid "Delete name authentication credential."
|
349
|
+
msgstr "名前による認証情報を削除する。"
|
279
350
|
|
280
|
-
#: app/views/credentials/
|
351
|
+
#: app/views/credentials/name/delete.html.erb:7
|
281
352
|
#: app/views/credentials/email/delete.html.erb:8
|
353
|
+
#: app/views/credentials/open_id/delete.html.erb:8
|
282
354
|
msgctxt "MultiAuth"
|
283
355
|
msgid "Are you sure?"
|
284
356
|
msgstr "よろしいですか?"
|
285
357
|
|
286
|
-
#: app/views/credentials/
|
358
|
+
#: app/views/credentials/name/delete.html.erb:18
|
359
|
+
#: app/views/credentials/email/delete.html.erb:19
|
360
|
+
#: app/views/credentials/index.html.erb:37
|
361
|
+
#: app/views/credentials/index.html.erb:84
|
362
|
+
#: app/views/credentials/index.html.erb:126
|
363
|
+
#: app/views/credentials/open_id/delete.html.erb:19
|
287
364
|
msgctxt "MultiAuth"
|
288
|
-
msgid "
|
289
|
-
msgstr "
|
365
|
+
msgid "Delete"
|
366
|
+
msgstr "削除"
|
290
367
|
|
291
|
-
#: app/views/credentials/
|
368
|
+
#: app/views/credentials/name/new.html.erb:1
|
369
|
+
msgctxt "MultiAuth"
|
370
|
+
msgid "Add name authentication credential"
|
371
|
+
msgstr "名前による認証情報を追加"
|
372
|
+
|
373
|
+
#: app/views/credentials/name/new.html.erb:24
|
292
374
|
#: app/views/credentials/email/new.html.erb:25
|
375
|
+
#: app/views/credentials/open_id/new.html.erb:16
|
293
376
|
msgctxt "MultiAuth"
|
294
377
|
msgid "Add"
|
295
378
|
msgstr "追加"
|
296
379
|
|
380
|
+
#: app/views/credentials/name/edit_password.html.erb:1
|
381
|
+
#: app/views/credentials/email/edit_password.html.erb:2
|
382
|
+
#: app/views/credentials/index.html.erb:83
|
383
|
+
#: app/views/credentials/index.html.erb:125
|
384
|
+
msgctxt "MultiAuth"
|
385
|
+
msgid "Update password"
|
386
|
+
msgstr "パスワード変更"
|
387
|
+
|
388
|
+
#: app/views/credentials/name/edit_password.html.erb:20
|
297
389
|
#: app/views/credentials/email/edit_password.html.erb:21
|
298
390
|
msgctxt "MultiAuth"
|
299
391
|
msgid "Update"
|
300
392
|
msgstr "更新"
|
301
393
|
|
394
|
+
#: app/views/credentials/email/delete.html.erb:2
|
395
|
+
#: app/views/credentials/email/delete.html.erb:7
|
396
|
+
msgctxt "MultiAuth"
|
397
|
+
msgid "Delete email authentication credential."
|
398
|
+
msgstr "メール認証情報を削除する。"
|
399
|
+
|
302
400
|
#: app/views/credentials/email/activated.html.erb:2
|
303
|
-
#: app/views/signup/open_id/created.html.erb:4
|
304
|
-
#: app/views/signup/email/_progress.html.erb:13
|
305
401
|
#: app/views/signup/email/activated.html.erb:4
|
306
402
|
#: app/views/signup/email/activated.html.erb:8
|
403
|
+
#: app/views/signup/email/_progress.html.erb:13
|
404
|
+
#: app/views/signup/open_id/created.html.erb:4
|
307
405
|
msgctxt "MultiAuth"
|
308
406
|
msgid "Registration completed"
|
309
407
|
msgstr "登録完了"
|
@@ -313,11 +411,15 @@ msgctxt "MultiAuth"
|
|
313
411
|
msgid "Top"
|
314
412
|
msgstr "トップ"
|
315
413
|
|
316
|
-
#: app/views/credentials/email/
|
317
|
-
#: app/views/credentials/email/delete.html.erb:7
|
414
|
+
#: app/views/credentials/email/activation.html.erb:2
|
318
415
|
msgctxt "MultiAuth"
|
319
|
-
msgid "
|
320
|
-
msgstr "
|
416
|
+
msgid "Activation"
|
417
|
+
msgstr "アクティベーション"
|
418
|
+
|
419
|
+
#: app/views/credentials/email/activation.html.erb:14
|
420
|
+
msgctxt "MultiAuth"
|
421
|
+
msgid "Activate"
|
422
|
+
msgstr "アクティベーションする"
|
321
423
|
|
322
424
|
#: app/views/credentials/email/new.html.erb:2
|
323
425
|
msgctxt "MultiAuth"
|
@@ -343,108 +445,169 @@ msgctxt "MultiAuth"
|
|
343
445
|
msgid "Back"
|
344
446
|
msgstr "戻る"
|
345
447
|
|
346
|
-
#: app/views/credentials/
|
448
|
+
#: app/views/credentials/index.html.erb:2
|
347
449
|
msgctxt "MultiAuth"
|
348
|
-
msgid "
|
349
|
-
msgstr "
|
450
|
+
msgid "Login setting"
|
451
|
+
msgstr "ログイン設定"
|
350
452
|
|
351
|
-
#: app/views/credentials/
|
453
|
+
#: app/views/credentials/index.html.erb:5
|
352
454
|
msgctxt "MultiAuth"
|
353
|
-
msgid "
|
354
|
-
msgstr "
|
455
|
+
msgid "OpenID authentication"
|
456
|
+
msgstr "OpenID 認証"
|
355
457
|
|
356
|
-
#: app/views/
|
458
|
+
#: app/views/credentials/index.html.erb:20
|
357
459
|
msgctxt "MultiAuth"
|
358
|
-
msgid "
|
359
|
-
msgstr "
|
460
|
+
msgid "Add OpenID authentication"
|
461
|
+
msgstr "OpenID 認証情報を追加"
|
360
462
|
|
361
|
-
#: app/views/
|
463
|
+
#: app/views/credentials/index.html.erb:28
|
362
464
|
msgctxt "MultiAuth"
|
363
|
-
msgid "
|
364
|
-
msgstr "
|
465
|
+
msgid "There are no OpenID authentication."
|
466
|
+
msgstr "OpenID 認証情報が登録されていません。"
|
467
|
+
|
468
|
+
#: app/views/credentials/index.html.erb:46
|
469
|
+
msgctxt "MultiAuth"
|
470
|
+
msgid "Email address authentication"
|
471
|
+
msgstr "メールアドレス認証情報"
|
472
|
+
|
473
|
+
#: app/views/credentials/index.html.erb:61
|
474
|
+
msgctxt "MultiAuth"
|
475
|
+
msgid "Add email address authentication"
|
476
|
+
msgstr "メールアドレス認証情報を追加"
|
477
|
+
|
478
|
+
#: app/views/credentials/index.html.erb:69
|
479
|
+
msgctxt "MultiAuth"
|
480
|
+
msgid "There are no email address authentication."
|
481
|
+
msgstr "メールアドレス認証情報が登録されていません。"
|
482
|
+
|
483
|
+
#: app/views/credentials/index.html.erb:80
|
484
|
+
msgctxt "MultiAuth"
|
485
|
+
msgid "Waiting for activation"
|
486
|
+
msgstr "アクティベーション待ち"
|
487
|
+
|
488
|
+
#: app/views/credentials/index.html.erb:93
|
489
|
+
msgctxt "MultiAuth"
|
490
|
+
msgid "Name authentication"
|
491
|
+
msgstr "名前による認証"
|
492
|
+
|
493
|
+
#: app/views/credentials/index.html.erb:107
|
494
|
+
msgctxt "MultiAuth"
|
495
|
+
msgid "Add name authentication"
|
496
|
+
msgstr "名前による認証情報を追加"
|
497
|
+
|
498
|
+
#: app/views/credentials/index.html.erb:115
|
499
|
+
msgctxt "MultiAuth"
|
500
|
+
msgid "There are no name authentication."
|
501
|
+
msgstr "名前による認証情報が登録されていません。"
|
502
|
+
|
503
|
+
#: app/views/credentials/open_id/delete.html.erb:2
|
504
|
+
#: app/views/credentials/open_id/delete.html.erb:7
|
505
|
+
msgctxt "MultiAuth"
|
506
|
+
msgid "Delete OpenID authentication credential."
|
507
|
+
msgstr "OpenID 認証情報を削除する。"
|
508
|
+
|
509
|
+
#: app/views/credentials/open_id/new.html.erb:2
|
510
|
+
msgctxt "MultiAuth"
|
511
|
+
msgid "Add OpenID authentication credential"
|
512
|
+
msgstr "OpenID 認証情報を追加"
|
513
|
+
|
514
|
+
#: app/views/signup/email/activated.html.erb:2
|
515
|
+
#: app/views/signup/email/activation.html.erb:2
|
516
|
+
#: app/views/signup/email/validated.html.erb:2
|
517
|
+
#: app/views/signup/email/index.html.erb:2
|
518
|
+
#: app/views/signup/email/created.html.erb:2
|
519
|
+
#: app/views/signup/open_id/authenticated.html.erb:2
|
520
|
+
#: app/views/signup/open_id/index.html.erb:2
|
521
|
+
#: app/views/signup/open_id/created.html.erb:2
|
522
|
+
msgctxt "MultiAuth"
|
523
|
+
msgid "Signup"
|
524
|
+
msgstr "サインアップ"
|
365
525
|
|
366
|
-
#: app/views/auth/index.html.erb:1 app/views/auth/index.html.erb:16
|
367
|
-
#: app/views/auth/index.html.erb:39 app/views/auth/open_id/index.html.erb:2
|
368
|
-
#: app/views/auth/open_id/index.html.erb:17
|
369
|
-
#: app/views/auth/email/index.html.erb:2
|
370
|
-
#: app/views/auth/email/index.html.erb:64
|
371
|
-
#: app/views/auth/email/index.html.erb:82
|
372
|
-
#: app/views/signup/open_id/created.html.erb:6
|
373
526
|
#: app/views/signup/email/activated.html.erb:9
|
527
|
+
#: app/views/signup/open_id/created.html.erb:6
|
528
|
+
#: app/views/auth/name/index.html.erb:1 app/views/auth/name/index.html.erb:63
|
529
|
+
#: app/views/auth/name/index.html.erb:81 app/views/auth/email/index.html.erb:2
|
530
|
+
#: app/views/auth/email/index.html.erb:64
|
531
|
+
#: app/views/auth/email/index.html.erb:82 app/views/auth/index.html.erb:1
|
532
|
+
#: app/views/auth/index.html.erb:16 app/views/auth/index.html.erb:39
|
533
|
+
#: app/views/auth/open_id/index.html.erb:2
|
534
|
+
#: app/views/auth/open_id/index.html.erb:17
|
374
535
|
msgctxt "MultiAuth"
|
375
536
|
msgid "Login"
|
376
537
|
msgstr "ログイン"
|
377
538
|
|
378
|
-
#: app/views/
|
539
|
+
#: app/views/signup/email/activation.html.erb:4
|
540
|
+
#: app/views/signup/email/validated.html.erb:4
|
541
|
+
#: app/views/signup/email/_progress.html.erb:12
|
379
542
|
msgctxt "MultiAuth"
|
380
|
-
msgid "
|
381
|
-
msgstr "
|
543
|
+
msgid "Registration confirmation"
|
544
|
+
msgstr "登録確認"
|
382
545
|
|
383
|
-
#: app/views/
|
546
|
+
#: app/views/signup/email/activation.html.erb:9
|
384
547
|
msgctxt "MultiAuth"
|
385
|
-
msgid "
|
386
|
-
msgstr "
|
548
|
+
msgid "Valid activation token"
|
549
|
+
msgstr "有効なアクティベーショントークン"
|
387
550
|
|
388
|
-
#: app/views/
|
551
|
+
#: app/views/signup/email/activation.html.erb:11
|
389
552
|
msgctxt "MultiAuth"
|
390
|
-
msgid "
|
391
|
-
msgstr "
|
553
|
+
msgid "Activated"
|
554
|
+
msgstr "アクティベーション済"
|
392
555
|
|
393
|
-
#: app/views/
|
394
|
-
#: app/views/activation_mailer/request_for_signup.erb:2
|
395
|
-
#: app/views/activation_mailer/request_for_notice.erb:2
|
556
|
+
#: app/views/signup/email/activation.html.erb:13
|
396
557
|
msgctxt "MultiAuth"
|
397
|
-
msgid "
|
398
|
-
msgstr "
|
558
|
+
msgid "Inactivated"
|
559
|
+
msgstr "未アクティベーション"
|
399
560
|
|
400
|
-
#: app/views/
|
401
|
-
#: app/views/activation_mailer/request_for_signup.erb:8
|
402
|
-
#: app/views/activation_mailer/request_for_notice.erb:8
|
561
|
+
#: app/views/signup/email/activation.html.erb:22
|
403
562
|
msgctxt "MultiAuth"
|
404
|
-
msgid "
|
405
|
-
msgstr "
|
563
|
+
msgid "Regist"
|
564
|
+
msgstr "登録"
|
406
565
|
|
407
|
-
#: app/views/
|
408
|
-
#: app/views/activation_mailer/request_for_signup.erb:9
|
409
|
-
#: app/views/activation_mailer/request_for_notice.erb:9
|
566
|
+
#: app/views/signup/email/activation.html.erb:26
|
410
567
|
msgctxt "MultiAuth"
|
411
|
-
msgid ""
|
412
|
-
|
413
|
-
"correspond to Cookie now."
|
414
|
-
msgstr "現時点では、Cookieに対応していない携帯電話等からは登録を行うことができません。"
|
568
|
+
msgid "Invalid activation token"
|
569
|
+
msgstr "無効なアクティベーショントークン"
|
415
570
|
|
416
|
-
#: app/views/
|
417
|
-
|
418
|
-
|
571
|
+
#: app/views/signup/email/validated.html.erb:14
|
572
|
+
msgid "EmailCredential|Password"
|
573
|
+
msgstr "パスワード"
|
574
|
+
|
575
|
+
#: app/views/signup/email/validated.html.erb:20
|
576
|
+
#: app/views/signup/open_id/authenticated.html.erb:14
|
419
577
|
msgctxt "MultiAuth"
|
420
|
-
msgid ""
|
421
|
-
|
422
|
-
msgstr "お手数ではございますが、本メールをPC等に転送した上で、登録をお願いいたします。"
|
578
|
+
msgid "Register"
|
579
|
+
msgstr "登録"
|
423
580
|
|
424
|
-
#: app/views/
|
581
|
+
#: app/views/signup/email/index.html.erb:4
|
425
582
|
msgctxt "MultiAuth"
|
426
|
-
msgid "
|
427
|
-
msgstr "
|
583
|
+
msgid "Signup by email address"
|
584
|
+
msgstr "メールアドレスによる登録"
|
428
585
|
|
429
|
-
#: app/views/
|
586
|
+
#: app/views/signup/email/index.html.erb:27 app/views/signup/index.html.erb:60
|
430
587
|
msgctxt "MultiAuth"
|
431
|
-
msgid "
|
432
|
-
msgstr "
|
588
|
+
msgid "Confirm"
|
589
|
+
msgstr "確認"
|
433
590
|
|
434
|
-
#: app/views/
|
591
|
+
#: app/views/signup/email/created.html.erb:4
|
592
|
+
#: app/views/signup/email/_progress.html.erb:11
|
435
593
|
msgctxt "MultiAuth"
|
436
|
-
msgid "
|
437
|
-
msgstr "
|
594
|
+
msgid "Pre-registration completed"
|
595
|
+
msgstr "仮登録完了"
|
438
596
|
|
439
|
-
#: app/views/
|
597
|
+
#: app/views/signup/email/created.html.erb:9
|
440
598
|
msgctxt "MultiAuth"
|
441
|
-
msgid "
|
442
|
-
msgstr "
|
599
|
+
msgid "Sent a mail to %{email}."
|
600
|
+
msgstr "%{email} にメールを送信しました。"
|
443
601
|
|
444
|
-
#: app/views/
|
602
|
+
#: app/views/signup/email/_progress.html.erb:9
|
445
603
|
msgctxt "MultiAuth"
|
446
|
-
msgid "
|
447
|
-
msgstr "
|
604
|
+
msgid "Input login info"
|
605
|
+
msgstr "ログイン情報入力"
|
606
|
+
|
607
|
+
#: app/views/signup/email/_progress.html.erb:10
|
608
|
+
msgctxt "MultiAuth"
|
609
|
+
msgid "Confirm login info"
|
610
|
+
msgstr "ログイン情報確認"
|
448
611
|
|
449
612
|
#: app/views/signup/index.html.erb:2
|
450
613
|
msgctxt "MultiAuth"
|
@@ -513,95 +676,40 @@ msgctxt "MultiAuth"
|
|
513
676
|
msgid "Recieve confirmation mail"
|
514
677
|
msgstr "確認メールを受信"
|
515
678
|
|
516
|
-
#: app/views/signup/index.html.erb:60 app/views/signup/email/index.html.erb:27
|
517
|
-
msgctxt "MultiAuth"
|
518
|
-
msgid "Confirm"
|
519
|
-
msgstr "確認"
|
520
|
-
|
521
|
-
#: app/views/signup/open_id/authenticated.html.erb:2
|
522
|
-
#: app/views/signup/open_id/index.html.erb:2
|
523
|
-
#: app/views/signup/open_id/created.html.erb:2
|
524
|
-
#: app/views/signup/email/activated.html.erb:2
|
525
|
-
#: app/views/signup/email/index.html.erb:2
|
526
|
-
#: app/views/signup/email/created.html.erb:2
|
527
|
-
#: app/views/signup/email/validated.html.erb:2
|
528
|
-
#: app/views/signup/email/activation.html.erb:2
|
529
|
-
msgctxt "MultiAuth"
|
530
|
-
msgid "Signup"
|
531
|
-
msgstr "サインアップ"
|
532
|
-
|
533
679
|
#: app/views/signup/open_id/authenticated.html.erb:4
|
534
680
|
msgctxt "MultiAuth"
|
535
681
|
msgid "Authentication completed"
|
536
682
|
msgstr "認証完了"
|
537
683
|
|
538
|
-
#: app/views/
|
539
|
-
#: app/views/signup/email/validated.html.erb:20
|
540
|
-
msgctxt "MultiAuth"
|
541
|
-
msgid "Register"
|
542
|
-
msgstr "登録"
|
543
|
-
|
544
|
-
#: app/views/signup/email/_progress.html.erb:9
|
545
|
-
msgctxt "MultiAuth"
|
546
|
-
msgid "Input login info"
|
547
|
-
msgstr "ログイン情報入力"
|
548
|
-
|
549
|
-
#: app/views/signup/email/_progress.html.erb:10
|
550
|
-
msgctxt "MultiAuth"
|
551
|
-
msgid "Confirm login info"
|
552
|
-
msgstr "ログイン情報確認"
|
553
|
-
|
554
|
-
#: app/views/signup/email/_progress.html.erb:11
|
555
|
-
#: app/views/signup/email/created.html.erb:4
|
556
|
-
msgctxt "MultiAuth"
|
557
|
-
msgid "Pre-registration completed"
|
558
|
-
msgstr "仮登録完了"
|
559
|
-
|
560
|
-
#: app/views/signup/email/_progress.html.erb:12
|
561
|
-
#: app/views/signup/email/validated.html.erb:4
|
562
|
-
#: app/views/signup/email/activation.html.erb:4
|
563
|
-
msgctxt "MultiAuth"
|
564
|
-
msgid "Registration confirmation"
|
565
|
-
msgstr "登録確認"
|
566
|
-
|
567
|
-
#: app/views/signup/email/index.html.erb:4
|
568
|
-
msgctxt "MultiAuth"
|
569
|
-
msgid "Signup by email address"
|
570
|
-
msgstr "メールアドレスによる登録"
|
571
|
-
|
572
|
-
#: app/views/signup/email/created.html.erb:9
|
684
|
+
#: app/views/auth/logged_out.html.erb:2
|
573
685
|
msgctxt "MultiAuth"
|
574
|
-
msgid "
|
575
|
-
msgstr "
|
576
|
-
|
577
|
-
#: app/views/signup/email/validated.html.erb:14
|
578
|
-
msgid "EmailCredential|Password"
|
579
|
-
msgstr "パスワード"
|
686
|
+
msgid "You have been logged out."
|
687
|
+
msgstr "ログアウトしました。"
|
580
688
|
|
581
|
-
#: app/views/
|
689
|
+
#: app/views/auth/logged_out.html.erb:10 app/views/auth/logged_in.html.erb:10
|
582
690
|
msgctxt "MultiAuth"
|
583
|
-
msgid "
|
584
|
-
msgstr "
|
691
|
+
msgid "Please click %{link} when the page doesn't change."
|
692
|
+
msgstr "ページが切り替わらない場合は %{link} をクリックしてください。"
|
585
693
|
|
586
|
-
#: app/views/
|
694
|
+
#: app/views/auth/index.html.erb:5
|
587
695
|
msgctxt "MultiAuth"
|
588
|
-
msgid "
|
589
|
-
msgstr "
|
696
|
+
msgid "By OpenID"
|
697
|
+
msgstr "OpenID によるログイン"
|
590
698
|
|
591
|
-
#: app/views/
|
699
|
+
#: app/views/auth/index.html.erb:21
|
592
700
|
msgctxt "MultiAuth"
|
593
|
-
msgid "
|
594
|
-
msgstr "
|
701
|
+
msgid "By email address"
|
702
|
+
msgstr "メールアドレスによるログイン"
|
595
703
|
|
596
|
-
#:
|
704
|
+
#: lib/multi_auth/action_controller.rb:34
|
597
705
|
msgctxt "MultiAuth"
|
598
|
-
msgid "
|
599
|
-
msgstr "
|
706
|
+
msgid "Session has expired. Please login again."
|
707
|
+
msgstr "セッションがタイムアウトしました。再度ログインしてください。"
|
600
708
|
|
601
|
-
#:
|
709
|
+
#: lib/multi_auth/action_controller.rb:43
|
602
710
|
msgctxt "MultiAuth"
|
603
|
-
msgid "
|
604
|
-
msgstr "
|
711
|
+
msgid "Login required."
|
712
|
+
msgstr "ログインが必要です。"
|
605
713
|
|
606
714
|
#: lib/open_id_authentication/result.rb:5
|
607
715
|
msgctxt "OpenIdAuthentication"
|
@@ -627,13 +735,3 @@ msgstr "OpenID の検証が失敗しました。"
|
|
627
735
|
msgctxt "OpenIdAuthentication"
|
628
736
|
msgid "OpenID verification needs setup"
|
629
737
|
msgstr "OpenID の検証には準備が必要です。"
|
630
|
-
|
631
|
-
#: lib/multi_auth/action_controller.rb:34
|
632
|
-
msgctxt "MultiAuth"
|
633
|
-
msgid "Session has expired. Please login again."
|
634
|
-
msgstr "セッションがタイムアウトしました。再度ログインしてください。"
|
635
|
-
|
636
|
-
#: lib/multi_auth/action_controller.rb:43
|
637
|
-
msgctxt "MultiAuth"
|
638
|
-
msgid "Login required."
|
639
|
-
msgstr "ログインが必要です。"
|