removed username from typing info

This commit is contained in:
Christian S 2015-07-30 21:25:24 +02:00
parent 35293d6293
commit e42dc661c2
3 changed files with 3 additions and 1 deletions

View file

@ -332,7 +332,7 @@ public class ConversationActivity extends XmppActivity
if (conversation.getMode() == Conversation.MODE_SINGLE) { if (conversation.getMode() == Conversation.MODE_SINGLE) {
ChatState state = conversation.getIncomingChatState(); ChatState state = conversation.getIncomingChatState();
if (state == ChatState.COMPOSING) { 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) { } else if (state == ChatState.PAUSED) {
ab.setSubtitle(null); ab.setSubtitle(null);
} else { } else {

View file

@ -451,4 +451,5 @@
<string name="choose_quick_action">wähle Schnell-Taste</string> <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="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="search_for_contacts_or_groups">Nach Kontakten oder Konferenzen suchen</string>
<string name="is_typing">schreibt...</string>
</resources> </resources>

View file

@ -499,4 +499,5 @@
<string name="search_for_contacts_or_groups">Search for contacts or groups</string> <string name="search_for_contacts_or_groups">Search for contacts or groups</string>
<string name="send_private_message">Send private message</string> <string name="send_private_message">Send private message</string>
<string name="user_has_left_conference">%s has left the conference!</string> <string name="user_has_left_conference">%s has left the conference!</string>
<string name="is_typing">is typing...</string>
</resources> </resources>