Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ProtonMail/WebClients.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorromain sanchez <romain.sanchez@proton.ch>2022-09-19 14:05:58 +0300
committerRichard Tetaz <richard.tetaz@proton.ch>2022-09-19 21:45:40 +0300
commit9292242f0c1c4721af7c414c3dfe32bd6be779a9 (patch)
treeabba2ee332df459791f353572b7ba13bc94c97d8
parenta037b5d256f33fbfde51526b9680339c9c9ec3e8 (diff)
Fix context filtering strings
MAILWEB-3573
-rw-r--r--applications/mail/src/app/components/dropdown/LabelDropdown.tsx2
-rw-r--r--applications/mail/src/app/components/dropdown/MoveDropdown.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/mail/src/app/components/dropdown/LabelDropdown.tsx b/applications/mail/src/app/components/dropdown/LabelDropdown.tsx
index ab5f3de50a..e9d17ddea6 100644
--- a/applications/mail/src/app/components/dropdown/LabelDropdown.tsx
+++ b/applications/mail/src/app/components/dropdown/LabelDropdown.tsx
@@ -324,7 +324,7 @@ const LabelDropdown = ({ selectedIDs, labelID, onClose, onLock, breakpoints }: P
data-prevent-arrow-navigation
/>
<label htmlFor={alwaysCheckID} className="flex-item-fluid">
- {c('Label').t`Always label senders emails`}
+ {c('Label').t`Always label sender's emails`}
</label>
</div>
</Tooltip>
diff --git a/applications/mail/src/app/components/dropdown/MoveDropdown.tsx b/applications/mail/src/app/components/dropdown/MoveDropdown.tsx
index b39a3bcbee..ac6e8e8388 100644
--- a/applications/mail/src/app/components/dropdown/MoveDropdown.tsx
+++ b/applications/mail/src/app/components/dropdown/MoveDropdown.tsx
@@ -239,7 +239,7 @@ const MoveDropdown = ({ selectedIDs, labelID, conversationMode, onClose, onLock,
data-prevent-arrow-navigation
/>
<label htmlFor={alwaysCheckID} className="flex-item-fluid">
- {c('Label').t`Always move senders emails`}
+ {c('Label').t`Always move sender's emails`}
</label>
</div>
</Tooltip>