masq2 1.0.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.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +83 -0
  4. data/CODE_OF_CONDUCT.md +135 -0
  5. data/CONTRIBUTING.md +151 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +426 -0
  8. data/SECURITY.md +23 -0
  9. data/app/assets/images/masq/favicon.ico +0 -0
  10. data/app/assets/images/masq/openid_symbol.png +0 -0
  11. data/app/assets/images/masq/seatbelt_icon.png +0 -0
  12. data/app/assets/images/masq/seatbelt_icon_gray.png +0 -0
  13. data/app/assets/images/masq/seatbelt_icon_high.png +0 -0
  14. data/app/assets/stylesheets/masq/application.css.erb +61 -0
  15. data/app/controllers/masq/accounts_controller.rb +132 -0
  16. data/app/controllers/masq/base_controller.rb +78 -0
  17. data/app/controllers/masq/consumer_controller.rb +144 -0
  18. data/app/controllers/masq/info_controller.rb +23 -0
  19. data/app/controllers/masq/passwords_controller.rb +42 -0
  20. data/app/controllers/masq/personas_controller.rb +75 -0
  21. data/app/controllers/masq/server_controller.rb +247 -0
  22. data/app/controllers/masq/sessions_controller.rb +58 -0
  23. data/app/controllers/masq/sites_controller.rb +60 -0
  24. data/app/controllers/masq/yubikey_associations_controller.rb +25 -0
  25. data/app/helpers/masq/application_helper.rb +57 -0
  26. data/app/helpers/masq/personas_helper.rb +15 -0
  27. data/app/helpers/masq/server_helper.rb +15 -0
  28. data/app/mailers/masq/account_mailer.rb +17 -0
  29. data/app/models/masq/account.rb +245 -0
  30. data/app/models/masq/open_id_request.rb +42 -0
  31. data/app/models/masq/persona.rb +61 -0
  32. data/app/models/masq/release_policy.rb +11 -0
  33. data/app/models/masq/site.rb +68 -0
  34. data/app/views/layouts/masq/base.html.erb +70 -0
  35. data/app/views/layouts/masq/consumer.html.erb +30 -0
  36. data/app/views/masq/account_mailer/forgot_password.html.erb +3 -0
  37. data/app/views/masq/account_mailer/forgot_password.text.erb +3 -0
  38. data/app/views/masq/account_mailer/signup_notification.html.erb +5 -0
  39. data/app/views/masq/account_mailer/signup_notification.text.erb +5 -0
  40. data/app/views/masq/accounts/_hcard.html.erb +29 -0
  41. data/app/views/masq/accounts/edit.html.erb +100 -0
  42. data/app/views/masq/accounts/new.html.erb +27 -0
  43. data/app/views/masq/accounts/show.html.erb +4 -0
  44. data/app/views/masq/accounts/show.xrds.builder +40 -0
  45. data/app/views/masq/consumer/index.html.erb +31 -0
  46. data/app/views/masq/consumer/start.html.erb +2 -0
  47. data/app/views/masq/info/help.html.erb +8 -0
  48. data/app/views/masq/info/index.html.erb +5 -0
  49. data/app/views/masq/info/safe_login.html.erb +24 -0
  50. data/app/views/masq/passwords/edit.html.erb +13 -0
  51. data/app/views/masq/passwords/new.html.erb +11 -0
  52. data/app/views/masq/personas/_form.html.erb +159 -0
  53. data/app/views/masq/personas/edit.html.erb +9 -0
  54. data/app/views/masq/personas/index.html.erb +17 -0
  55. data/app/views/masq/personas/new.html.erb +9 -0
  56. data/app/views/masq/server/decide.html.erb +146 -0
  57. data/app/views/masq/server/index.xrds.builder +19 -0
  58. data/app/views/masq/server/seatbelt_config.xml.builder +24 -0
  59. data/app/views/masq/server/seatbelt_login_state.xml.builder +4 -0
  60. data/app/views/masq/sessions/new.html.erb +27 -0
  61. data/app/views/masq/shared/_error_messages.html.erb +12 -0
  62. data/app/views/masq/sites/edit.html.erb +42 -0
  63. data/app/views/masq/sites/index.html.erb +20 -0
  64. data/config/initializers/configuration.rb +5 -0
  65. data/config/initializers/mime_types.rb +1 -0
  66. data/config/initializers/requires.rb +6 -0
  67. data/config/locales/de.yml +281 -0
  68. data/config/locales/en.yml +271 -0
  69. data/config/locales/es.yml +254 -0
  70. data/config/locales/nl.yml +258 -0
  71. data/config/locales/rails.de.yml +225 -0
  72. data/config/locales/ru.yml +272 -0
  73. data/config/masq.example.yml +132 -0
  74. data/config/routes.rb +41 -0
  75. data/db/migrate/20120312120000_masq_schema.rb +152 -0
  76. data/db/migrate/20130626220915_remame_last_authenticated_with_yubikey_on_masq_accounts.rb +11 -0
  77. data/db/migrate/20130704205532_add_first_and_lastname_columns_to_personas.rb +11 -0
  78. data/db/migrate/20130807060329_change_open_id_associations_server_url_column_type.rb +22 -0
  79. data/lib/masq/active_record_openid_store/association.rb +16 -0
  80. data/lib/masq/active_record_openid_store/nonce.rb +9 -0
  81. data/lib/masq/active_record_openid_store/openid_ar_store.rb +58 -0
  82. data/lib/masq/authenticated_system.rb +136 -0
  83. data/lib/masq/engine.rb +12 -0
  84. data/lib/masq/openid_server_system.rb +110 -0
  85. data/lib/masq/signup.rb +53 -0
  86. data/lib/masq/version.rb +5 -0
  87. data/lib/masq.rb +50 -0
  88. data/lib/masq2.rb +1 -0
  89. data/lib/tasks/masq_tasks.rake +58 -0
  90. data.tar.gz.sig +2 -0
  91. metadata +377 -0
  92. metadata.gz.sig +0 -0
