amrita2 2.0.1 → 2.0.2

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.
Files changed (162) hide show
  1. data/README +5 -5
  2. data/Rakefile +85 -0
  3. data/lib/amrita2/gettext.rb +9 -4
  4. data/lib/amrita2/template.rb +20 -9
  5. data/lib/amrita2/testsupport.rb +25 -0
  6. data/lib/amrita2/version.rb +1 -1
  7. data/sample/depot/README +160 -0
  8. data/sample/depot/Rakefile +10 -0
  9. data/sample/depot/app/views/admin/_form.html.a2 +23 -0
  10. data/sample/depot/app/views/admin/_form.html.erb +14 -0
  11. data/sample/depot/app/views/admin/edit.html.a2 +22 -0
  12. data/sample/depot/app/views/admin/edit.html.erb +10 -0
  13. data/sample/depot/app/views/admin/list.html.a2 +34 -0
  14. data/sample/depot/app/views/admin/list.html.erb +37 -0
  15. data/sample/depot/app/views/admin/new.html.a2 +21 -0
  16. data/sample/depot/app/views/admin/new.html.erb +9 -0
  17. data/sample/depot/app/views/admin/show.html.a2 +12 -0
  18. data/sample/depot/app/views/admin/show.html.erb +13 -0
  19. data/sample/depot/app/views/info/who_bought.rhtml +14 -0
  20. data/sample/depot/app/views/info/who_bought.rxml +8 -0
  21. data/sample/depot/app/views/layouts/admin.a2html +32 -0
  22. data/sample/depot/app/views/layouts/admin.rhtml +40 -0
  23. data/sample/depot/app/views/layouts/store.a2html +37 -0
  24. data/sample/depot/app/views/layouts/store.rhtml +43 -0
  25. data/sample/depot/app/views/login/add_user.rhtml +33 -0
  26. data/sample/depot/app/views/login/index.rhtml +9 -0
  27. data/sample/depot/app/views/login/list_users.rhtml +20 -0
  28. data/sample/depot/app/views/login/login.rhtml +26 -0
  29. data/sample/depot/app/views/store/_cart.html.a2 +18 -0
  30. data/sample/depot/app/views/store/_cart.html.erb +17 -0
  31. data/sample/depot/app/views/store/_cart_item.html.a2 +16 -0
  32. data/sample/depot/app/views/store/_cart_item.html.erb +14 -0
  33. data/sample/depot/app/views/store/add_to_cart.rjs +11 -0
  34. data/sample/depot/app/views/store/checkout.html.a2 +45 -0
  35. data/sample/depot/app/views/store/checkout.html.a2.using_macro +32 -0
  36. data/sample/depot/app/views/store/checkout.html.a2.without_label +37 -0
  37. data/sample/depot/app/views/store/checkout.html.erb +41 -0
  38. data/sample/depot/app/views/store/index.html.a2 +19 -0
  39. data/sample/depot/app/views/store/index.html.erb +22 -0
  40. data/sample/depot/config/database.yml +24 -0
  41. data/sample/depot/db/create_database.sql +14 -0
  42. data/sample/depot/doc/README_FOR_APP +35 -0
  43. data/sample/depot/lib/tasks/db_schema_version.rake +6 -0
  44. data/sample/depot/log/development.log +116 -0
  45. data/sample/depot/log/test.log +347 -0
  46. data/sample/depot/public/404.html +13 -0
  47. data/sample/depot/public/500.html +13 -0
  48. data/sample/depot/public/dispatch.cgi +10 -0
  49. data/sample/depot/public/dispatch.fcgi +24 -0
  50. data/sample/depot/public/favicon.ico +0 -0
  51. data/sample/depot/public/images/auto.jpg +0 -0
  52. data/sample/depot/public/images/logo.png +0 -0
  53. data/sample/depot/public/images/rails.png +0 -0
  54. data/sample/depot/public/images/svn.jpg +0 -0
  55. data/sample/depot/public/images/utc.jpg +0 -0
  56. data/sample/depot/public/index.html +282 -0
  57. data/sample/depot/public/javascripts/application.js +2 -0
  58. data/sample/depot/public/javascripts/controls.js +832 -0
  59. data/sample/depot/public/javascripts/dragdrop.js +942 -0
  60. data/sample/depot/public/javascripts/effects.js +954 -0
  61. data/sample/depot/public/javascripts/prototype.js +2347 -0
  62. data/sample/depot/public/robots.txt +1 -0
  63. data/sample/depot/public/stylesheets/depot.css +227 -0
  64. data/sample/depot/public/stylesheets/scaffold.css +74 -0
  65. data/sample/depot/script/about +3 -0
  66. data/sample/depot/script/breakpointer +3 -0
  67. data/sample/depot/script/console +3 -0
  68. data/sample/depot/script/destroy +3 -0
  69. data/sample/depot/script/generate +3 -0
  70. data/sample/depot/script/performance/benchmarker +3 -0
  71. data/sample/depot/script/performance/profiler +3 -0
  72. data/sample/depot/script/plugin +3 -0
  73. data/sample/depot/script/process/inspector +3 -0
  74. data/sample/depot/script/process/reaper +3 -0
  75. data/sample/depot/script/process/spawner +3 -0
  76. data/sample/depot/script/runner +3 -0
  77. data/sample/depot/script/server +3 -0
  78. data/sample/depot/test/fixtures/line_items.yml +16 -0
  79. data/sample/depot/test/fixtures/orders.yml +4 -0
  80. data/sample/depot/test/fixtures/performance/products.yml +8 -0
  81. data/sample/depot/test/fixtures/products.yml +16 -0
  82. data/sample/depot/test/fixtures/users.yml +7 -0
  83. data/sample/depot/vendor/plugins/will_paginate/LICENSE +18 -0
  84. data/sample/depot/vendor/plugins/will_paginate/README +171 -0
  85. data/sample/depot/vendor/plugins/will_paginate/Rakefile +27 -0
  86. data/sample/depot/vendor/plugins/will_paginate/test/console +9 -0
  87. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/companies.yml +24 -0
  88. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
  89. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/projects.yml +7 -0
  90. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/replies.yml +34 -0
  91. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/schema.sql +44 -0
  92. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
  93. data/sample/depot/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
  94. data/sample/login_engine/README +182 -0
  95. data/sample/login_engine/Rakefile +27 -0
  96. data/sample/login_engine/app/views/layouts/user.a2html +20 -0
  97. data/sample/login_engine/app/views/layouts/user.rhtml +16 -0
  98. data/sample/login_engine/app/views/user/_edit.a2html +16 -0
  99. data/sample/login_engine/app/views/user/_edit.rhtml +11 -0
  100. data/sample/login_engine/app/views/user/_password.a2html +18 -0
  101. data/sample/login_engine/app/views/user/_password.rhtml +9 -0
  102. data/sample/login_engine/app/views/user/change_password.a2html +17 -0
  103. data/sample/login_engine/app/views/user/change_password.rhtml +17 -0
  104. data/sample/login_engine/app/views/user/edit.a2html +22 -0
  105. data/sample/login_engine/app/views/user/edit.rhtml +23 -0
  106. data/sample/login_engine/app/views/user/forgot_password.rhtml +18 -0
  107. data/sample/login_engine/app/views/user/home.a2html +12 -0
  108. data/sample/login_engine/app/views/user/home.rhtml +7 -0
  109. data/sample/login_engine/app/views/user/login.a2html +16 -0
  110. data/sample/login_engine/app/views/user/login.rhtml +17 -0
  111. data/sample/login_engine/app/views/user/logout.rhtml +8 -0
  112. data/sample/login_engine/app/views/user/signup.a2html +14 -0
  113. data/sample/login_engine/app/views/user/signup.rhtml +17 -0
  114. data/sample/login_engine/app/views/user_notify/change_password.rhtml +10 -0
  115. data/sample/login_engine/app/views/user_notify/delete.rhtml +5 -0
  116. data/sample/login_engine/app/views/user_notify/forgot_password.rhtml +11 -0
  117. data/sample/login_engine/app/views/user_notify/pending_delete.rhtml +9 -0
  118. data/sample/login_engine/app/views/user_notify/signup.rhtml +12 -0
  119. data/sample/login_engine/config/database.yml +18 -0
  120. data/sample/login_engine/db/create_database.sql +14 -0
  121. data/sample/login_engine/db/dev.sqlite3 +0 -0
  122. data/sample/login_engine/db/test.sqlite3 +0 -0
  123. data/sample/login_engine/doc/README_FOR_APP +2 -0
  124. data/sample/login_engine/locale/ja/LC_MESSAGES/login_engine.mo +0 -0
  125. data/sample/login_engine/log/development.log +330 -0
  126. data/sample/login_engine/log/test.log +19026 -0
  127. data/sample/login_engine/po/ja/login_engine.po +248 -0
  128. data/sample/login_engine/po/login_engine.pot +245 -0
  129. data/sample/login_engine/public/404.html +30 -0
  130. data/sample/login_engine/public/500.html +30 -0
  131. data/sample/login_engine/public/dispatch.cgi +10 -0
  132. data/sample/login_engine/public/dispatch.fcgi +24 -0
  133. data/sample/login_engine/public/favicon.ico +0 -0
  134. data/sample/login_engine/public/images/rails.png +0 -0
  135. data/sample/login_engine/public/index.html +277 -0
  136. data/sample/login_engine/public/javascripts/application.js +2 -0
  137. data/sample/login_engine/public/javascripts/controls.js +833 -0
  138. data/sample/login_engine/public/javascripts/dragdrop.js +942 -0
  139. data/sample/login_engine/public/javascripts/effects.js +1088 -0
  140. data/sample/login_engine/public/javascripts/prototype.js +2385 -0
  141. data/sample/login_engine/public/robots.txt +1 -0
  142. data/sample/login_engine/public/stylesheets/login_engine.css +81 -0
  143. data/sample/login_engine/script/about +3 -0
  144. data/sample/login_engine/script/breakpointer +3 -0
  145. data/sample/login_engine/script/console +3 -0
  146. data/sample/login_engine/script/destroy +3 -0
  147. data/sample/login_engine/script/generate +3 -0
  148. data/sample/login_engine/script/performance/benchmarker +3 -0
  149. data/sample/login_engine/script/performance/profiler +3 -0
  150. data/sample/login_engine/script/plugin +3 -0
  151. data/sample/login_engine/script/process/inspector +3 -0
  152. data/sample/login_engine/script/process/reaper +3 -0
  153. data/sample/login_engine/script/process/spawner +3 -0
  154. data/sample/login_engine/script/runner +3 -0
  155. data/sample/login_engine/script/server +3 -0
  156. data/sample/login_engine/test/fixtures/users.yml +41 -0
  157. data/specs/erb_cdata.rb +11 -0
  158. data/specs/filters.rb +5 -4
  159. data/specs/gettext/static_text.rb +30 -13
  160. data/specs/impl/preprocess.rb +58 -54
  161. metadata +375 -120
  162. data/sample/hello/test1.rb +0 -23
