rodauth-i18n 0.3.0 → 0.5.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.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/generators/rodauth/translations_generator.rb +58 -5
- data/lib/rodauth/features/i18n.rb +8 -0
- data/locales/es.yml +247 -0
- data/locales/fr.yml +247 -0
- data/rodauth-i18n.gemspec +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdc05702895ae9cc9da2af1cf548c66292173c5298c4d9da9940f53fc35f5e11
|
|
4
|
+
data.tar.gz: e0a64c6f87c136b5b0365eac77b2713262d6b2c24d0162d5e56bbdf91be3b854
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3794e339e53e8a07c121ed9d613f0593e8faf4208e1b2be9a274efb9b69b73c2e1f54c9fe866805ba4816c5a7db72aadc2e53ad885f777ad6f360352e24da2aa
|
|
7
|
+
data.tar.gz: 6d03ccf8119b87490fbf47664f15fd35d1a367c69b936aae1181e24d15bdfc7458250b5bf5013121d1b61ac3255ec98feedceba5e06f319c93042c905689515e
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ It also includes built-in translations for various languages, which you are enco
|
|
|
9
9
|
Add this line to your application's Gemfile:
|
|
10
10
|
|
|
11
11
|
```ruby
|
|
12
|
-
gem "rodauth-i18n", "~> 0.
|
|
12
|
+
gem "rodauth-i18n", "~> 0.4"
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
And then execute:
|
|
@@ -82,6 +82,8 @@ $ rails generate rodauth:translations
|
|
|
82
82
|
# imports translations for available locales
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
Only translations for currently enabled Rodauth features will be imported. Re-running the generator will import translations for any newly enabled features, remove translations for any disabled features, and keep any existing translations unchanged.
|
|
86
|
+
|
|
85
87
|
On other web frameworks, you can copy the translation files directly from the `locales/` directory.
|
|
86
88
|
|
|
87
89
|
### Raising on missing translations
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
require "rails/generators
|
|
1
|
+
require "rails/generators"
|
|
2
|
+
require "active_support/core_ext/hash/slice"
|
|
2
3
|
|
|
3
4
|
module Rodauth
|
|
4
5
|
module Rails
|
|
@@ -10,17 +11,69 @@ module Rodauth
|
|
|
10
11
|
desc: "List of locales to copy translation files for"
|
|
11
12
|
|
|
12
13
|
def copy_locales
|
|
14
|
+
say "No locales specified!", :yellow if locales.empty?
|
|
15
|
+
|
|
13
16
|
locales.each do |locale|
|
|
14
|
-
|
|
15
|
-
end
|
|
17
|
+
translations = retrieve_translations(locale)
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
if translations.empty?
|
|
20
|
+
say "No translations for locale: #{locale}", :yellow
|
|
21
|
+
next
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# retain translations the user potentially changed
|
|
25
|
+
translations.merge!(existing_translations(locale))
|
|
26
|
+
# keep only translations for currently enabled features
|
|
27
|
+
translations.slice!(*rodauth_methods)
|
|
28
|
+
|
|
29
|
+
create_file "config/locales/rodauth.#{locale}.yml", locale_content(locale, translations)
|
|
30
|
+
end
|
|
18
31
|
end
|
|
19
32
|
|
|
20
33
|
private
|
|
21
34
|
|
|
35
|
+
def retrieve_translations(locale)
|
|
36
|
+
files = translation_files(locale)
|
|
37
|
+
files.inject({}) do |translations, file|
|
|
38
|
+
translations.merge YAML.load_file(file)[locale]["rodauth"]
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def existing_translations(locale)
|
|
43
|
+
destination = File.join(destination_root, "config/locales/rodauth.#{locale}.yml")
|
|
44
|
+
|
|
45
|
+
# try to load existing translations first
|
|
46
|
+
if File.exist?(destination)
|
|
47
|
+
YAML.load_file(destination)[locale]["rodauth"]
|
|
48
|
+
else
|
|
49
|
+
{}
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def translation_files(locale)
|
|
54
|
+
# ensure Rodauth configuration ran in autoloaded environment
|
|
55
|
+
Rodauth::Rails.app
|
|
56
|
+
|
|
57
|
+
Rodauth::I18n.directories
|
|
58
|
+
.map { |directory| Dir["#{directory}/#{locale}.yml"] }
|
|
59
|
+
.inject(:+)
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def rodauth_methods
|
|
63
|
+
rodauths
|
|
64
|
+
.flat_map { |rodauth| rodauth.instance_methods - Object.instance_methods }
|
|
65
|
+
.map(&:to_s)
|
|
66
|
+
.sort
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def locale_content(locale, translations)
|
|
70
|
+
data = { locale => { "rodauth" => translations } }
|
|
71
|
+
yaml = YAML.dump(data, line_width: 10_000) # disable line wrapping
|
|
72
|
+
yaml.split("\n", 2).last # remove "---" header
|
|
73
|
+
end
|
|
74
|
+
|
|
22
75
|
def locales
|
|
23
|
-
selected_locales || available_locales
|
|
76
|
+
selected_locales || available_locales.map(&:to_s)
|
|
24
77
|
end
|
|
25
78
|
|
|
26
79
|
def available_locales
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
require "set"
|
|
1
2
|
require "i18n"
|
|
2
3
|
|
|
3
4
|
module Rodauth
|
|
@@ -16,6 +17,12 @@ module Rodauth
|
|
|
16
17
|
:i18n_locale,
|
|
17
18
|
)
|
|
18
19
|
|
|
20
|
+
@directories = Set.new
|
|
21
|
+
|
|
22
|
+
class << self
|
|
23
|
+
attr_reader :directories
|
|
24
|
+
end
|
|
25
|
+
|
|
19
26
|
def post_configure
|
|
20
27
|
super
|
|
21
28
|
i18n_register File.expand_path("#{__dir__}/../../../locales")
|
|
@@ -61,6 +68,7 @@ module Rodauth
|
|
|
61
68
|
files = i18n_files(directory)
|
|
62
69
|
files.each { |file| i18n_add(file) }
|
|
63
70
|
i18n_reload
|
|
71
|
+
Rodauth::I18n.directories << directory
|
|
64
72
|
end
|
|
65
73
|
|
|
66
74
|
# Returns list of translation files in given directory based on
|
data/locales/es.yml
ADDED
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
es:
|
|
2
|
+
rodauth:
|
|
3
|
+
account_expiration_error_flash: No puede iniciar sesión en esta cuenta porque ha caducado
|
|
4
|
+
active_sessions_error_flash: Esta sesión ha sido cerrada
|
|
5
|
+
add_recovery_codes_button: Agrega autenticación por códigos de recuperación
|
|
6
|
+
add_recovery_codes_error_flash: No se pueden agregar códigos de recuperación
|
|
7
|
+
add_recovery_codes_heading: "<h2>Agrega más Códigos de Recuperación</h2>"
|
|
8
|
+
add_recovery_codes_page_title: Autenticación por Códigos de Recuperación
|
|
9
|
+
already_an_account_with_this_login_message: ya existe una cuenta con este login
|
|
10
|
+
attempt_to_create_unverified_account_error_flash: La cuenta que intentaste crear está a la espera de verificación
|
|
11
|
+
attempt_to_login_to_unverified_account_error_flash: La cuenta con la que intentaste acceder está a la espera de verificación
|
|
12
|
+
change_login_button: Modificar Login
|
|
13
|
+
change_login_error_flash: Hubo un error al modificar su login
|
|
14
|
+
change_login_needs_verification_notice_flash: Se le ha enviado por email un enlace para verificar su modificación de login
|
|
15
|
+
change_login_notice_flash: Su login fue modificado
|
|
16
|
+
change_login_page_title: Modificar Login
|
|
17
|
+
change_password_button: Modificar contraseña
|
|
18
|
+
change_password_error_flash: Hubo un error al modificar su contraseña
|
|
19
|
+
change_password_notice_flash: Tu contraseña fue modificada
|
|
20
|
+
change_password_page_title: Cambiar Contraseña
|
|
21
|
+
close_account_button: Cerrar cuenta
|
|
22
|
+
close_account_error_flash: Hubo un error al cerrar su cuenta
|
|
23
|
+
close_account_notice_flash: Su cuenta fue cerrada
|
|
24
|
+
close_account_page_title: Cerrar Cuenta
|
|
25
|
+
confirm_password_button: Confirmar contraseña
|
|
26
|
+
confirm_password_error_flash: Hubo un error al confirmar su contraseña
|
|
27
|
+
confirm_password_link_text: Ingresa una contraseña
|
|
28
|
+
confirm_password_notice_flash: Su contraseña fue confirmada
|
|
29
|
+
confirm_password_page_title: Confirmar Contraseña
|
|
30
|
+
contains_null_byte_message: contiene un byte nulo
|
|
31
|
+
create_account_button: Crear cuenta
|
|
32
|
+
create_account_error_flash: Hubo un error al crear su cuenta
|
|
33
|
+
create_account_link_text: Crea una nueva cuenta
|
|
34
|
+
create_account_notice_flash: Su cuenta fue creada
|
|
35
|
+
create_account_page_title: Crear Cuenta
|
|
36
|
+
email_auth_email_recently_sent_error_flash: Recientemente se le ha enviado un email con un enlace para iniciar sesión
|
|
37
|
+
email_auth_email_sent_notice_flash: Se le ha enviado un email con un enlace para acceder a su cuenta
|
|
38
|
+
email_auth_email_subject: Enlace para iniciar sesión
|
|
39
|
+
email_auth_error_flash: Hubo un error al intentar iniciar sesión
|
|
40
|
+
email_auth_page_title: Iniciar Sesión
|
|
41
|
+
email_auth_request_button: Enviar enlace para autenticar por email
|
|
42
|
+
email_auth_request_error_flash: Hubo un error al solicitar un enlace para autenticar por email
|
|
43
|
+
email_subject_prefix: ''
|
|
44
|
+
expired_jwt_access_token_message: token de acceso JWT caducado
|
|
45
|
+
global_logout_label: ¿Salir de todas las sesiones iniciadas?
|
|
46
|
+
input_field_label_suffix: ''
|
|
47
|
+
invalid_jwt_format_error_message: Formato JWT no válido o reclamo en el encabezado de Autorización
|
|
48
|
+
invalid_password_message: contraseña no válida
|
|
49
|
+
invalid_recovery_code_error_flash: Error de autenticación a través del código de recuperación
|
|
50
|
+
invalid_recovery_code_message: Código de recuperación inválido
|
|
51
|
+
json_non_post_error_message: método no-POST utilizado en la API JSON
|
|
52
|
+
json_not_accepted_error_message: Cabecera Accept no soportada. Debe aceptar "application/json" o un tipo de contenido compatible
|
|
53
|
+
jwt_refresh_invalid_token_message: token de actualización JWT no válido
|
|
54
|
+
jwt_refresh_without_access_token_message: no se proporcionó ningún token de acceso JWT durante la actualización
|
|
55
|
+
login_button: Iniciar sesión
|
|
56
|
+
login_confirm_label: Confirmar %{login_label}
|
|
57
|
+
login_does_not_meet_requirements_message: inicio de sesión no válido, no cumple los requisitos
|
|
58
|
+
login_error_flash: Hubo un error al iniciar la sesión
|
|
59
|
+
login_form_footer_links_heading: <h2 class="rodauth-login-form-footer-links-heading">Otras Opciones</h2>
|
|
60
|
+
login_label: Login
|
|
61
|
+
login_lockout_error_flash: Esta cuenta está actualmente bloqueada y no se puede acceder a ella
|
|
62
|
+
login_not_valid_email_message: no es una dirección de email válida
|
|
63
|
+
login_notice_flash: Iniciaste sesión con éxito
|
|
64
|
+
login_page_title: Iniciar Sesión
|
|
65
|
+
login_too_long_message: máximo %{login_maximum_length} caracteres
|
|
66
|
+
login_too_many_bytes_message: máximo %{login_maximum_bytes} bytes
|
|
67
|
+
login_too_short_message: mínimo %{login_minimum_length} caracteres
|
|
68
|
+
logins_do_not_match_message: logins no coinciden
|
|
69
|
+
logout_button: Salir
|
|
70
|
+
logout_notice_flash: Se ha cerrado la sesión
|
|
71
|
+
logout_page_title: Cerrar Sesión
|
|
72
|
+
multi_phase_login_page_title: Login
|
|
73
|
+
need_password_notice_flash: Login reconocido, por favor, introduzca su contraseña
|
|
74
|
+
new_password_label: Nueva contraseña
|
|
75
|
+
no_current_sms_code_error_flash: No hay código de SMS actual para esta cuenta
|
|
76
|
+
no_matching_email_auth_key_error_flash: 'Hubo un error al iniciar sesión: clave de autenticación de email no válida'
|
|
77
|
+
no_matching_login_message: sin login correspondiente
|
|
78
|
+
no_matching_reset_password_key_error_flash: 'Se ha producido un error al restablecer su contraseña: clave de restablecimiento no válida o caducada'
|
|
79
|
+
no_matching_unlock_account_key_error_flash: 'Se ha producido un error al desbloquear su cuenta: clave de desbloqueo no válida o caducada'
|
|
80
|
+
no_matching_verify_account_key_error_flash: 'Se ha producido un error al verificar su cuenta: la clave de verificación no es válida'
|
|
81
|
+
no_matching_verify_login_change_key_error_flash: 'Se ha producido un error al verificar su cambio de login: la clave de verificación no es válida'
|
|
82
|
+
non_json_request_error_message: Sólo se permiten solicitudes en formato JSON
|
|
83
|
+
otp_already_setup_error_flash: Ya ha configurado la autenticación TOTP
|
|
84
|
+
otp_auth_button: Autenticación mediante TOTP
|
|
85
|
+
otp_auth_error_flash: Error al iniciar la sesión mediante la autenticación TOTP
|
|
86
|
+
otp_auth_form_footer: ''
|
|
87
|
+
otp_auth_label: Código de autenticación
|
|
88
|
+
otp_auth_link_text: Autenticación mediante TOTP
|
|
89
|
+
otp_auth_page_title: Introduzca el código de autentificación
|
|
90
|
+
otp_disable_button: Desactivar la autenticación TOTP
|
|
91
|
+
otp_disable_error_flash: Error al desactivar la autenticación TOTP
|
|
92
|
+
otp_disable_link_text: Desactivar la autenticación TOTP
|
|
93
|
+
otp_disable_notice_flash: Se ha desactivado la autenticación TOTP
|
|
94
|
+
otp_disable_page_title: Desactivar la autenticación TOTP
|
|
95
|
+
otp_invalid_auth_code_message: Código de autenticación inválido
|
|
96
|
+
otp_invalid_secret_message: secreto inválido
|
|
97
|
+
otp_lockout_error_flash: El uso del código de autenticación TOTP fue bloqueado debido a numerosos fallos
|
|
98
|
+
otp_provisioning_uri_label: URL de Provisioning
|
|
99
|
+
otp_secret_label: Secreto
|
|
100
|
+
otp_setup_button: Configurar la autenticación TOTP
|
|
101
|
+
otp_setup_error_flash: Error al configurar la autenticación TOTP
|
|
102
|
+
otp_setup_link_text: Configurar la autenticación TOTP
|
|
103
|
+
otp_setup_notice_flash: La autenticación TOTP ya está configurada
|
|
104
|
+
otp_setup_page_title: Configurar Autenticación TOTP
|
|
105
|
+
password_authentication_required_error_flash: Debe confirmar su contraseña antes de continuar
|
|
106
|
+
password_changed_email_subject: Contraseña modificada
|
|
107
|
+
password_confirm_label: Confirmar %{password_label}
|
|
108
|
+
password_does_not_meet_requirements_message: contraseña no válida, no cumple los requisitos
|
|
109
|
+
password_expiration_error_flash: Su contraseña ha caducado y necesita ser cambiada
|
|
110
|
+
password_in_dictionary_message: es una palabra en un diccionario
|
|
111
|
+
password_invalid_pattern_message: incluye una secuencia caracteres común
|
|
112
|
+
password_is_one_of_the_most_common_message: es una de las contraseñas más comunes
|
|
113
|
+
password_label: Contraseña
|
|
114
|
+
password_not_changeable_yet_error_flash: Todavía no se puede cambiar la contraseña
|
|
115
|
+
password_not_enough_character_groups_message: no incluye letras mayúsculas, minúsculas y números
|
|
116
|
+
password_same_as_previous_password_message: igual que la contraseña anterior
|
|
117
|
+
password_too_many_repeating_characters_message: contiene demasiados caracteres iguales seguidos
|
|
118
|
+
password_too_long_message: máximo %{password_maximum_length} caracteres
|
|
119
|
+
password_too_many_bytes_message: máximo %{password_maximum_bytes} bytes
|
|
120
|
+
password_too_short_message: mínimo %{password_minimum_length} caracteres
|
|
121
|
+
passwords_do_not_match_message: contraseñas no coinciden
|
|
122
|
+
recovery_auth_button: Autenticar por Código de Recuperación
|
|
123
|
+
recovery_auth_link_text: Autenticar mediante Código de Recuperación
|
|
124
|
+
recovery_auth_page_title: Ingresar Código de Recuperación
|
|
125
|
+
recovery_codes_added_notice_flash: Fueron agregados más códigos de recuperación
|
|
126
|
+
recovery_codes_label: Código de Recuperación
|
|
127
|
+
recovery_codes_link_text: Ver Códigos de Recuperación de Autenticación
|
|
128
|
+
recovery_codes_page_title: Ver Códigos de Recuperación de Autenticación
|
|
129
|
+
remember_button: Cambiar configuración de "Recuérdame"
|
|
130
|
+
remember_disable_label: Desactivar "Recuérdame"
|
|
131
|
+
remember_error_flash: Hubo un error al actualizar la configuración de "Recuérdame"
|
|
132
|
+
remember_forget_label: Olvídame
|
|
133
|
+
remember_notice_flash: Se ha actualizado la configuración de "Recuérdame"
|
|
134
|
+
remember_page_title: Cambiar la configuración de "Recuérdame"
|
|
135
|
+
remember_remember_label: Recuérdame
|
|
136
|
+
require_login_error_flash: Inicie sesión para continuar
|
|
137
|
+
resend_verify_account_page_title: Reenviar el email de verificación
|
|
138
|
+
reset_password_button: Restablecer contraseña
|
|
139
|
+
reset_password_email_recently_sent_error_flash: Recientemente se le ha enviado un email con un enlace para restablecer su contraseña
|
|
140
|
+
reset_password_email_sent_notice_flash: Se le ha enviado un email con un enlace para restablecer la contraseña de su cuenta
|
|
141
|
+
reset_password_email_subject: Restablecer contraseña
|
|
142
|
+
reset_password_error_flash: Hubo un error al restablecer su contraseña
|
|
143
|
+
reset_password_explanatory_text: "<p>Si ha olvidado su contraseña, puede solicitar un restablecimiento:</p>"
|
|
144
|
+
reset_password_notice_flash: Su contraseña ha sido restablecida
|
|
145
|
+
reset_password_page_title: Restablecer contraseña
|
|
146
|
+
reset_password_request_button: Solicitar restablecer la contraseña
|
|
147
|
+
reset_password_request_error_flash: Se ha producido un error al solicitar el restablecimiento de la contraseña
|
|
148
|
+
reset_password_request_link_text: ¿Olvidaste la contraseña?
|
|
149
|
+
reset_password_request_page_title: Solicitar Restablecer Contraseña
|
|
150
|
+
same_as_current_login_message: igual al login actual
|
|
151
|
+
same_as_existing_password_message: contraseña no válida, la misma que la actual
|
|
152
|
+
session_expiration_error_flash: Esta sesión ha expirado, por favor inicie sesión de nuevo
|
|
153
|
+
single_session_error_flash: Esta sesión se ha cerrado porque se ha activado otra sesión
|
|
154
|
+
sms_already_setup_error_flash: La autenticación por SMS ya está configurada
|
|
155
|
+
sms_auth_button: Autenticación por código SMS
|
|
156
|
+
sms_auth_link_text: Autenticación mediante código SMS
|
|
157
|
+
sms_auth_page_title: Autenticar mediante código SMS
|
|
158
|
+
sms_code_label: Código SMS
|
|
159
|
+
sms_confirm_button: Confirme el número para SMS de respaldo
|
|
160
|
+
sms_confirm_notice_flash: Se ha configurado la autenticación por SMS
|
|
161
|
+
sms_confirm_page_title: Confirme número de respaldo de SMS
|
|
162
|
+
sms_disable_button: Deshabilitar la autenticación de SMS de respaldo
|
|
163
|
+
sms_disable_error_flash: Error al deshabilitar la autenticación por SMS
|
|
164
|
+
sms_disable_link_text: Deshabilitar la autenticación por SMS
|
|
165
|
+
sms_disable_notice_flash: La autenticación por SMS ha sido deshabilitada
|
|
166
|
+
sms_disable_page_title: Deshabilitar la autenticación de SMS de respaldo
|
|
167
|
+
sms_invalid_code_error_flash: Error al autenticar mediante código SMS
|
|
168
|
+
sms_invalid_code_message: código SMS no válido
|
|
169
|
+
sms_invalid_confirmation_code_error_flash: Se usó un código de confirmación de SMS no válido o desactualizado, debe configurar la autenticación de SMS nuevamente
|
|
170
|
+
sms_invalid_phone_message: número de teléfono SMS no válido
|
|
171
|
+
sms_lockout_error_flash: Autenticación por SMS ha sido bloqueada
|
|
172
|
+
sms_needs_confirmation_error_flash: Autenticación por SMS necesita confirmación
|
|
173
|
+
sms_not_setup_error_flash: Autenticación por SMS aún no se ha configurado
|
|
174
|
+
sms_phone_label: Número de Teléfono
|
|
175
|
+
sms_request_button: Enviar código SMS
|
|
176
|
+
sms_request_notice_flash: Se ha enviado el código de autenticación por SMS
|
|
177
|
+
sms_request_page_title: Enviar código SMS
|
|
178
|
+
sms_setup_button: Configurar el número SMS de respaldo
|
|
179
|
+
sms_setup_error_flash: Error al configurar la autenticación por SMS
|
|
180
|
+
sms_setup_link_text: Configurar la autenticación de SMS respaldo
|
|
181
|
+
sms_setup_page_title: Configurar el número SMS de respaldo
|
|
182
|
+
two_factor_already_authenticated_error_flash: Ya fue autenticado a través de multifactor
|
|
183
|
+
two_factor_auth_notice_flash: Ha sido autenticado a través de multifactor
|
|
184
|
+
two_factor_auth_page_title: Autenticar usando un factor adicional
|
|
185
|
+
two_factor_disable_button: Eliminar todos los métodos de autenticación multifactor
|
|
186
|
+
two_factor_disable_error_flash: No fue posible eliminar todos los métodos de autenticación multifactor
|
|
187
|
+
two_factor_disable_link_text: Eliminar todos los métodos de autenticación multifactor
|
|
188
|
+
two_factor_disable_notice_flash: Todos los métodos de autenticación multifactor han sido deshabilitados
|
|
189
|
+
two_factor_disable_page_title: Eliminar todos los métodos de autenticación multifactor
|
|
190
|
+
two_factor_manage_page_title: Administrar Autenticación Multifactor
|
|
191
|
+
two_factor_need_authentication_error_flash: Debe autenticarse a través de un factor adicional antes de continuar
|
|
192
|
+
two_factor_not_setup_error_flash: Esta cuenta no se ha configurado para la autenticación multifactor
|
|
193
|
+
two_factor_remove_heading: "<h2>Remover Autenticación Multifactor</h2>"
|
|
194
|
+
two_factor_setup_heading: "<h2>Configurar Autenticación Multifactor</h2>"
|
|
195
|
+
unlock_account_button: Desbloquear cuenta
|
|
196
|
+
unlock_account_email_recently_sent_error_flash: Recientemente se le envió un email con un enlace para desbloquear la cuenta
|
|
197
|
+
unlock_account_email_subject: Desbloquear cuenta
|
|
198
|
+
unlock_account_error_flash: Hubo un error al desbloquear su cuenta
|
|
199
|
+
unlock_account_explanatory_text: "<p>Esta cuenta está actualmente bloqueada. Puedes desbloquear la cuenta:</p>"
|
|
200
|
+
unlock_account_notice_flash: Su cuenta ha sido desbloqueada
|
|
201
|
+
unlock_account_page_title: Desbloquear cuenta
|
|
202
|
+
unlock_account_request_button: Solicitar desbloqueo de cuenta
|
|
203
|
+
unlock_account_request_explanatory_text: "<p>Esta cuenta está actualmente bloqueada. Puede solicitar que la cuenta sea desbloqueada:</p>"
|
|
204
|
+
unlock_account_request_notice_flash: Se le ha enviado un email con un enlace para desbloquear su cuenta
|
|
205
|
+
unlock_account_request_page_title: Solicitar Desbloqueo de Cuenta
|
|
206
|
+
unverified_account_message: cuenta no verificada, verifique la cuenta antes de iniciar sesión
|
|
207
|
+
unverified_change_login_error_flash: Verifique esta cuenta antes de cambiar el inicio de sesión
|
|
208
|
+
verify_account_button: Verificar cuenta
|
|
209
|
+
verify_account_email_recently_sent_error_flash: Recientemente se le envió un email con un enlace para verificar su cuenta
|
|
210
|
+
verify_account_email_sent_notice_flash: Se le ha enviado un email con un enlace para verificar su cuenta
|
|
211
|
+
verify_account_email_subject: Verificar cuenta
|
|
212
|
+
verify_account_error_flash: No fue posible verificar la cuenta
|
|
213
|
+
verify_account_notice_flash: Tu cuenta ha sido verificada
|
|
214
|
+
verify_account_page_title: Verificar Cuenta
|
|
215
|
+
verify_account_resend_button: Enviar email de verificación nuevamente
|
|
216
|
+
verify_account_resend_error_flash: No se puede reenviar el email de la cuenta
|
|
217
|
+
verify_account_resend_explanatory_text: "<p>Si ya no tienes el email para verificar la cuenta, puedes solicitar que te lo reenvíen:</p>"
|
|
218
|
+
verify_account_resend_link_text: Reenviar información para verificar cuenta
|
|
219
|
+
verify_login_change_button: Verificar cambio de login
|
|
220
|
+
verify_login_change_duplicate_account_error_flash: No se puede cambiar el login porque ya existe una cuenta con el nuevo login
|
|
221
|
+
verify_login_change_email_subject: Verificar cambio de login
|
|
222
|
+
verify_login_change_error_flash: No se pudo verificar el cambio de login
|
|
223
|
+
verify_login_change_notice_flash: Tu cambio de login fue verificado
|
|
224
|
+
verify_login_change_page_title: Verificar Cambio de Login
|
|
225
|
+
view_recovery_codes_button: Ver códigos de recuperación de autenticación
|
|
226
|
+
view_recovery_codes_error_flash: No se pueden ver los códigos de recuperación
|
|
227
|
+
webauthn_auth_button: Autenticar mediante WebAuthn
|
|
228
|
+
webauthn_auth_error_flash: Error al autenticarse usando WebAuthn
|
|
229
|
+
webauthn_auth_link_text: Autenticar usando WebAuthn
|
|
230
|
+
webauthn_auth_page_title: Autenticar usando WebAuthn
|
|
231
|
+
webauthn_duplicate_webauthn_id_message: intento de ingresar un id duplicado de webauthn
|
|
232
|
+
webauthn_invalid_auth_param_message: parámetro de autenticación webauthn no válido
|
|
233
|
+
webauthn_invalid_remove_param_message: debe seleccionar un autenticador webauthn válido para eliminar
|
|
234
|
+
webauthn_invalid_setup_param_message: parámetro de configuración de webathn no válido
|
|
235
|
+
webauthn_invalid_sign_count_message: credencial webauthn tiene un recuento de signos no válido
|
|
236
|
+
webauthn_login_error_flash: Hubo un error al autenticarse a través de WebAuthn
|
|
237
|
+
webauthn_not_setup_error_flash: Esta cuenta no se ha configurado para la autenticación WebAuthn
|
|
238
|
+
webauthn_remove_button: Eliminar el autenticador WebAuthn
|
|
239
|
+
webauthn_remove_error_flash: Error al eliminar el autenticador WebAuthn
|
|
240
|
+
webauthn_remove_link_text: Eliminar el autenticador WebAuthn
|
|
241
|
+
webauthn_remove_notice_flash: Se ha eliminado el autenticador WebAuthn
|
|
242
|
+
webauthn_remove_page_title: Eliminar el Autenticador WebAuthn
|
|
243
|
+
webauthn_setup_button: Configurar la autenticación WebAuthn
|
|
244
|
+
webauthn_setup_error_flash: Error al configurar la autenticación WebAuthn
|
|
245
|
+
webauthn_setup_link_text: Configurar la autenticación WebAuthn
|
|
246
|
+
webauthn_setup_notice_flash: La autenticación WebAuthn ahora está configurada
|
|
247
|
+
webauthn_setup_page_title: Configurar la autenticación WebAuthn
|
data/locales/fr.yml
ADDED
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
fr:
|
|
2
|
+
rodauth:
|
|
3
|
+
account_expiration_error_flash: Ce compte a expiré, connexion impossible
|
|
4
|
+
active_sessions_error_flash: Cette session a été déconnectée
|
|
5
|
+
add_recovery_codes_button: Ajouter codes de récupération pour l'authentification
|
|
6
|
+
add_recovery_codes_error_flash: Impossible d'ajouter des codes de récupération
|
|
7
|
+
add_recovery_codes_heading: "<h2>Ajouter des codes de récupération</h2>"
|
|
8
|
+
add_recovery_codes_page_title: Codes de récupération pour l'authentification
|
|
9
|
+
already_an_account_with_this_login_message: déjà un compte avec cet identifiant
|
|
10
|
+
attempt_to_create_unverified_account_error_flash: Le compte que vous avez essayé de créer est en attente de vérification
|
|
11
|
+
attempt_to_login_to_unverified_account_error_flash: Le compte auquel vous avez essayé de vous connecter est en attente de vérification
|
|
12
|
+
change_login_button: Modifier l'identifiant
|
|
13
|
+
change_login_error_flash: Erreur lors de la modification de votre identifiant
|
|
14
|
+
change_login_needs_verification_notice_flash: Un email vous a été envoyé avec un lien pour vérifier votre modification d'identifiant
|
|
15
|
+
change_login_notice_flash: Votre identifiant a été modifié
|
|
16
|
+
change_login_page_title: Modifier l'identifiant
|
|
17
|
+
change_password_button: Modifier le mot de passe
|
|
18
|
+
change_password_error_flash: Erreur lors de la modification de votre mot de passe
|
|
19
|
+
change_password_notice_flash: Votre mot de passe a été modifié
|
|
20
|
+
change_password_page_title: Modifier le mot de passe
|
|
21
|
+
close_account_button: Supprimer le compte
|
|
22
|
+
close_account_error_flash: Erreur lors de la suppression de votre compte
|
|
23
|
+
close_account_notice_flash: Votre compte a été supprimé
|
|
24
|
+
close_account_page_title: Supprimer le compte
|
|
25
|
+
confirm_password_button: Confirmer le mot de passe
|
|
26
|
+
confirm_password_error_flash: Erreur lors de la confirmation du mot de passe
|
|
27
|
+
confirm_password_link_text: Entrez votre mot de passe
|
|
28
|
+
confirm_password_notice_flash: Votre mot de passe a été confirmé
|
|
29
|
+
confirm_password_page_title: Confirmer le mot de passe
|
|
30
|
+
contains_null_byte_message: contient un byte nul
|
|
31
|
+
create_account_button: Créer un compte
|
|
32
|
+
create_account_error_flash: Erreur lors de la création de votre compte
|
|
33
|
+
create_account_link_text: Create a New Account
|
|
34
|
+
create_account_notice_flash: Your account has been created
|
|
35
|
+
create_account_page_title: Créer un nouveau compte
|
|
36
|
+
email_auth_email_recently_sent_error_flash: Un email vous a été envoyé avec un lien pour vous connecter
|
|
37
|
+
email_auth_email_sent_notice_flash: Un email vous a été envoyé avec un lien pour accéder à votre compte
|
|
38
|
+
email_auth_email_subject: Lien de connexion
|
|
39
|
+
email_auth_error_flash: Erreur lors de la connexion
|
|
40
|
+
email_auth_page_title: Connexion
|
|
41
|
+
email_auth_request_button: Enovyer un lien de connexion par email
|
|
42
|
+
email_auth_request_error_flash: Erreur lors de la demande d'un lien de connexion par email
|
|
43
|
+
email_subject_prefix: ''
|
|
44
|
+
expired_jwt_access_token_message: jeton d'accès JWT expiré
|
|
45
|
+
global_logout_label: Déconnecter tous les sessions connectées ?
|
|
46
|
+
input_field_label_suffix: ''
|
|
47
|
+
invalid_jwt_format_error_message: format JWT invalide ou problème dans l'en-tête Authorization
|
|
48
|
+
invalid_password_message: mot de passe erroné
|
|
49
|
+
invalid_recovery_code_error_flash: Erreur d'authentification par code de récupération
|
|
50
|
+
invalid_recovery_code_message: Code de récupération erroné
|
|
51
|
+
json_non_post_error_message: méthode non-POST utilisée dans l'API JSON
|
|
52
|
+
json_not_accepted_error_message: En-tête Accept non pris en charge. Doit accepter "application/json" ou type de contenu compatible
|
|
53
|
+
jwt_refresh_invalid_token_message: jeton d'actualisation JWT erroné
|
|
54
|
+
jwt_refresh_without_access_token_message: aucun jeton d'accès JWT fourni durant l'actualisation
|
|
55
|
+
login_button: Se connecter
|
|
56
|
+
login_confirm_label: Confirmer %{login_label}
|
|
57
|
+
login_does_not_meet_requirements_message: identifiant invalide, ne répond pas aux exigences
|
|
58
|
+
login_error_flash: Erreur lors de la connexion
|
|
59
|
+
login_form_footer_links_heading: <h2 class="rodauth-login-form-footer-links-heading">Options supplémentaires</h2>
|
|
60
|
+
login_label: Se connecter
|
|
61
|
+
login_lockout_error_flash: Ce compte est actuellement verrouillé et inaccessible
|
|
62
|
+
login_not_valid_email_message: n'est pas une adresse mail valide
|
|
63
|
+
login_notice_flash: Vous êtes connecté(e)
|
|
64
|
+
login_page_title: Se connecter
|
|
65
|
+
login_too_long_message: "%{login_maximum_length} caractères maximum"
|
|
66
|
+
login_too_many_bytes_message: "%{login_maximum_bytes} bytes maximum"
|
|
67
|
+
login_too_short_message: "%{login_minimum_length} caractères minimum"
|
|
68
|
+
logins_do_not_match_message: les identifiants ne correspondent pas
|
|
69
|
+
logout_button: Se déconnecter
|
|
70
|
+
logout_notice_flash: Vous êtes déconnecté(e)
|
|
71
|
+
logout_page_title: Se déconnecter
|
|
72
|
+
multi_phase_login_page_title: Se connecter
|
|
73
|
+
need_password_notice_flash: Identifiant reconnu, veuillez entrer votre mot de passe
|
|
74
|
+
new_password_label: Nouveau mot de passe
|
|
75
|
+
no_current_sms_code_error_flash: Aucun code SMS pour ce compte
|
|
76
|
+
no_matching_email_auth_key_error_flash: "Erreur lors de la connexion: clé d'authentification mail invalide"
|
|
77
|
+
no_matching_login_message: aucun identifiant correspondant
|
|
78
|
+
no_matching_reset_password_key_error_flash: 'Erreur lors de la réinitialisation du mot de passe: clé de réinitialisation erronée ou expirée'
|
|
79
|
+
no_matching_unlock_account_key_error_flash: 'Erreur lors du déverrouillage du compte: clé de déverrouillage erronée ou expirée'
|
|
80
|
+
no_matching_verify_account_key_error_flash: 'Erreur lors de la vérification du compte: clé de vérification erronée'
|
|
81
|
+
no_matching_verify_login_change_key_error_flash: "Erreur lors de la vérification de la modification de l'identifiant: clé erronée"
|
|
82
|
+
non_json_request_error_message: Seules les requêtes au format JSON sont autorisées
|
|
83
|
+
otp_already_setup_error_flash: Vous avec déjà activé l'authentification à deux facteurs
|
|
84
|
+
otp_auth_button: Utiliser l'authentification à deux facteurs
|
|
85
|
+
otp_auth_error_flash: Erreur lors de l'authentification à deux facteurs
|
|
86
|
+
otp_auth_form_footer: ''
|
|
87
|
+
otp_auth_label: Code d'authentification
|
|
88
|
+
otp_auth_link_text: Utiliser l'authentification à deux facteurs
|
|
89
|
+
otp_auth_page_title: Entrer le code d'authentification
|
|
90
|
+
otp_disable_button: Désactiver l'authentification à deux facteurs
|
|
91
|
+
otp_disable_error_flash: Erreur lors de la désactivation
|
|
92
|
+
otp_disable_link_text: Désactiver l'authentification à deux facteurs
|
|
93
|
+
otp_disable_notice_flash: L'authentification à deux facteurs est désactivée
|
|
94
|
+
otp_disable_page_title: Désactiver l'authentification à deux facteurs
|
|
95
|
+
otp_invalid_auth_code_message: Code d'authentification erroné
|
|
96
|
+
otp_invalid_secret_message: secret erroné
|
|
97
|
+
otp_lockout_error_flash: Utilisation du code d'authentification bloqué à cause d'un nombre d'essais trop important
|
|
98
|
+
otp_provisioning_uri_label: Url de Provisioning
|
|
99
|
+
otp_secret_label: Secret
|
|
100
|
+
otp_setup_button: Activer l'authentification à deux facteurs
|
|
101
|
+
otp_setup_error_flash: Erreur lors de l'activation de l'authentification à deux facteurs
|
|
102
|
+
otp_setup_link_text: Activer l'authentification à deux facteurs
|
|
103
|
+
otp_setup_notice_flash: Authentification à deux facteurs activée
|
|
104
|
+
otp_setup_page_title: Activer l'authentification à deux facteurs
|
|
105
|
+
password_authentication_required_error_flash: Vous devez confirmer votre mot de passe pour continuer
|
|
106
|
+
password_changed_email_subject: Mot de passe modifié
|
|
107
|
+
password_confirm_label: Confirmer %{password_label}
|
|
108
|
+
password_does_not_meet_requirements_message: mot de passe erroné, ne répond pas aux exigences
|
|
109
|
+
password_expiration_error_flash: Votre mot de passe a expiré et doit être modifié
|
|
110
|
+
password_in_dictionary_message: est un mot dans le dictionnaire
|
|
111
|
+
password_invalid_pattern_message: contient une séquence de caractères commune
|
|
112
|
+
password_is_one_of_the_most_common_message: est un mot de passe fréquemment utilisé
|
|
113
|
+
password_label: Mot de passe
|
|
114
|
+
password_not_changeable_yet_error_flash: Votre mot de passe ne peut pas encore être modifié
|
|
115
|
+
password_not_enough_character_groups_message: ne contient aucune majuscule, minuscule, ou chiffre
|
|
116
|
+
password_same_as_previous_password_message: identique au mot de passe précédent
|
|
117
|
+
password_too_many_repeating_characters_message: contient trop de caractères consécutifs identiques
|
|
118
|
+
password_too_long_message: "%{password_maximum_length} caractères maximum"
|
|
119
|
+
password_too_many_bytes_message: "%{password_maximum_bytes} bytes maximium"
|
|
120
|
+
password_too_short_message: "%{password_minimum_length} caractères minimum"
|
|
121
|
+
passwords_do_not_match_message: les mots de passe ne correspondent pas
|
|
122
|
+
recovery_auth_button: Authentification par code de récupération
|
|
123
|
+
recovery_auth_link_text: Authentification avec code de récupération
|
|
124
|
+
recovery_auth_page_title: Entrer code de récupération
|
|
125
|
+
recovery_codes_added_notice_flash: Des codes de récupération supplémentaires ont été ajoutés
|
|
126
|
+
recovery_codes_label: Code de récupération
|
|
127
|
+
recovery_codes_link_text: Afficher codes de récupération
|
|
128
|
+
recovery_codes_page_title: Afficher codes de récupération
|
|
129
|
+
remember_button: Modifier paramètre "Se souvenir de moi"
|
|
130
|
+
remember_disable_label: Désactiver "Se souvenir de moi"
|
|
131
|
+
remember_error_flash: Erreur lors de la modification du paramètre "Se souvenir de moi"
|
|
132
|
+
remember_forget_label: M'oublier
|
|
133
|
+
remember_notice_flash: Votre paramètre "Se souvenir de moi" a été modifié
|
|
134
|
+
remember_page_title: Modifier paramètre "Se souvenir de moi"
|
|
135
|
+
remember_remember_label: Se souvenir de moir
|
|
136
|
+
require_login_error_flash: Veuillez vous identifier pour continuer
|
|
137
|
+
resend_verify_account_page_title: Renvoyer email de vérification
|
|
138
|
+
reset_password_button: Réinitialiser mot de passe
|
|
139
|
+
reset_password_email_recently_sent_error_flash: Un email vous a été envoyé avec un lien pour réinitialiser votre mot de passe
|
|
140
|
+
reset_password_email_sent_notice_flash: Un email vous a été envoyé avec un lien pour réinitialiser le mot de passe de votre compte
|
|
141
|
+
reset_password_email_subject: Réinitialiser mot de passe
|
|
142
|
+
reset_password_error_flash: Erreur lors de la réinitialisation du mot de passe
|
|
143
|
+
reset_password_explanatory_text: "<p>Si vous avez oublié votre mot de passe, vous pouvez le réinitialiser:</p>"
|
|
144
|
+
reset_password_notice_flash: Votre mot de passe a été réinitialisé
|
|
145
|
+
reset_password_page_title: Réinitialiser mot de passe
|
|
146
|
+
reset_password_request_button: Demande de réinitialisation de mot de passe
|
|
147
|
+
reset_password_request_error_flash: Erreur lors de la demande de réinitialisation de mot de passe
|
|
148
|
+
reset_password_request_link_text: Mot de passe oublié ?
|
|
149
|
+
reset_password_request_page_title: Demande de réinitialisation de mot de passe
|
|
150
|
+
same_as_current_login_message: identique à l'identifiant actuel
|
|
151
|
+
same_as_existing_password_message: mot de passe erroné, identique au mot de passe actuel
|
|
152
|
+
session_expiration_error_flash: Cette session a expiré, veuillez vous reconnecter
|
|
153
|
+
single_session_error_flash: Cette session a été déconnecté car une autre session a été créée.
|
|
154
|
+
sms_already_setup_error_flash: L'authentification SMS a déjà été activée
|
|
155
|
+
sms_auth_button: Se connecter par SMS
|
|
156
|
+
sms_auth_link_text: Se connecter avec le code reçu par SMS
|
|
157
|
+
sms_auth_page_title: Se connecter par SMS
|
|
158
|
+
sms_code_label: Code reçu par SMS
|
|
159
|
+
sms_confirm_button: Confirmer le numéro de récupération SMS
|
|
160
|
+
sms_confirm_notice_flash: L'authentification SMS a été activée
|
|
161
|
+
sms_confirm_page_title: Confirmer le numéro de récupération SMS
|
|
162
|
+
sms_disable_button: Désactiver l'authentification par SMS
|
|
163
|
+
sms_disable_error_flash: Erreur lors de la désactivation
|
|
164
|
+
sms_disable_link_text: Désactiver l'authentification par SMS
|
|
165
|
+
sms_disable_notice_flash: L'authentification par SMS a été désactivée
|
|
166
|
+
sms_disable_page_title: Désactiver l'authentification par SMS
|
|
167
|
+
sms_invalid_code_error_flash: Erreur lors de l'authentification par code SMS
|
|
168
|
+
sms_invalid_code_message: code SMS invalide
|
|
169
|
+
sms_invalid_confirmation_code_error_flash: Code de confirmation SMS erroné ou expiré, veuillez réactiver l'authentification par SMS
|
|
170
|
+
sms_invalid_phone_message: Numéro de téléphone erroné
|
|
171
|
+
sms_lockout_error_flash: L'authentification par SMS a été verrouillée
|
|
172
|
+
sms_needs_confirmation_error_flash: L'authentification par SMS requiert une confirmation
|
|
173
|
+
sms_not_setup_error_flash: L'authentification par SMS n'est pas encore activée
|
|
174
|
+
sms_phone_label: Numéro de téléphone
|
|
175
|
+
sms_request_button: Envoyer un code par SMS
|
|
176
|
+
sms_request_notice_flash: Un code vous a été envoyé par SMS
|
|
177
|
+
sms_request_page_title: Envoyer un code par SMS
|
|
178
|
+
sms_setup_button: Ajouter numéro de téléphone de secours
|
|
179
|
+
sms_setup_error_flash: Erreur lors de l'activation de l'authentification par SMS
|
|
180
|
+
sms_setup_link_text: Activer l'authentification par SMS de secours
|
|
181
|
+
sms_setup_page_title: Ajouter numéro de téléphone de secours
|
|
182
|
+
two_factor_already_authenticated_error_flash: Vous avez déjà été authentifié avec l'authentification multi-facteur
|
|
183
|
+
two_factor_auth_notice_flash: Vous avez été authentifié avec l'authentification multi-facteur
|
|
184
|
+
two_factor_auth_page_title: S'authentifier avec un facteur supplémentaire
|
|
185
|
+
two_factor_disable_button: Désactiver toutes les méthodes d'authentification multi-facteur
|
|
186
|
+
two_factor_disable_error_flash: Impossible de désactiver toutes les méthodes d'authentification multi-facteur
|
|
187
|
+
two_factor_disable_link_text: Désactiver toutes les méthodes d'authentification multi-facteur
|
|
188
|
+
two_factor_disable_notice_flash: Toutes les méthodes d'authentification multi-facteur ont été désactivées
|
|
189
|
+
two_factor_disable_page_title: Désactiver toutes les méthodes d'authentification multi-facteur
|
|
190
|
+
two_factor_manage_page_title: Gérer l'Authentification Multi-facteur
|
|
191
|
+
two_factor_need_authentication_error_flash: Vous devez vous authentifier avec un facteur supplémentaire pour continuer
|
|
192
|
+
two_factor_not_setup_error_flash: Ce compte n'a pas activé l'authentification multi-facteur
|
|
193
|
+
two_factor_remove_heading: "<h2>Désactiver l'authentification multi-facteur</h2>"
|
|
194
|
+
two_factor_setup_heading: "<h2>Activer l'authentification multi-facteur</h2>"
|
|
195
|
+
unlock_account_button: Déverrouiller le compte
|
|
196
|
+
unlock_account_email_recently_sent_error_flash: Un email vous a été envoyé avec un lien pour déverrouiller votre compte
|
|
197
|
+
unlock_account_email_subject: Déverrouiller le compte
|
|
198
|
+
unlock_account_error_flash: Erreur lors du déverrouillage du compte
|
|
199
|
+
unlock_account_explanatory_text: "<p>Ce compte est verrouillé. Vous pouvez le déverrouiller:</p>"
|
|
200
|
+
unlock_account_notice_flash: Votre compte a été déverrouillé
|
|
201
|
+
unlock_account_page_title: Déverrouiller le compte
|
|
202
|
+
unlock_account_request_button: Demander le déverrouillage du compte
|
|
203
|
+
unlock_account_request_explanatory_text: "<p>Ce compte est verrouillé. Vous pouvez adresser une demande de déverrouillage:</p>"
|
|
204
|
+
unlock_account_request_notice_flash: Un email vous a été envoyé avec un lien pour déverrouiller votre compte
|
|
205
|
+
unlock_account_request_page_title: Demander le déverrouillage du compte
|
|
206
|
+
unverified_account_message: compte non vérifié, veuillez vérifier votre compte avant de vous connecter.
|
|
207
|
+
unverified_change_login_error_flash: Veuillez vérifier votre compte avant de changer l'identifiant
|
|
208
|
+
verify_account_button: Vérifier le compte
|
|
209
|
+
verify_account_email_recently_sent_error_flash: Un email vous a été envoyé avec un lien pour vérifier votre compte
|
|
210
|
+
verify_account_email_sent_notice_flash: Un email vous a été envoyé avec un lien pour vérifier votre compte
|
|
211
|
+
verify_account_email_subject: Vérifier le compte
|
|
212
|
+
verify_account_error_flash: Impossible de vérifier le compte
|
|
213
|
+
verify_account_notice_flash: Votre compte a été verifié
|
|
214
|
+
verify_account_page_title: Vérifier le compte
|
|
215
|
+
verify_account_resend_button: Renvoyer l'email de vérification
|
|
216
|
+
verify_account_resend_error_flash: Impossible de renvoyer l'email de vérification
|
|
217
|
+
verify_account_resend_explanatory_text: "<p>Si vous n'avez plus l'email de vérification, vous pouvez en demander un nouveau:</p>"
|
|
218
|
+
verify_account_resend_link_text: Renvoyer les informations pour vérifier le compte
|
|
219
|
+
verify_login_change_button: Vérifier le changement d'identifiant
|
|
220
|
+
verify_login_change_duplicate_account_error_flash: Impossible de changer l'identifiant, un compte avec cet identifiant existe déjà
|
|
221
|
+
verify_login_change_email_subject: Vérifier le changement d'identifiant
|
|
222
|
+
verify_login_change_error_flash: Impossible de vérifier le changement d'identifiant
|
|
223
|
+
verify_login_change_notice_flash: Votre changement d'identifiant a été vérifié
|
|
224
|
+
verify_login_change_page_title: Vérifier le changement d'identifiant
|
|
225
|
+
view_recovery_codes_button: Afficher les codes de récupération
|
|
226
|
+
view_recovery_codes_error_flash: Impossible d'afficher les codes de récupération
|
|
227
|
+
webauthn_auth_button: S'authentifier en utilisant WebAuthn
|
|
228
|
+
webauthn_auth_error_flash: Erreur lors de l'authentification avec WebAuthn
|
|
229
|
+
webauthn_auth_link_text: S'authentifier en utilisant WebAuthn
|
|
230
|
+
webauthn_auth_page_title: S'authentifier en utilisant WebAuthn
|
|
231
|
+
webauthn_duplicate_webauthn_id_message: tentative d’insérer un double de l’identifiant WebAuthn
|
|
232
|
+
webauthn_invalid_auth_param_message: paramètre d'authentification WebAuthn erroné
|
|
233
|
+
webauthn_invalid_remove_param_message: doit sélectionner un authentifiant valide pour supprimer
|
|
234
|
+
webauthn_invalid_setup_param_message: paramètre WebAuthn non valide
|
|
235
|
+
webauthn_invalid_sign_count_message: le mot de passe WebAuthn n’est pas valide
|
|
236
|
+
webauthn_login_error_flash: Erreur lors de l'authentification WebAuthn
|
|
237
|
+
webauthn_not_setup_error_flash: Ce compte n'a pas activé l'authentification WebAuthn
|
|
238
|
+
webauthn_remove_button: Désactiver l'authentification WebAuthn
|
|
239
|
+
webauthn_remove_error_flash: Erreur lors de la désactivation
|
|
240
|
+
webauthn_remove_link_text: Désactiver l'authentification WebAuthn
|
|
241
|
+
webauthn_remove_notice_flash: L'authentification WebAuthn a été désactivée
|
|
242
|
+
webauthn_remove_page_title: Désactiver l'authentification WebAuthn
|
|
243
|
+
webauthn_setup_button: Activer l'authentification WebAuthn
|
|
244
|
+
webauthn_setup_error_flash: Erreur lors de l'activation
|
|
245
|
+
webauthn_setup_link_text: Activer l'authentification WebAuthn
|
|
246
|
+
webauthn_setup_notice_flash: L'authentification WebAuthn est activée
|
|
247
|
+
webauthn_setup_page_title: Activer l'authentification WebAuthn
|
data/rodauth-i18n.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rodauth-i18n
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Janko Marohnić
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rodauth
|
|
@@ -121,6 +121,8 @@ files:
|
|
|
121
121
|
- lib/rodauth/features/i18n.rb
|
|
122
122
|
- lib/rodauth/i18n/login_password_requirements_base.rb
|
|
123
123
|
- locales/en.yml
|
|
124
|
+
- locales/es.yml
|
|
125
|
+
- locales/fr.yml
|
|
124
126
|
- locales/hr.yml
|
|
125
127
|
- locales/pt.yml
|
|
126
128
|
- rodauth-i18n.gemspec
|
|
@@ -143,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
145
|
- !ruby/object:Gem::Version
|
|
144
146
|
version: '0'
|
|
145
147
|
requirements: []
|
|
146
|
-
rubygems_version: 3.
|
|
148
|
+
rubygems_version: 3.3.3
|
|
147
149
|
signing_key:
|
|
148
150
|
specification_version: 4
|
|
149
151
|
summary: Provides I18n integration and translations for Rodauth authentication framework.
|