diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 4c36a852f6a..9f15bfd840f 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -3035,10 +3035,6 @@
"custom": {
"message": "Custom"
},
- "sendPasswordDescV3": {
- "message": "Add an optional password for recipients to access this Send.",
- "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
- },
"createSend": {
"message": "New Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
@@ -6144,5 +6140,9 @@
},
"emailPlaceholder": {
"message": "user@bitwarden.com , user@acme.com"
+ },
+ "sendPasswordHelperText": {
+ "message": "Individuals will need to enter the password to view this Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
}
}
\ No newline at end of file
diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json
index 0ce98b8c62b..f04ab8756d0 100644
--- a/apps/desktop/src/locales/en/messages.json
+++ b/apps/desktop/src/locales/en/messages.json
@@ -137,10 +137,6 @@
"message": "Send details",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
- "sendPasswordDescV3": {
- "message": "Add an optional password for recipients to access this Send.",
- "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
- },
"sendTypeTextToShare": {
"message": "Text to share"
},
@@ -4587,5 +4583,9 @@
},
"whyAmISeeingThis": {
"message": "Why am I seeing this?"
+ },
+ "sendPasswordHelperText": {
+ "message": "Individuals will need to enter the password to view this Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
}
}
diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json
index 04566a666d4..160ad4e867a 100644
--- a/apps/web/src/locales/en/messages.json
+++ b/apps/web/src/locales/en/messages.json
@@ -5645,10 +5645,6 @@
"sendTypeText": {
"message": "Text"
},
- "sendPasswordDescV3": {
- "message": "Add an optional password for recipients to access this Send.",
- "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
- },
"createSend": {
"message": "New Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
@@ -12783,6 +12779,10 @@
"invalidSendPassword": {
"message": "Invalid Send password"
},
+ "sendPasswordHelperText": {
+ "message": "Individuals will need to enter the password to view this Send",
+ "description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
+ },
"perUser": {
"message": "per user"
}
diff --git a/libs/tools/send/send-ui/src/send-form/components/send-details/send-details.component.html b/libs/tools/send/send-ui/src/send-form/components/send-details/send-details.component.html
index 581ee20caf7..dc1894b0935 100644
--- a/libs/tools/send/send-ui/src/send-form/components/send-details/send-details.component.html
+++ b/libs/tools/send/send-ui/src/send-form/components/send-details/send-details.component.html
@@ -61,6 +61,9 @@
@if (sendDetailsForm.get("authType").value === AuthType.Email) {
{{ "emailVerificationDesc" | i18n }}
}
+ @if (sendDetailsForm.get("authType").value === AuthType.Password) {
+ {{ "sendPasswordHelperText" | i18n }}
+ }
@if (sendDetailsForm.get("authType").value === AuthType.Password) {
@@ -108,7 +111,6 @@
>
}
- {{ "sendPasswordDescV3" | i18n }}
}