@@ -0,0 +1,271 @@
1
+ en:
2
+ # account controller
3
+ thanks_for_signing_up_activation_link: Thank you for signing up! We sent you an email containing an activation link.
4
+ thanks_for_signing_up: Thank you for signing up!
5
+ activation_link_resent: We sent you an email containing an activation link.
6
+ profile_updated: Your profile has been updated.
7
+ account_disabled: Your account has been disabled.
8
+ entered_password_is_wrong: The entered password is wrong.
9
+ account_activated_login_now: Your account is activated - you can login now.
10
+ couldnt_find_account_with_code_create_new_one: We could not find any account with the given activation code. Please create a new account.
11
+ account_already_activated_please_login: Your account is already activated - please login.
12
+ account_already_activated_or_missing: "The account is already activated or doesn't exist."
13
+ password_has_been_changed: Your password has been changed.
14
+ sorry_password_couldnt_be_changed: Sorry, your password could not be changed.
15
+ confirmation_of_new_password_invalid: The confirmation of the new password was incorrect.
16
+ old_password_incorrect: Your old password is incorrect.
17
+ # account views
18
+ public_persona: Public persona
19
+ forgot_password_create_new_one: You forgot your password? Here you can create a new one
20
+ account_created_but_not_activated_yet: Your OpenID account has been created, but it is not activated, yet.#
21
+ please_activate_it_by_clicking_the_following_link: Please activate it by clicking the following link
22
+ my_profile: My profile
23
+ login: Login
24
+ password: Password
25
+ my_password: My password
26
+ old_password: Old password
27
+ new_password_minimum_6_characters: New password <span class="note">(minimum length is 6 characters)</span>
28
+ password_confirmation: Password confirmation
29
+ submit_update: update
30
+ my_yubikey: My Yubikey
31
+ your_account_is_associated_with_the_yubico_identity: Your account is associated with the Yubico identity
32
+ yubikey_how_to_use: "You can use the Yubikey in addition to your password to sign into your account. Just enter your normal
33
+ password and your Yubico OTP (not seperated by spaces or anything) at the login page."
34
+ remove_association: remove association
35
+ your_yubikey_a_one_time_password: Your Yubikey <span class="note">(a Yubico one time password)</span>
36
+ associate_account_with_yubikey: associate my account with this Yubikey
37
+ your_yubikey_is_optional_for_login: Your Yubikey is currently optional for login.
38
+ make_my_yubikey_mandatory: Make my Yubikey mandatory for login
39
+ your_yubikey_is_mandatory_for_login: Your Yubikey is currently mandatory for login.
40
+ make_my_yubikey_optional: Make my Yubikey optional for login
41
+ disable_my_account: Disable my account
42
+ wont_be_possible_to_reclaim_identifier: Please consider that it won't be possible to reclaim your current OpenID identifier
43
+ confirm_by_entering_password: Confirm this step by entering your password
44
+ delete_my_account_and_data: delete my account and all my data
45
+
46
+ signup_title: Signup
47
+ signup: Signup # ???
48
+ resend_activation_email: resend activation email
49
+
50
+ # account mailer
51
+ please_activate_your_account: Please activate your account
52
+ your_request_for_a_new_password: Your request for a new password
53
+ activation_link: Activation link
54
+
55
+ # consumer controller
56
+ immediate_request_failed_setup_needed: Immediate request failed - setup needed
57
+ openid_transaction_cancelled: OpenID transaction cancelled.
58
+ verification_of_identifier_failed: "Verification of %{identifier} failed: %{message}"
59
+ verification_failed_message: "Verification failed: %{message}"
60
+ verification_of_identifier_succeeded: Verification of %{identifier} succeeded.
61
+ simple_registration_data_requested: Simple Registration data was requested
62
+ but_none_was_returned: but none was returned.
63
+ but_got_no_response: but got no response.
64
+ but_an_error_occured: "but an error occured:\n%{error_message}"
65
+ and_saved_at_the_identity_provider: and saved at the Identity Provider.
66
+ the_following_data_were_sent: "The following data were sent:"
67
+ attribute_exchange_data_requested: Attribute Exchange data was requested
68
+ attribute_exchange_store_requested: Attribute Exchange Store request sent
69
+ authentication_policies_requested: Authentication policies were requested
70
+ and_server_reported_the_following: "and the server reported the following:"
71
+ but_the_server_did_not_report_one: but the server did not report one.
72
+ authentication_time: Authentication time
73
+
74
+ # consumer views
75
+ identifier: Identifier
76
+ verify: Verify
77
+ use_immediate_mode: Use immediate mode
78
+ request_registration_data: Request registration data
79
+ request_attribute_exchange_data: Request attribute exchange data
80
+ store_attribute_exchange_data: Store attributes with attribute exchange
81
+ request_pape: Request phishing-resistent auth policy (PAPE)
82
+ force_post: Force the transaction to use POST by adding 2K of extra data
83
+
84
+ # info
85
+ questions_answers: Questions? Answers!
86
+ here_we_cover_openid_topics: Here we cover some OpenID related topics.
87
+ openid_delegation: OpenID delegation
88
+ delegation_explanation: "Delegation is a way to use your own website or blog url as OpenID identifier. Requests can
89
+ be forwarded to this server by
90
+ adding the following HTML fragment to the <code>&lt;head&gt;</code>
91
+ of your site:"
92
+ get_your_openid: Get your OpenID
93
+ openid_intro: "<p>OpenID is a shared identity service, which allows you to log on to many different
94
+ web sites using a single digital identity, eliminating the need for different user names
95
+ and passwords for each site.</p>
96
+ <p>OpenID is a decentralized, free and open standard that lets you control the amount of
97
+ personal information that you would like to provide to other web sites.</p>"
98
+ openid_intro_link: "<p>Get started and %{signup_link}.</p>"
99
+ signup_for_an_openid: signup for an OpenID
100
+ login_to_proceed: Please log in to proceed
101
+ host_requests_identification_you_need_to_login: "%{host} requests your identification and you need to log in to proceed."
102
+ login_intro: "To log in, please navigate to <strong>%{login_url}</strong>. The page your
103
+ are currently viewing is used to <strong>protect yourself from phishing and online identity theft</strong>
104
+ and should contain no links.<br />If there are any links, please report to us, who sent you here."
105
+
106
+ # nav
107
+ nav_identity: identity
108
+ nav_profile: profile
109
+ nav_personas: personas
110
+ nav_trusted_sites: trusted sites
111
+ logout: logout
112
+ current_verification_request: current verification request
113
+ login_link: login
114
+ signup_link: signup
115
+ help: help
116
+ get_help: get help
117
+ openid_consumer_testsuite_title: OpenID Consumer Testsuite
118
+ relying_party_title: Relying Party
119
+
120
+ # passwords controller
121
+ password_reset_link_has_been_sent: A password reset link has been sent to your email address.
122
+ could_not_find_user_with_email_address: Could not find a user with that email address.
123
+ password_reset: Password reset.
124
+ password_mismatch: Password mismatch.
125
+ password_cannot_be_blank: Password cannot be blank.
126
+ reset_code_invalid_try_again: Sorry, your password reset code is invalid. Please check the code and try again.
127
+
128
+ # passwords views
129
+ reset_password: reset password
130
+ forgot_password_title: Forgot password
131
+ please_enter_email: Please enter your email address
132
+ submit_send: send
133
+
134
+ # personas controller
135
+ persona_successfully_created: The persona was successfully created.
136
+ persona_updated: The persona has been updated.
137
+ persona_cannot_be_deleted: This persona cannot be deleted.
138
+
139
+ # personas views
140
+ edit_your_persona: Edit your persona “%{title}”
141
+ personal_information: Personal information
142
+ professional_information: Professional information
143
+ phone: Phone
144
+ instant_messaging: Instant Messaging
145
+ other_information: Other information
146
+
147
+ nickname: Nickname
148
+ email: Email
149
+ address: Address
150
+ postcode: Postcode
151
+ city: City
152
+ state: State
153
+ country: Country
154
+ language: Language
155
+ timezone: Timezone
156
+ gender: Gender
157
+ company_name: Company name
158
+ job_title: Job title
159
+ phone_home: Phone home
160
+ phone_mobile: Phone mobile
161
+ phone_fax: Phone fax
162
+ phone_work: Phone work
163
+ biography: Biography
164
+ title: Title
165
+ fullname: Full name
166
+ birth_date: Birth date
167
+ address_business: Address
168
+ address_additional: Additional
169
+ address_additional_business: Additional
170
+ postcode_business: Postcode
171
+ city_business: City
172
+ state_business: State
173
+ country_business: Country
174
+ im_aim: AIM
175
+ im_icq: ICQ
176
+ im_msn: MSN
177
+ im_yahoo: Yahoo
178
+ im_jabber: Jabber
179
+ im_skype: Skype
180
+ image_url: Image URL
181
+ website_url: Website URL
182
+ blog_url: Blog URL
183
+ dob: Day of birth
184
+ date_of_birth: Day of birth
185
+
186
+ my_personas_title: My personas
187
+ personas_intro: "Personas define certain roles of your account. For instance you can have a persona for private
188
+ use and another one for business context. When a relying party requests your information
189
+ you can choose the persona that you would like to exchange data from."
190
+ edit: edit
191
+ delete: delete
192
+ really_want_to_delete_persona: Do you really want to delete the persona ”%{title}”?
193
+ create_a_new_persona: create a new persona
194
+ create_a_new_persona_title: Create a new persona
195
+
196
+ # sessions controller
197
+ you_are_logged_in: You are now logged in.
198
+ account_not_yet_activated: Your account is not activated, yet.
199
+ login_incorrect: The login is incorrect.
200
+ password_incorrect: The password is incorrect.
201
+ you_are_now_logged_out: You are now logged out.
202
+ account_deactivated: Your account is deactivated.
203
+
204
+ # sessions views
205
+ login_title: Login
206
+ your_openid: Your OpenID
207
+ cancel_this_request: cancel this request
208
+ remember_me: Remember me
209
+ login_submit: login
210
+ i_forgot_my_password: I forgot my password
211
+
212
+ # server controller
213
+ this_is_openid_not_a_human_resource: This is an OpenID server endpoint, not a human readable resource.
214
+ identity_verification_request_invalid: The identity verification request is invalid.
215
+ service_provider_requires_reauthentication_last_login_too_long_ago: The Service Provider requires reauthentication, because your last login is too long ago.
216
+ login_to_verify_identity: Please log in to verify your identity.
217
+
218
+ # server views
219
+ identity_request_from_host: Identity request from %{host}
220
+ identity_request_missing_persona: Please %{create_link} to answer the identity request.
221
+ trust_root_requests_some_personal_data: "%{trust_root} requests some personal data."
222
+ trust_root_sends_some_personal_data: "%{trust_root} sends some personal data:"
223
+ trust_root_requires_authentication: "%{trust_root} requires your authentication."
224
+ select_information_to_submit: Please select the information you would like to submit.
225
+ select_information_to_accept: Please select the information you would like to accept.
226
+ attributes_are_shown_from_persona: The attributes shown are from your persona %{persona}.
227
+ attributes_will_be_added_to_persona: The attributes will be added to your persona %{persona} (%{choose_link}).
228
+ to_submit_other_values_you_can_edit_or_choose: To submit other values you can %{edit_link} or %{choose_link}.
229
+ create_persona_link: create a persona
230
+ edit_persona_link: edit the persona
231
+ choose_other_persona: choose another persona
232
+ choose_persona_title: Choose a persona
233
+ choose_persona_submit: choose persona
234
+ create_new_persona_link: create a new persona
235
+ requested_information_title: Requested information
236
+ sent_information_title: Sent information
237
+ disclosure: disclosure
238
+ accept: accept
239
+ current: current
240
+ required: required
241
+ optional: optional
242
+ not_supported: not supported
243
+ trust_site_only_this_time: Trust this site only this time
244
+ always_trust_site: Always trust this site
245
+ approve_request: Approve this request
246
+ cancel_request: Cancel this request
247
+
248
+ # sites controllers
249
+ release_policy_for_site_updated: The release policy for this site has been updated.
250
+
251
+ # sites views
252
+ edit_link: edit
253
+ delete_link: delete
254
+ or: or
255
+ your_release_policy_for_site: Your release policy for %{site}
256
+ persona_label: Persona
257
+ property: property
258
+ value: value
259
+ update_release_policy_submit: update release policy
260
+ identity_request_answered_without_interaction: Identity request from the following sites are answered directly without further interaction.
261
+ alter_release_policies_here: You can alter the release policies for these sites here.
262
+ really_want_to_delete_trust_for_site: Do you really want to delete the trust for %{site}?
263
+ no_entries_yet: There are no entries, yet.
264
+ ext0: Ext0
265
+ ext1: Ext1
266
+ ext2: Ext2
267
+
268
+ # yubikey controller
269
+ account_associated_with_yubico_identity: Your account has been associated with your Yubico identity.
270
+ sorry_yubico_one_time_password_incorrect: Sorry, the given Yubico one time password is incorrect.
271
+ account_disassociated_from_yubico_identity: Your account has been disassociated from the Yubico identity.
@@ -0,0 +1,254 @@
1
+ es:
2
+ # account controller
3
+ thanks_for_signing_up_activation_link: Gracias por registrarte! Te hemos enviado un correo con un enlace para que actives tu cuenta.
4
+ thanks_for_signing_up: Gracias por registrarte!
5
+ profile_updated: Tu perfil a sido actualizado.
6
+ account_disabled: Tu cuenta a sido desabilitada.
7
+ entered_password_is_wrong: La clave ingresada es incorrecta.
8
+ account_activated_login_now: Tu cuenta ha sido activada - puedes entrar ahora.
9
+ couldnt_find_account_with_code_create_new_one: "No pudimos encontrar una cuenta con ese código de activación, por favor crea una nueva."
10
+ account_already_activated_please_login: Tu cuenta ya fué activada - por favor entra.
11
+ password_has_been_changed: Tu clave a sido modificada.
12
+ sorry_password_couldnt_be_changed: "Perdon, pero tu clave no pudo ser modificada."
13
+ confirmation_of_new_password_invalid: La confirmación de la nueva clave es incorrecta.
14
+ old_password_incorrect: Tu antigua clave es incorrecta.
15
+ # account views
16
+ public_persona: Persona pública
17
+ forgot_password_create_new_one: ¿Olvidate tu clave? Aquí puedes crear una nueva
18
+ account_created_but_not_activated_yet: "Tu cuenta OpenID a sido creada, pero no ha sido activada todavía."
19
+ please_activate_it_by_clicking_the_following_link: Por favor activala usando el siguiente enlace
20
+ my_profile: Mi perfil
21
+ login: Usuario
22
+ passwort: Clave
23
+ my_password: Mi clave
24
+ old_password: Antigua clave
25
+ new_password_minimum_6_characters: Nueva clave <span class="note">(el tamaño minimo son 6 caracteres)</span>
26
+ password_confirmation: Confirmación de la clave
27
+ submit_update: actualizar
28
+ my_yubikey: Mi Yubikey
29
+ your_account_is_associated_with_the_yubico_identity: Tu cuenta está asociada con la identidad Yubico
30
+ yubikey_how_to_use:
31
+ "Puedes usar una Yubikey en conjunto con tu clave para entrar en tu cuenta.
32
+ solo ingresa tu clave seguida de tu Yubico OTP (sin ningun espacio o separación) en la página de ingreso"
33
+ remove_association: eliminar asociación
34
+ your_yubikey_a_one_time_password: Tu Yubikey <span class="note">(Yubico one time password)</span>
35
+ associate_account_with_yubikey: asociar mi cuenta con esta Yubikey
36
+ disable_my_account: Desactivar mi cuenta
37
+ wont_be_possible_to_reclaim_identifier: Por favor considera que no podrás recuperartu identificación OpenID
38
+ confirm_by_entering_password: Confirma este paso ingresando tu clave.
39
+ delete_my_account_and_data: borrar mi cuenta y mis datos.
40
+
41
+ signup_title: Registro
42
+ signup: Registro # ???
43
+
44
+ # consumer controller
45
+ immediate_request_failed_setup_needed: Petición inmediata fallida - hace falta una configuración
46
+ openid_transaction_cancelled: Transacción OpenID cancelada.
47
+ verification_of_identifier_failed: "Verificación de %{identifier} fallida: %{message}"
48
+ verification_failed_message: "Verificación fallida: %{message}"
49
+ verification_of_identifier_succeeded: "Verificación de %{identifier} exitosa."
50
+ simple_registration_data_requested: Han sido pedidos datos de registro simple
51
+ but_none_was_returned: pero ninguno fué entregado.
52
+ the_following_data_were_sent: "Se enviaron los siguientes datos:"
53
+ attribute_exchange_data_requested: Fue pedido el intercambio de atributos
54
+ authentication_policies_requested: Se pidieron las políticas de autentificación
55
+ and_server_reported_the_following: "y el servidor reportó lo siguiente"
56
+ but_the_server_did_not_report_one: pero el servidor no reportó ninguno
57
+ authentication_time: Tiempo de autentificación
58
+
59
+ # consumer views
60
+ identifier: Identificador
61
+ verify: Verificar
62
+ use_immediate_mode: Utilizar modo inmediato
63
+ request_registration_data: Pedir información de registro
64
+ request_attribute_exchange_data: Pedir intercambio de atributos
65
+ request_pape: Pedir politica de autentificación resistente a phishing (PAPE)
66
+ force_post: Force the transaction to use POST by adding 2K of extra data
67
+
68
+ # info
69
+ questions_answers: Preguntas? Respuestas!
70
+ here_we_cover_openid_topics: Aquí cubrimos algunos temas relacionados con OpenID.
71
+ openid_delegation: Delegación OpenID
72
+ delegation_explanation:
73
+ "Esta es una forma de utilizar la url de tu propio blog o sitio web como tu identificador OpenID.
74
+ Las peticiones serán redireccionadas a este servidor agregando el siguiente fragment e HTML a el
75
+ <code>&lt;head&gt;</code> de tu sitio:"
76
+ get_your_openid: Obten tu OpenID
77
+ openid_intro:
78
+ "<p>OpenID es un servicio de identificaciín, que te permite registrarte en distintos sitios
79
+ utilizando una sola identidad digital, eliminando la necesidad de distintos nombres de usuarios
80
+ y contraseñas para cada sitio</p>
81
+ <p>OpenID es descentralizado, gratis y un estandar abierto, que te permite controlar la
82
+ cantidad de información personal que deseas entregar a cada sitio</p>"
83
+ openid_intro_link: "<p>Empieza a usarlo y %{signup_link}.</p>"
84
+ signup_for_an_openid: registrate por tu OpenID
85
+ login_to_proceed: Por favor ingresa para continuar
86
+ host_requests_identification_you_need_to_login:
87
+ "%{host} ha pedido tu identificación y debes ingresar para continuar."
88
+ login_intro:
89
+ "Para ingresar, por favor navega a <strong>%{login_url}</strong>. La página
90
+ que estas viendo actualmente es usada para <strong>protegerte del phishing y el robo de identidad online</strong>
91
+ y no debería contener enlaces.<br />Si tiene algún enlace, por favor informanos quien te envió aquí."
92
+
93
+ # nav
94
+ nav_identity: identidad
95
+ nav_profile: perfil
96
+ nav_personas: personas
97
+ nav_trusted_sites: sitios autorizados
98
+ logout: salir
99
+ current_verification_request: current verification request
100
+ login_link: entrar
101
+ signup_link: registrar
102
+ help: ayuda
103
+ get_help: obtener ayuda
104
+ openid_consumer_testsuite_title: Prueba de Consumidor OpenID
105
+ relying_party_title: Tercero de Confianza
106
+
107
+ # passwords controller
108
+ password_reset_link_has_been_sent: Un enlace para resetear tu contraseña a sido enviado a tu dirección de correo electrónico.
109
+ could_not_find_user_with_email_address: No encontramos ningún usuario con ese correo electrónico.
110
+ password_reset: Resetear contraseña.
111
+ password_mismatch: Las contraseñas no coinciden.
112
+ password_cannot_be_blank: La contraseña no puede estár en blanco.
113
+ reset_code_invalid_try_again:
114
+ "Lo sentimos, tu código de reseteo de contraseña es inválido. por favor revisa el código y prueba de nuevo."
115
+
116
+ # passwords views
117
+ reset_password: resetear clave
118
+ forgot_password_title: Clave olvidada
119
+ please_enter_email: Por favor ingresa tu correo electrónico
120
+ submit_send: enviar
121
+
122
+ # personas controller
123
+ persona_successfully_created: La persona se a creado exitosamente.
124
+ persona_updated: La persona ha sido eliminada.
125
+ persona_cannot_be_deleted: Esta persona no se puede eliminar.
126
+
127
+ # personas views
128
+ edit_your_persona: "Editar tu persona “%{title}”"
129
+ personal_information: Información personal
130
+ professional_information: Información profecional
131
+ phone: Teléfonos
132
+ instant_messaging: Mensagería Instantanea
133
+ other_information: Otra información
134
+
135
+ nickname: Seudonimo
136
+ email: Correo Electrónico
137
+ address: Dirección
138
+ postcode: Código Postal
139
+ city: Ciudad
140
+ state: Estado
141
+ country: País
142
+ language: Idioma
143
+ timezone: Zona horaria
144
+ gender: Sexo
145
+ company_name: Compañía
146
+ job_title: Posición
147
+ phone_home: Teléfono hogar
148
+ phone_mobile: Teléfono móvil
149
+ phone_fax: Fax
150
+ phone_work: Teléfono trabajo
151
+ biography: Biografía
152
+ title: Título
153
+ fullname: Nombre completo
154
+ birth_date: Cumpleaños
155
+ address_business: Dirección
156
+ address_additional: Adicional
157
+ address_additional_business: Adicional
158
+ postcode_business: Código Postal
159
+ city_business: Ciudad
160
+ state_business: Estado
161
+ country_business: País
162
+ im_aim: AIM
163
+ im_icq: ICQ
164
+ im_msn: MSN
165
+ im_yahoo: Yahoo
166
+ im_jabber: Jabber
167
+ im_skype: Skype
168
+ image_url: URL Imagen
169
+ website_url: URL Sitio Web
170
+ blog_url: URL Blog
171
+ dob: Fecha de nacimiento
172
+ date_of_birth: Fecha de nacimiento
173
+
174
+ my_personas_title: Mis personas
175
+ personas_intro:
176
+ "Las personas definen ciertos roles en tu cuenta. Por ejemplo puedes tener una persona para uso privado
177
+ y otra en tu contexo de negocio. Cuando un tercero de confianza pida tu información
178
+ tu puees elegir la persona que deseas utilizar en ese intercambio de datos."
179
+ edit: editar
180
+ delete: eliminar
181
+ really_want_to_delete_persona: "Realmente quieres eliminar a la persona ”%{title}”?"
182
+ create_a_new_persona: crear una nueva persona
183
+ create_a_new_persona_title: Crear una nueva persona
184
+
185
+ # sessions controller
186
+ you_are_logged_in: Ahora estás ingresado.
187
+ login_incorrect_or_account_not_yet_activated: El usuario es incorrecto o la cuenta no ha sido activada todavía.
188
+ login_incorrect: El usuario es incorrecto.
189
+ password_incorrect: La clave es incorrecto.
190
+ you_are_now_logged_out: Has salido.
191
+ account_deactivated: Tu cuenta es desabilitada.
192
+
193
+ # sessions views
194
+ login_title: Usuario
195
+ your_openid: Tu OpenID
196
+ cancel_this_request: cancelar esta petición
197
+ remember_me: recordarme
198
+ login_submit: usuario
199
+ i_forgot_my_password: Olvidé mi clave
200
+
201
+ # server controller
202
+ this_is_openid_not_a_human_resource: "Este es un punto de conexión del servidor OpenID, no un recurso utilizable por personas"
203
+ identity_verification_request_invalid: La petición de verificación de identidad es inválida.
204
+ service_provider_requires_reauthentication_last_login_too_long_ago: "El proveedor del servicio requiere autenticación, porque tu último ingreso fue hace demasiado tiempo."
205
+ login_to_verify_identity: Por favor ingresa para verificar tu identidad.
206
+
207
+ # server views
208
+ identity_request_from_host: "Petición de identidad de %{host}"
209
+ identity_request_missing_persona: Por favor %{create_link}.
210
+ trust_root_requests_some_personal_data: "%{trust_root} pidió algunos datos personales."
211
+ select_information_to_submit: Por favor selecciona la información que deseas enviar.
212
+ attributes_are_shown_from_persona: "Los atributos mostrados son de la persona %{persona}."
213
+ to_submit_other_values_you_can_edit_or_choose: "Para enviar otros valores puedes %{edit_link} o %{choose_link}."
214
+ create_persona_link: crear una persona
215
+ edit_persona_link: editar la persona
216
+ choose_other_persona: elegir otra persona
217
+ trust_root_requires_authentication: "%{trust_root} requiere tu autenticación."
218
+ choose_persona_title: Elige una persona
219
+ choose_persona_submit: elegir persona
220
+ create_new_persona_link: crear una nueva persona
221
+ requested_information_title: Información pédida
222
+ disclosure: liberar
223
+ required: required
224
+ optional: optional
225
+ not_supported: not supported
226
+ trust_site_only_this_time: Confiar en este sitio solo esta vez
227
+ always_trust_site: Siempre confiar en este sitio
228
+ approve_request: Aprovar esta petición
229
+ cancel_request: Cancelar esta petición
230
+
231
+ # sites controllers
232
+ release_policy_for_site_updated: Las políticas de liberación para este sitio han sido actualizadas.
233
+
234
+ # sites views
235
+ edit_link: editar
236
+ delete_link: eliminar
237
+ or: o
238
+ your_release_policy_for_site: Tu política de liberación para %{site}
239
+ persona_label: Persona
240
+ property: propiedad
241
+ value: valor
242
+ update_release_policy_submit: actualizar política de liberación
243
+ identity_request_answered_without_interaction: Peticiones de identificación de los siguientes sitios son contestadas directamente sin otra interacción.
244
+ alter_release_policies_here: Puedes modificar las política de liberaciónpara estos sitios.
245
+ really_want_to_delete_trust_for_site: "¿Estas seguro que deseas eliminar la confianza de %{site}?"
246
+ no_entries_yet: No hay ninguna entrada todavía.
247
+ ext0: Ext0
248
+ ext1: Ext1
249
+ ext2: Ext2
250
+
251
+ # yubikey controller
252
+ account_associated_with_yubico_identity: Tu cuenta se a asociado con tu identidad Yubico.
253
+ sorry_yubico_one_time_password_incorrect: "Lo sentimos, la clave de un solo uso Yubico es incorrecta."
254
+ account_disassociated_from_yubico_identity: Tu cuenta se a desasociado de la identidad Yubico.