aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2019-02-07 21:29:57 +0100
committerChristian Schneppe <christian@pix-art.de>2019-02-07 21:29:57 +0100
commita6b8b238f27534721f9051e8cc872d68092ee4af (patch)
treeed1902ef6b458f4124ff882d826de4ebdfd63f7f /src/main/res
parentb31a9daf992012be7fa839cc3d25a042c55f9c7a (diff)
rights managment in muc
Diffstat (limited to 'src/main/res')
-rw-r--r--src/main/res/menu/muc_details_context.xml13
-rw-r--r--src/main/res/values/strings.xml2
2 files changed, 12 insertions, 3 deletions
diff --git a/src/main/res/menu/muc_details_context.xml b/src/main/res/menu/muc_details_context.xml
index 94693c0a5..373397e62 100644
--- a/src/main/res/menu/muc_details_context.xml
+++ b/src/main/res/menu/muc_details_context.xml
@@ -25,6 +25,10 @@
android:title="@string/grant_membership"
android:visible="false" />
<item
+ android:id="@+id/remove_membership"
+ android:title="@string/remove_membership"
+ android:visible="false" />
+ <item
android:id="@+id/give_admin_privileges"
android:title="@string/grant_admin_privileges"
android:visible="false" />
@@ -32,10 +36,13 @@
android:id="@+id/remove_admin_privileges"
android:title="@string/remove_admin_privileges"
android:visible="false" />
-
<item
- android:id="@+id/remove_membership"
- android:title="@string/remove_membership"
+ android:id="@+id/give_owner_privileges"
+ android:title="@string/grant_owner_privileges"
+ android:visible="false" />
+ <item
+ android:id="@+id/revoke_owner_privileges"
+ android:title="@string/remove_owner_privileges"
android:visible="false" />
<item
android:id="@+id/remove_from_room"
diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml
index 6c878cc7d..2afebd663 100644
--- a/src/main/res/values/strings.xml
+++ b/src/main/res/values/strings.xml
@@ -899,4 +899,6 @@
<string name="jabber_ids_are_visible_to_anyone">Jabber IDs are visible to anyone.</string>
<string name="no_users_hint_channel">This public channel has no participants.</string>
<string name="no_users_hint_group_chat">This private group chat has no participants.</string>
+ <string name="grant_owner_privileges">Grant owner privileges</string>
+ <string name="remove_owner_privileges">Revoke owner privileges</string>
</resources>