Add translations for TOTP setup security view
This commit is contained in:
parent
118f599fde
commit
0c1f028b43
|
@ -5,38 +5,37 @@
|
||||||
.totp-setup__qr
|
.totp-setup__qr
|
||||||
= qr_svg
|
= qr_svg
|
||||||
%p.totp-setup__text
|
%p.totp-setup__text
|
||||||
If you cannot scan the QR code, use the following key instead:
|
= t(".setup_key")
|
||||||
%code= current_user.otp_secret_key.scan(/.{4}/).flatten.join(' ')
|
%code= current_user.otp_secret_key.scan(/.{4}/).flatten.join(" ")
|
||||||
.totp-setup__content.col
|
.totp-setup__content.col
|
||||||
= bootstrap_form_for(current_user, url: { action: :update_2fa, method: :post }) do |f|
|
= bootstrap_form_for(current_user, url: { action: :update_2fa, method: :post }) do |f|
|
||||||
%p
|
%p= t(".app.none")
|
||||||
If you do not have an authenticator app already installed on your device, we suggest one of the following:
|
|
||||||
%ul.list-unstyled.pl-3
|
%ul.list-unstyled.pl-3
|
||||||
%li
|
%li
|
||||||
%i.fa.fa-android
|
%i.fa.fa-android
|
||||||
Aegis Authenticator for Android
|
= t(".app.aegis")
|
||||||
%ul.list-inline
|
%ul.list-inline
|
||||||
%li.list-inline-item
|
%li.list-inline-item
|
||||||
%a{ href: 'https://play.google.com/store/apps/details?id=com.beemdevelopment.aegis' } Google Play
|
%a{ href: "https://play.google.com/store/apps/details?id=com.beemdevelopment.aegis" }= t(".source.google_play")
|
||||||
%li.list-inline-item
|
%li.list-inline-item
|
||||||
%a{ href: 'https://f-droid.org/app/com.beemdevelopment.aegis' } F-Droid
|
%a{ href: "https://f-droid.org/app/com.beemdevelopment.aegis" }= t(".source.fdroid")
|
||||||
%li.list-inline-item
|
%li.list-inline-item
|
||||||
%a{ href: 'https://github.com/beemdevelopment/Aegis' } Source Code
|
%a{ href: "https://github.com/beemdevelopment/Aegis" }= t(".source.code")
|
||||||
%li
|
%li
|
||||||
%i.fa.fa-apple
|
%i.fa.fa-apple
|
||||||
Strongbox Authenticator for iOS
|
= t(".app.strongbox")
|
||||||
%ul.list-inline
|
%ul.list-inline
|
||||||
%li.list-inline-item
|
%li.list-inline-item
|
||||||
%a{ href: 'https://apps.apple.com/gb/app/strongbox-authenticator/id1023839880' } App Store
|
%a{ href: "https://apps.apple.com/gb/app/strongbox-authenticator/id1023839880" }= t(".source.app_store")
|
||||||
%li
|
%li
|
||||||
%i.fa.fa-apple
|
%i.fa.fa-apple
|
||||||
%i.fa.fa-android
|
%i.fa.fa-android
|
||||||
Microsoft Authenticator
|
= t(".app.microsoft")
|
||||||
%ul.list-inline
|
%ul.list-inline
|
||||||
%li.list-inline-item
|
%li.list-inline-item
|
||||||
%a{ href: 'https://apps.apple.com/gb/app/microsoft-authenticator/id983156458' } App Store
|
%a{ href: "https://apps.apple.com/gb/app/microsoft-authenticator/id983156458" }= t(".source.app_store")
|
||||||
%li.list-inline-item
|
%li.list-inline-item
|
||||||
%a{ href: 'https://play.google.com/store/apps/details?id=com.azure.authenticator' } Google Play
|
%a{ href: "https://play.google.com/store/apps/details?id=com.azure.authenticator" }= t(".source.google_play")
|
||||||
%p Once you have downloaded an authenticator app, add your Retrospring account by scanning the QR code displayed on the left.
|
%p= t(".setup_qr", app_name: APP_CONFIG['site_name'])
|
||||||
= f.text_field :otp_validation, class: 'totp-setup__code-field', label: 'Enter the code displayed in the app here:', autofocus: true
|
= f.text_field :otp_validation, class: "totp-setup__code-field", label: t(".otp_validation"), autofocus: true
|
||||||
= f.submit t('views.actions.save'), class: 'btn btn-primary'
|
= f.primary
|
||||||
|
|
Loading…
Reference in New Issue