removed username from typing info
This commit is contained in:
parent
35293d6293
commit
e42dc661c2
3 changed files with 3 additions and 1 deletions
|
@ -332,7 +332,7 @@ public class ConversationActivity extends XmppActivity
|
|||
if (conversation.getMode() == Conversation.MODE_SINGLE) {
|
||||
ChatState state = conversation.getIncomingChatState();
|
||||
if (state == ChatState.COMPOSING) {
|
||||
ab.setSubtitle(getString(R.string.contact_is_typing, conversation.getName()));
|
||||
ab.setSubtitle(getString(R.string.is_typing));
|
||||
} else if (state == ChatState.PAUSED) {
|
||||
ab.setSubtitle(null);
|
||||
} else {
|
||||
|
|
|
@ -451,4 +451,5 @@
|
|||
<string name="choose_quick_action">wähle Schnell-Taste</string>
|
||||
<string name="file_not_found_on_remote_host">Datei auf Server nicht gefunden</string>
|
||||
<string name="search_for_contacts_or_groups">Nach Kontakten oder Konferenzen suchen</string>
|
||||
<string name="is_typing">schreibt...</string>
|
||||
</resources>
|
||||
|
|
|
@ -499,4 +499,5 @@
|
|||
<string name="search_for_contacts_or_groups">Search for contacts or groups</string>
|
||||
<string name="send_private_message">Send private message</string>
|
||||
<string name="user_has_left_conference">%s has left the conference!</string>
|
||||
<string name="is_typing">is typing...</string>
|
||||
</resources>
|
||||
|
|
Reference in a new issue