diff --git a/src/components/ChatWindow.vue b/src/components/ChatWindow.vue index 2ea5720..e451fa3 100644 --- a/src/components/ChatWindow.vue +++ b/src/components/ChatWindow.vue @@ -335,7 +335,7 @@ async function onSend(content: string) { color: var(--muted); font-size: 1.1rem; z-index: 10; - pointer-events: none; + /* pointer-events: none; */ text-align: center; } @@ -424,7 +424,7 @@ async function onSend(content: string) { left: 50%; transform: translate(-50%, -50%); z-index: 10; - pointer-events: none; + /* pointer-events: none; */ text-align: center; width: 100%; } diff --git a/src/locales/en.ftl b/src/locales/en.ftl index 31bfffe..245a433 100644 --- a/src/locales/en.ftl +++ b/src/locales/en.ftl @@ -67,6 +67,8 @@ friends-add-title = Add Friend friends-send-request = Send Request friends-list-header = Your Friends friends-error-required = Username is required. +friends-connectiong = Loading friends... +friends-list-empty = No friends found ## Notifications page notifications-title = Notifications @@ -82,6 +84,8 @@ notifications-error-friend-accept = An error occurred while accepting the reques notifications-error-friend-decline = An error occurred while declining the request. notifications-error-room-accept = An error occurred while accepting the invite. notifications-error-room-decline = An error occurred while declining the invite. +notifications-connectiong = Loading notifications... +notifications-empty = No notifications found ## Settings page settings-loading = Loading settings... diff --git a/src/locales/fr.ftl b/src/locales/fr.ftl index af7f8ae..585ef38 100644 --- a/src/locales/fr.ftl +++ b/src/locales/fr.ftl @@ -67,6 +67,8 @@ friends-add-title = Ajouter un ami friends-send-request = Envoyer friends-list-header = Vos Amis friends-error-required = Le nom d'utilisateur est requis. +friends-connectiong = Chargement des amis... +friends-list-empty = Pas d'amis trouvés ## Notifications page notifications-title = Notifications @@ -82,6 +84,8 @@ notifications-error-friend-accept = Erreur lors de l'acceptation de la demande. notifications-error-friend-decline = Erreur lors du refus de la demande. notifications-error-room-accept = Erreur lors de l'acceptation de l'invitation. notifications-error-room-decline = Erreur lors du refus de l'invitation. +notifications-connectiong = Chargement des notifications... +notifications-empty = Pas de notifications trouvées ## Settings page settings-loading = Chargement des paramètres... diff --git a/src/pages/FriendListPage.vue b/src/pages/FriendListPage.vue index db8cb3b..f1d9466 100644 --- a/src/pages/FriendListPage.vue +++ b/src/pages/FriendListPage.vue @@ -1,31 +1,46 @@