Skip to content

Commit

Permalink
Adjust silent send message
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
SystemKeeper committed Sep 30, 2024
1 parent f101c16 commit 19b8073
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NextcloudTalk/ChatViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,7 @@ import UIKit

// Show silent send information
if message.isSilent {
let silentInfo = UIAction(title: NSLocalizedString("Sent silently", comment: "A message has been sent silently"), attributes: [.disabled], handler: {_ in })
let silentInfo = UIAction(title: NSLocalizedString("Sent without notification", comment: "A message has been sent without notifications"), attributes: [.disabled], handler: {_ in })
silentInfo.image = UIImage(systemName: "bell.slash")

informationalActions.append(silentInfo)
Expand Down
4 changes: 2 additions & 2 deletions NextcloudTalk/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -1498,8 +1498,8 @@
/* No comment provided by engineer. */
"Send/Accept" = "Send/Accept";

/* A message has been sent silently */
"Sent silently" = "Sent silently";
/* A message has been sent without notifications */
"Sent without notification" = "Sent without notification";

/* No comment provided by engineer. */
"Server" = "Server";
Expand Down

0 comments on commit 19b8073

Please sign in to comment.