1
0
Fork 0

- used ellipsis instead of tree full stops.

This commit is contained in:
cage 2023-07-15 14:33:31 +02:00
parent a06caf629b
commit ccf5ff6140
2 changed files with 5 additions and 5 deletions

View File

@ -38,17 +38,17 @@
:accessor normal-bg :accessor normal-bg
:documentation "The background color for a line") :documentation "The background color for a line")
(normal-text (normal-text
:initform (make-tui-string "...") :initform (make-tui-string "")
:initarg :normal-text :initarg :normal-text
:accessor normal-text :accessor normal-text
:documentation "The actual not selected text") :documentation "The actual not selected text")
(selected-text (selected-text
:initform (make-tui-string "...") :initform (make-tui-string "")
:initarg :selected-text :initarg :selected-text
:accessor selected-text :accessor selected-text
:documentation "The actual selected text") :documentation "The actual selected text")
(deleted-text (deleted-text
:initform (make-tui-string "...") :initform (make-tui-string "")
:initarg :deleted-text :initarg :deleted-text
:accessor deleted-text :accessor deleted-text
:documentation "The actual deleted text ") :documentation "The actual deleted text ")

View File

@ -3450,10 +3450,10 @@ gemini client certificates!)."
(defun print-mentions () (defun print-mentions ()
"Print the mentions" "Print the mentions"
(info-message (_ "Getting all notification, please wait...")) (info-message (_ "Getting all notification, please wait"))
(push-event (make-instance 'print-mentions-event))) (push-event (make-instance 'print-mentions-event)))
(defun delete-notifications () (defun delete-notifications ()
"Delete all the notification from server" "Delete all the notification from server"
(info-message (_ "Getting all notification, please wait...")) (info-message (_ "Getting all notification, please wait"))
(push-event (make-instance 'delete-all-notifications-event))) (push-event (make-instance 'delete-all-notifications-event)))