diff --git a/meshview/lang/en.json b/meshview/lang/en.json index ccfb0c9..1b2691a 100644 --- a/meshview/lang/en.json +++ b/meshview/lang/en.json @@ -51,7 +51,9 @@ "chat": { "chat_title": "Chats:", "replying_to": "Replying to:", - "view_packet_details": "View packet details" + "view_packet_details": "View packet details", + "channel": "Channel", + "all_channels": "All Channels" }, "nodelist": { "search_placeholder": "Search by name or ID...", diff --git a/meshview/lang/es.json b/meshview/lang/es.json index dfe32d4..e3d6eb3 100644 --- a/meshview/lang/es.json +++ b/meshview/lang/es.json @@ -52,7 +52,9 @@ "chat": { "chat_title": "Conversaciones:", "replying_to": "Respondiendo a:", - "view_packet_details": "Ver detalles del paquete" + "view_packet_details": "Ver detalles del paquete", + "channel": "Canal", + "all_channels": "Todos los canales" }, "nodelist": { diff --git a/meshview/templates/chat.html b/meshview/templates/chat.html index bd719fb..d724afe 100644 --- a/meshview/templates/chat.html +++ b/meshview/templates/chat.html @@ -46,6 +46,13 @@ padding-left: 10px; } .replying-to .reply-preview { color: #aaa; } +.chat-controls { + gap: 12px; + margin-bottom: 10px; +} +.chat-filter { + min-width: 220px; +} {% endblock %} {% block body %} @@ -53,10 +60,19 @@