about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2023-04-09 14:10:32 +0200
committerGitHub <noreply@github.com>2023-04-09 14:10:32 +0200
commit19921f61c14095cadc55b329dd7c8f02bdc79d31 (patch)
tree14981e6daaff41e57560c957f51984c9f5d2500b /src/ui
parentac581c29bfa7c31fbfb6fe8019d257d3883b33bb (diff)
parente1ffc64a653033cc3f6c1e4d412a24985c8c45a0 (diff)
downloadprofani-tty-19921f61c14095cadc55b329dd7c8f02bdc79d31.tar.gz
Merge pull request #1821 from mdosch/use-proper-ellipsis-char
User proper ellipsis char
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/chatwin.c4
-rw-r--r--src/ui/console.c2
-rw-r--r--src/ui/notifier.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/chatwin.c b/src/ui/chatwin.c
index ff425c0f..0c540998 100644
--- a/src/ui/chatwin.c
+++ b/src/ui/chatwin.c
@@ -246,10 +246,10 @@ chatwin_otr_smp_event(ProfChatWin* chatwin, prof_otr_smp_event_t event, void* da
         win_println((ProfWin*)chatwin, THEME_DEFAULT, "!", "%s failed to authenticate you.", chatwin->barejid);
         break;
     case PROF_OTR_SMP_AUTH:
-        win_println((ProfWin*)chatwin, THEME_DEFAULT, "!", "Authenticating %s...", chatwin->barejid);
+        win_println((ProfWin*)chatwin, THEME_DEFAULT, "!", "Authenticating %s…", chatwin->barejid);
         break;
     case PROF_OTR_SMP_AUTH_WAIT:
-        win_println((ProfWin*)chatwin, THEME_DEFAULT, "!", "Awaiting authentication from %s...", chatwin->barejid);
+        win_println((ProfWin*)chatwin, THEME_DEFAULT, "!", "Awaiting authentication from %s…", chatwin->barejid);
         break;
     default:
         break;
diff --git a/src/ui/console.c b/src/ui/console.c
index 948de003..72aad7b6 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -293,7 +293,7 @@ cons_show_typing(const char* const barejid)
         display_usr = barejid;
     }
 
-    win_println(console, THEME_TYPING, "-", "!! %s is typing a message...", display_usr);
+    win_println(console, THEME_TYPING, "-", "!! %s is typing a message…", display_usr);
     cons_alert(NULL);
 }
 
diff --git a/src/ui/notifier.c b/src/ui/notifier.c
index 07a542af..36ed73c4 100644
--- a/src/ui/notifier.c
+++ b/src/ui/notifier.c
@@ -77,7 +77,7 @@ notifier_uninit(void)
 void
 notify_typing(const char* const name)
 {
-    gchar* message = g_strdup_printf("%s: typing...", name);
+    gchar* message = g_strdup_printf("%s: typing…", name);
     notify(message, 10000, "Incoming message");
     g_free(message);
 }