Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2023-10-29 14:20:46 +0300
committerwurstsalat <mailtrash@posteo.de>2023-10-29 14:20:50 +0300
commit2af75b110bf559add945a6f3f83bece56e8078e5 (patch)
tree46aad9241d13f28700368df24e11a9a3e19fac23
parent797494a2fabb7a51c8ac5557e3255fa15d07cf65 (diff)
imprv: MUC features: Use better icons for public and anonymous properties
Fixes #11585
-rw-r--r--gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-off-symbolic.svg1
-rw-r--r--gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-symbolic.svg1
-rw-r--r--gajim/gtk/groupchat_info.py8
3 files changed, 6 insertions, 4 deletions
diff --git a/gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-off-symbolic.svg b/gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-off-symbolic.svg
new file mode 100644
index 000000000..6bfc3bea6
--- /dev/null
+++ b/gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-off-symbolic.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-megaphone-off"><path d="M9.26 9.26 3 11v3l14.14 3.14"/><path d="M21 15.34V6l-7.31 2.03"/><path d="M11.6 16.8a3 3 0 1 1-5.8-1.6"/><line x1="2" x2="22" y1="2" y2="22"/></svg> \ No newline at end of file
diff --git a/gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-symbolic.svg b/gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-symbolic.svg
new file mode 100644
index 000000000..847b13822
--- /dev/null
+++ b/gajim/data/icons/hicolor/scalable/devices/lucide-megaphone-symbolic.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-megaphone"><path d="m3 11 18-5v12L3 14v-3z"/><path d="M11.6 16.8a3 3 0 1 1-5.8-1.6"/></svg> \ No newline at end of file
diff --git a/gajim/gtk/groupchat_info.py b/gajim/gtk/groupchat_info.py
index c72e9dcc4..b2e547784 100644
--- a/gajim/gtk/groupchat_info.py
+++ b/gajim/gtk/groupchat_info.py
@@ -51,12 +51,12 @@ MUC_FEATURES = {
_('This group chat is restricted '
'to members only')),
'muc_nonanonymous': (
- 'feather-shield-off-symbolic',
+ 'feather-eye-symbolic',
p_('Group chat feature', 'Not Anonymous'),
_('All other group chat participants '
'can see your XMPP address')),
'muc_semianonymous': (
- 'feather-shield-symbolic',
+ 'feather-eye-off-symbolic',
p_('Group chat feature', 'Semi-Anonymous'),
_('Only moderators can see your XMPP address')),
'muc_moderated': (
@@ -70,11 +70,11 @@ MUC_FEATURES = {
_('Participants entering this group chat are '
'allowed to send messages')),
'muc_public': (
- 'feather-eye-symbolic',
+ 'lucide-megaphone-symbolic',
p_('Group chat feature', 'Public'),
_('Group chat can be found via search')),
'muc_hidden': (
- 'feather-eye-off-symbolic',
+ 'lucide-megaphone-off-symbolic',
p_('Group chat feature', 'Hidden'),
_('This group chat can not be found via search')),
'muc_passwordprotected': (