diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 3fba511ded0d..ab600e5538d2 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -6707,6 +6707,12 @@
"message": "Maximum access count",
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
},
+ "incrementMaxAccessCount": {
+ "message": "Increment maximum access count"
+ },
+ "decrementMaxAccessCount": {
+ "message": "Decrement maximum access count"
+ },
"hideMyEmail": {
"message": "Hide my email address from recipients."
},
diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json
index 1c6db0197033..3b6836b76fc1 100644
--- a/apps/desktop/src/locales/en/messages.json
+++ b/apps/desktop/src/locales/en/messages.json
@@ -2725,6 +2725,12 @@
"message": "Maximum access count",
"description": "This text will be displayed after a Send has been accessed the maximum amount of times."
},
+ "incrementMaxAccessCount": {
+ "message": "Increment maximum access count"
+ },
+ "decrementMaxAccessCount": {
+ "message": "Decrement maximum access count"
+ },
"maxAccessCountDesc": {
"message": "If set, users will no longer be able to access this Send once the maximum access count is reached.",
"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 89697ecf228d..689548b0146c 100644
--- a/apps/web/src/locales/en/messages.json
+++ b/apps/web/src/locales/en/messages.json
@@ -6724,6 +6724,12 @@
"maxAccessCount": {
"message": "Maximum access count"
},
+ "incrementMaxAccessCount": {
+ "message": "Increment maximum access count"
+ },
+ "decrementMaxAccessCount": {
+ "message": "Decrement maximum access count"
+ },
"disabled": {
"message": "Disabled"
},
diff --git a/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.html b/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.html
index f1974d4210ce..c9484f1af660 100644
--- a/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.html
+++ b/libs/tools/send/send-ui/src/send-form/components/options/send-options.component.html
@@ -9,10 +9,32 @@