1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

changed send access creator identifier string (#862)

This commit is contained in:
Addison Beck
2021-03-02 16:17:56 -05:00
committed by GitHub
parent c2515ed3ae
commit 5c8e9a990c
2 changed files with 10 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
<p class="lead text-center mb-4">Bitwarden Send</p> <p class="lead text-center mb-4">Bitwarden Send</p>
</div> </div>
<div class="col-12 text-center"> <div class="col-12 text-center">
<p>A Bitwarden user {{creatorIdentifier}} shared the following with you.</p> <p>{{'sendCreatorIdentifier' | i18n: creatorIdentifier }}</p>
</div> </div>
<div class="col-5"> <div class="col-5">
<div class="card d-block"> <div class="card d-block">

View File

@@ -3712,5 +3712,14 @@
"sendAccessTaglineTryToday": { "sendAccessTaglineTryToday": {
"message": "to try it today.", "message": "to try it today.",
"description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'" "description": "This will be used as part of a larger sentence, broken up to include links. The full sentence will read 'Learn more about Bitwarden Send or sign up to **try it today.**'"
},
"sendCreatorIdentifier": {
"message": "Bitwarden user $USER_IDENTIFIER$ shared the following with you",
"placeholders": {
"user_identifier": {
"content": "$1",
"example": "An email address"
}
}
} }
} }