restore localization for custom tabs

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-07-14 21:56:15 -07:00
committed by Daniel D’Aquino
parent e70cfbbe63
commit 858d9dc6f0
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -73,8 +73,8 @@ struct DirectMessagesView: View {
var body: some View {
VStack(spacing: 0) {
CustomPicker(tabs: [
("DMs", DMType.friend),
("Requests", DMType.rando),
(NSLocalizedString("DMs", comment: "Picker option for DM selector for seeing only DMs that have been responded to. DM is the English abbreviation for Direct Message."), DMType.friend),
(NSLocalizedString("Requests", comment: "Picker option for DM selector for seeing only message requests (DMs that someone else sent the user which has not been responded to yet"), DMType.rando),
], selection: $dm_type)
Divider()