diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index c45c99d818..2a609fe1dc 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -108,6 +108,9 @@ android {
unitTests.isIncludeAndroidResources = true
unitTests.isReturnDefaultValues = true
}
+ lint {
+ disable.add("MissingTranslation")
+ }
}
kotlin {
diff --git a/app/src/main/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensions.kt b/app/src/main/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensions.kt
index 4bbe2d5308..fd052d02d5 100644
--- a/app/src/main/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensions.kt
+++ b/app/src/main/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensions.kt
@@ -39,7 +39,7 @@ fun TwoFactorAuthMethod.description(email: String): Text = when (this) {
}
TwoFactorAuthMethod.EMAIL -> R.string.enter_verification_code_email.asText(email)
- TwoFactorAuthMethod.WEB_AUTH -> R.string.continue_to_complete_web_authn_verfication.asText()
+ TwoFactorAuthMethod.WEB_AUTH -> R.string.continue_to_complete_web_authn_verification.asText()
TwoFactorAuthMethod.YUBI_KEY -> R.string.yubi_key_instruction.asText()
else -> "".asText()
}
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 0febe3e40d..66ddca6732 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -913,4 +913,16 @@ Do you want to switch to this account?
Passkey operation failed because of missing asset links
Passkey operation failed because app not found in asset links
Passkey operation failed because app could not be verified
+ Confirm file password
+ Continue to Give Feedback?
+ Select continue to give feedback on the new app!
+ File password
+ Give Feedback
+ Password Protected
+ This password will be used to export and import this file
+ Autofill suggestion
+ Continue to complete WebAuthn verification.
+ Launch WebAuthn
+ There was an error starting WebAuthn two factor authentication
+ Self-hosted server URL
diff --git a/app/src/main/res/values/strings_non_localized.xml b/app/src/main/res/values/strings_non_localized.xml
index f08998ad57..4cbf7374ca 100644
--- a/app/src/main/res/values/strings_non_localized.xml
+++ b/app/src/main/res/values/strings_non_localized.xml
@@ -6,17 +6,4 @@
Duo (%1$s)
.json
.json (%1$s)
-
- Confirm file password
- Continue to Give Feedback?
- Select continue to give feedback on the new app!
- File password
- Give Feedback
- Password Protected
- This password will be used to export and import this file
- Autofill suggestion
- Continue to complete WebAuthn verification.
- Launch WebAuthn
- There was an error starting WebAuthn two factor authentication
- Self-hosted server URL
diff --git a/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensionTest.kt b/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensionTest.kt
index 48f17d9b6a..a6cd89b581 100644
--- a/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensionTest.kt
+++ b/app/src/test/java/com/x8bit/bitwarden/ui/auth/feature/twofactorlogin/util/TwoFactorAuthMethodExtensionTest.kt
@@ -49,7 +49,7 @@ class TwoFactorAuthMethodExtensionTest {
.concat(" ".asText())
.concat(R.string.follow_the_steps_from_duo_to_finish_logging_in.asText()),
TwoFactorAuthMethod.WEB_AUTH to
- R.string.continue_to_complete_web_authn_verfication.asText(),
+ R.string.continue_to_complete_web_authn_verification.asText(),
TwoFactorAuthMethod.RECOVERY_CODE to "".asText(),
)
.forEach { (type, title) ->