aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-11-17 16:06:54 +0100
committerfiaxh <git@mx.ax.lt>2017-11-17 17:24:03 +0100
commit2a514d0969f5c25d5e2d14421125a47df6b14974 (patch)
treefd95c1ee569b2e30dd3c7311b6fa32c7e46a50d0 /main/src/ui
parent48cd057bd569efdaf8f8a759365fa9079b732159 (diff)
downloaddino-2a514d0969f5c25d5e2d14421125a47df6b14974.tar.gz
dino-2a514d0969f5c25d5e2d14421125a47df6b14974.zip
Fix unit tests using async + read message marker
Diffstat (limited to 'main/src/ui')
-rw-r--r--main/src/ui/add_conversation/conference_details_fragment.vala2
-rw-r--r--main/src/ui/conversation_summary/chat_state_populator.vala2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/add_conversation/conference_details_fragment.vala b/main/src/ui/add_conversation/conference_details_fragment.vala
index fbe9245d..027483f4 100644
--- a/main/src/ui/add_conversation/conference_details_fragment.vala
+++ b/main/src/ui/add_conversation/conference_details_fragment.vala
@@ -102,7 +102,7 @@ protected class ConferenceDetailsFragment : Box {
stream_interactor.get_module(MucManager.IDENTITY).enter_error.connect(on_enter_error);
notification_button.clicked.connect(() => { notification_revealer.set_reveal_child(false); });
ok_button.clicked.connect(() => {
- ok_button.label = _("Joining...");
+ ok_button.label = _("Joining…");
ok_button.sensitive = false;
});
}
diff --git a/main/src/ui/conversation_summary/chat_state_populator.vala b/main/src/ui/conversation_summary/chat_state_populator.vala
index 6f397249..bb9597e6 100644
--- a/main/src/ui/conversation_summary/chat_state_populator.vala
+++ b/main/src/ui/conversation_summary/chat_state_populator.vala
@@ -54,7 +54,7 @@ class ChatStatePopulator : Plugins.ConversationItemPopulator, Object {
if (state_ != null) {
if (state_ == Xep.ChatStateNotifications.STATE_COMPOSING || state_ == Xep.ChatStateNotifications.STATE_PAUSED) {
if (state_ == Xep.ChatStateNotifications.STATE_COMPOSING) {
- new_text = _("is typing...");
+ new_text = _("is typing…");
} else if (state_ == Xep.ChatStateNotifications.STATE_PAUSED) {
new_text = _("has stopped typing");
}