@@ -0,0 +1,248 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: logine_engine 1.0.0\n"
10
+ "POT-Creation-Date: 2007-07-11 13:25+0900\n"
11
+ "PO-Revision-Date: 2007-07-10 17:04+0900\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: app/controllers/user_controller.rb:-
20
+ msgid "Login successful"
21
+ msgstr "ログイン成功"
22
+
23
+ #: app/controllers/user_controller.rb:-
24
+ msgid "Login unsuccessful"
25
+ msgstr "ログイン失敗"
26
+
27
+ #: app/controllers/user_controller.rb:-
28
+ msgid ""
29
+ " Please check your registered email account to verify your account "
30
+ "registration and continue with the login."
31
+ msgstr ""
32
+
33
+ #: app/controllers/user_controller.rb:-
34
+ msgid " Please log in."
35
+ msgstr "ログインしてください"
36
+
37
+ #: app/controllers/user_controller.rb:-
38
+ msgid "Error creating account: confirmation email not sent"
39
+ msgstr ""
40
+
41
+ #: app/controllers/user_controller.rb:-
42
+ msgid "Password updated."
43
+ msgstr "パスワードは変更されました"
44
+
45
+ #: app/controllers/user_controller.rb:-
46
+ msgid "There was a problem saving the password. Please retry."
47
+ msgstr ""
48
+
49
+ #: app/controllers/user_controller.rb:-
50
+ msgid "Password could not be changed at this time. Please retry."
51
+ msgstr ""
52
+
53
+ #: app/controllers/user_controller.rb:-
54
+ msgid "You are currently logged in. You may change your password now."
55
+ msgstr ""
56
+
57
+ #: app/controllers/user_controller.rb:-
58
+ msgid "Please enter a valid email address."
59
+ msgstr ""
60
+
61
+ #: app/controllers/user_controller.rb:-
62
+ msgid "User details updated"
63
+ msgstr "ユーザ情報は変更されました"
64
+
65
+ #: app/controllers/user_controller.rb:-
66
+ msgid "Details could not be updated! Please retry."
67
+ msgstr ""
68
+
69
+ #: app/controllers/user_controller.rb:-
70
+ msgid "Error updating user details. Please try again later."
71
+ msgstr ""
72
+
73
+ #: app/controllers/user_controller.rb:-
74
+ msgid "The delete instructions were not sent. Please try again later."
75
+ msgstr ""
76
+
77
+ #: app/models/user.rb:-
78
+ msgid "user"
79
+ msgstr ""
80
+
81
+ #: app/models/user.rb:-
82
+ msgid "User|Login"
83
+ msgstr ""
84
+
85
+ #: app/models/user.rb:-
86
+ msgid "User|Salted password"
87
+ msgstr ""
88
+
89
+ #: app/models/user.rb:-
90
+ msgid "User|Email"
91
+ msgstr ""
92
+
93
+ #: app/models/user.rb:-
94
+ msgid "User|Firstname"
95
+ msgstr ""
96
+
97
+ #: app/models/user.rb:-
98
+ msgid "User|Lastname"
99
+ msgstr ""
100
+
101
+ #: app/models/user.rb:-
102
+ msgid "User|Salt"
103
+ msgstr ""
104
+
105
+ #: app/models/user.rb:-
106
+ msgid "User|Verified"
107
+ msgstr ""
108
+
109
+ #: app/models/user.rb:-
110
+ msgid "User|Role"
111
+ msgstr ""
112
+
113
+ #: app/models/user.rb:-
114
+ msgid "User|Security token"
115
+ msgstr ""
116
+
117
+ #: app/models/user.rb:-
118
+ msgid "User|Token expiry"
119
+ msgstr ""
120
+
121
+ #: app/models/user.rb:-
122
+ msgid "User|Created at"
123
+ msgstr ""
124
+
125
+ #: app/models/user.rb:-
126
+ msgid "User|Updated at"
127
+ msgstr ""
128
+
129
+ #: app/models/user.rb:-
130
+ msgid "User|Logged in at"
131
+ msgstr ""
132
+
133
+ #: app/models/user.rb:-
134
+ msgid "User|Deleted"
135
+ msgstr ""
136
+
137
+ #: app/models/user.rb:-
138
+ msgid "User|Delete after"
139
+ msgstr ""
140
+
141
+ #: app/views/user/login.rhtml:-
142
+ msgid "Please Login1"
143
+ msgstr "ログインしてください"
144
+
145
+ #: app/views/layouts/user.a2html:-
146
+ msgid "MyApp"
147
+ msgstr ""
148
+
149
+ #: app/views/user/home.a2html:-
150
+ msgid "Welcome"
151
+ msgstr "ようこそ"
152
+
153
+ #: app/views/user/home.a2html:-
154
+ msgid ""
155
+ "Since you are here it's safe to assume the application never called "
156
+ "store_location,\n"
157
+ " otherwise you would have been redirected somewhere else after a "
158
+ "successful login."
159
+ msgstr ""
160
+ "この画面が表示されるのはアプリケーションが store_location を呼んでないからで"
161
+ "す。呼んでいれば、ログインに成功した後には、他の画面にリダイレクトされるで"
162
+ "しょう"
163
+
164
+ #: app/views/user/home.a2html:-
165
+ msgid "You are now logged into the system, %{name} ..."
166
+ msgstr "%{name}さん、あなたはこのシステムにログインしています。"
167
+
168
+ #: app/views/user/home.a2html:-
169
+ msgid "logout"
170
+ msgstr "ログアウト"
171
+
172
+ #: app/views/user/_edit.a2html:-
173
+ msgid "First Name:"
174
+ msgstr "姓"
175
+
176
+ #: app/views/user/_edit.a2html:-
177
+ msgid "Last Name:"
178
+ msgstr "名前"
179
+
180
+ #: app/views/user/_edit.a2html:-
181
+ msgid "Login ID:"
182
+ msgstr "ログインID"
183
+
184
+ #: app/views/user/_edit.a2html:-
185
+ msgid "Email:"
186
+ msgstr "メールアドレス"
187
+
188
+ #: app/views/user/_edit.a2html:-
189
+ msgid "Signup"
190
+ msgstr "新規登録"
191
+
192
+ #: app/views/user/_edit.a2html:-
193
+ msgid "Change Settings"
194
+ msgstr "設定変更"
195
+
196
+ #: app/views/user/edit.a2html:-
197
+ msgid "Edit user"
198
+ msgstr "ユーザ情報修正"
199
+
200
+ #: app/views/user/edit.a2html:-
201
+ msgid "Delete Account"
202
+ msgstr "ユーザ削除"
203
+
204
+ #: app/views/user/change_password.a2html:-
205
+ msgid "Change Password"
206
+ msgstr "パスワード変更"
207
+
208
+ #: app/views/user/change_password.a2html:-
209
+ msgid ""
210
+ "Enter your new password in the fields below and click 'Change Password' to "
211
+ "have a new password sent to your email inbox."
212
+ msgstr "新しいパスワードを下に入力して「パスワード変更」をクリックしてください"
213
+
214
+ #: app/views/user/change_password.a2html:-
215
+ msgid "Change password"
216
+ msgstr "パスワード変更"
217
+
218
+ #: app/views/user/change_password.a2html:-
219
+ msgid "Cancel"
220
+ msgstr "キャンセル"
221
+
222
+ #: app/views/user/_password.a2html:-
223
+ msgid "Password:"
224
+ msgstr "パスワード"
225
+
226
+ #: app/views/user/_password.a2html:-
227
+ msgid "Password Confirmation:"
228
+ msgstr "パスワード確認"
229
+
230
+ #: app/views/user/login.a2html:-
231
+ msgid "Please Login"
232
+ msgstr "ログインしてください"
233
+
234
+ #: app/views/user/login.a2html:-
235
+ msgid "|"
236
+ msgstr ""
237
+
238
+ #: app/views/user/login.a2html:-
239
+ msgid "Login"
240
+ msgstr "ログイン"
241
+
242
+ #: app/views/user/login.a2html:-
243
+ msgid "Register for an account"
244
+ msgstr "新規登録する"
245
+
246
+ #: app/views/user/login.a2html:-
247
+ msgid "Forgot my password"
248
+ msgstr "パスワードを忘れた時はこちら"
@@ -0,0 +1,245 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: logine_engine 1.0.0\n"
10
+ "POT-Creation-Date: 2007-07-11 13:25+0900\n"
11
+ "PO-Revision-Date: 2007-07-10 17:04+0900\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: app/controllers/user_controller.rb:-
20
+ msgid "Login successful"
21
+ msgstr ""
22
+
23
+ #: app/controllers/user_controller.rb:-
24
+ msgid "Login unsuccessful"
25
+ msgstr ""
26
+
27
+ #: app/controllers/user_controller.rb:-
28
+ msgid ""
29
+ " Please check your registered email account to verify your account "
30
+ "registration and continue with the login."
31
+ msgstr ""
32
+
33
+ #: app/controllers/user_controller.rb:-
34
+ msgid " Please log in."
35
+ msgstr ""
36
+
37
+ #: app/controllers/user_controller.rb:-
38
+ msgid "Error creating account: confirmation email not sent"
39
+ msgstr ""
40
+
41
+ #: app/controllers/user_controller.rb:-
42
+ msgid "Password updated."
43
+ msgstr ""
44
+
45
+ #: app/controllers/user_controller.rb:-
46
+ msgid "There was a problem saving the password. Please retry."
47
+ msgstr ""
48
+
49
+ #: app/controllers/user_controller.rb:-
50
+ msgid "Password could not be changed at this time. Please retry."
51
+ msgstr ""
52
+
53
+ #: app/controllers/user_controller.rb:-
54
+ msgid "You are currently logged in. You may change your password now."
55
+ msgstr ""
56
+
57
+ #: app/controllers/user_controller.rb:-
58
+ msgid "Please enter a valid email address."
59
+ msgstr ""
60
+
61
+ #: app/controllers/user_controller.rb:-
62
+ msgid "User details updated"
63
+ msgstr ""
64
+
65
+ #: app/controllers/user_controller.rb:-
66
+ msgid "Details could not be updated! Please retry."
67
+ msgstr ""
68
+
69
+ #: app/controllers/user_controller.rb:-
70
+ msgid "Error updating user details. Please try again later."
71
+ msgstr ""
72
+
73
+ #: app/controllers/user_controller.rb:-
74
+ msgid "The delete instructions were not sent. Please try again later."
75
+ msgstr ""
76
+
77
+ #: app/models/user.rb:-
78
+ msgid "user"
79
+ msgstr ""
80
+
81
+ #: app/models/user.rb:-
82
+ msgid "User|Login"
83
+ msgstr ""
84
+
85
+ #: app/models/user.rb:-
86
+ msgid "User|Salted password"
87
+ msgstr ""
88
+
89
+ #: app/models/user.rb:-
90
+ msgid "User|Email"
91
+ msgstr ""
92
+
93
+ #: app/models/user.rb:-
94
+ msgid "User|Firstname"
95
+ msgstr ""
96
+
97
+ #: app/models/user.rb:-
98
+ msgid "User|Lastname"
99
+ msgstr ""
100
+
101
+ #: app/models/user.rb:-
102
+ msgid "User|Salt"
103
+ msgstr ""
104
+
105
+ #: app/models/user.rb:-
106
+ msgid "User|Verified"
107
+ msgstr ""
108
+
109
+ #: app/models/user.rb:-
110
+ msgid "User|Role"
111
+ msgstr ""
112
+
113
+ #: app/models/user.rb:-
114
+ msgid "User|Security token"
115
+ msgstr ""
116
+
117
+ #: app/models/user.rb:-
118
+ msgid "User|Token expiry"
119
+ msgstr ""
120
+
121
+ #: app/models/user.rb:-
122
+ msgid "User|Created at"
123
+ msgstr ""
124
+
125
+ #: app/models/user.rb:-
126
+ msgid "User|Updated at"
127
+ msgstr ""
128
+
129
+ #: app/models/user.rb:-
130
+ msgid "User|Logged in at"
131
+ msgstr ""
132
+
133
+ #: app/models/user.rb:-
134
+ msgid "User|Deleted"
135
+ msgstr ""
136
+
137
+ #: app/models/user.rb:-
138
+ msgid "User|Delete after"
139
+ msgstr ""
140
+
141
+ #: app/views/user/login.rhtml:-
142
+ msgid "Please Login1"
143
+ msgstr ""
144
+
145
+ #: app/views/layouts/user.a2html:-
146
+ msgid "MyApp"
147
+ msgstr ""
148
+
149
+ #: app/views/user/home.a2html:-
150
+ msgid "Welcome"
151
+ msgstr ""
152
+
153
+ #: app/views/user/home.a2html:-
154
+ msgid ""
155
+ "Since you are here it's safe to assume the application never called "
156
+ "store_location,\n"
157
+ " otherwise you would have been redirected somewhere else after a "
158
+ "successful login."
159
+ msgstr ""
160
+
161
+ #: app/views/user/home.a2html:-
162
+ msgid "You are now logged into the system, %{name} ..."
163
+ msgstr ""
164
+
165
+ #: app/views/user/home.a2html:-
166
+ msgid "logout"
167
+ msgstr ""
168
+
169
+ #: app/views/user/_edit.a2html:-
170
+ msgid "First Name:"
171
+ msgstr ""
172
+
173
+ #: app/views/user/_edit.a2html:-
174
+ msgid "Last Name:"
175
+ msgstr ""
176
+
177
+ #: app/views/user/_edit.a2html:-
178
+ msgid "Login ID:"
179
+ msgstr ""
180
+
181
+ #: app/views/user/_edit.a2html:-
182
+ msgid "Email:"
183
+ msgstr ""
184
+
185
+ #: app/views/user/_edit.a2html:-
186
+ msgid "Signup"
187
+ msgstr ""
188
+
189
+ #: app/views/user/_edit.a2html:-
190
+ msgid "Change Settings"
191
+ msgstr ""
192
+
193
+ #: app/views/user/edit.a2html:-
194
+ msgid "Edit user"
195
+ msgstr ""
196
+
197
+ #: app/views/user/edit.a2html:-
198
+ msgid "Delete Account"
199
+ msgstr ""
200
+
201
+ #: app/views/user/change_password.a2html:-
202
+ msgid "Change Password"
203
+ msgstr ""
204
+
205
+ #: app/views/user/change_password.a2html:-
206
+ msgid ""
207
+ "Enter your new password in the fields below and click 'Change Password' to "
208
+ "have a new password sent to your email inbox."
209
+ msgstr ""
210
+
211
+ #: app/views/user/change_password.a2html:-
212
+ msgid "Change password"
213
+ msgstr ""
214
+
215
+ #: app/views/user/change_password.a2html:-
216
+ msgid "Cancel"
217
+ msgstr ""
218
+
219
+ #: app/views/user/_password.a2html:-
220
+ msgid "Password:"
221
+ msgstr ""
222
+
223
+ #: app/views/user/_password.a2html:-
224
+ msgid "Password Confirmation:"
225
+ msgstr ""
226
+
227
+ #: app/views/user/login.a2html:-
228
+ msgid "Please Login"
229
+ msgstr ""
230
+
231
+ #: app/views/user/login.a2html:-
232
+ msgid "|"
233
+ msgstr ""
234
+
235
+ #: app/views/user/login.a2html:-
236
+ msgid "Login"
237
+ msgstr ""
238
+
239
+ #: app/views/user/login.a2html:-
240
+ msgid "Register for an account"
241
+ msgstr ""
242
+
243
+ #: app/views/user/login.a2html:-
244
+ msgid "Forgot my password"
245
+ msgstr ""