Add string

This commit is contained in:
Arne 2024-09-03 13:50:12 +02:00
parent a7754b264a
commit 29a5a457b6
2 changed files with 2 additions and 1 deletions

View file

@ -1869,7 +1869,7 @@ public class ConversationFragment extends XmppFragment
case R.id.retract_message:
new AlertDialog.Builder(activity)
.setTitle(R.string.retract_message)
.setMessage("Do you really want to retract this message?")
.setMessage(R.string.do_you_really_want_to_retract_this_message)
.setPositiveButton(R.string.yes, (dialog, whichButton) -> {
Message message = selectedMessage;
while (message.mergeable(message.next())) {

View file

@ -1076,4 +1076,5 @@
<string name="welcome_to_monocles_chat">Welcome to monocles chat</string>
<string name="monocles_chat_intro_description">monocles chat is an app that connects you to a global network called Jabber. This network includes services, called gateways, for chatting with other networks such as SMS, IRC, Matrix, and more.</string>
<string name="how_the_xmpp_network_works">How the XMPP network works</string>
<string name="do_you_really_want_to_retract_this_message">Do you really want to retract this message?</string>
</resources>