Adding further string

This commit is contained in:
Arne 2024-11-19 09:33:07 +01:00
parent df5fa56abf
commit e2e36a8acc
2 changed files with 2 additions and 1 deletions

View file

@ -1717,7 +1717,7 @@ public class ConversationFragment extends XmppFragment
binding.requestVoice.setOnClickListener((v) -> {
activity.xmppConnectionService.requestVoice(conversation.getAccount(), conversation.getJid());
binding.requestVoice.setVisibility(View.GONE);
Toast.makeText(activity, "Your request has been sent to the moderators", Toast.LENGTH_SHORT).show();
Toast.makeText(activity, R.string.request_to_speak_send, Toast.LENGTH_SHORT).show();
});
binding.emojiButton.setOnClickListener(this.memojiButtonListener);
binding.emojisButton.setOnClickListener(this.memojisButtonListener);

View file

@ -1341,4 +1341,5 @@
<string name="pref_custom_tab_summary">Ask your browser to render as if integrated with this app ("custom tab")</string>
<string name="pref_export">Export Data (experimental)</string>
<string name="pref_export_summary">Export data useful for importing into another app. Not a full backup.</string>
<string name="request_to_speak_send">Your request has been sent to the moderators</string>
</resources>