Commit 2eea09b0 authored by Guus der Kinderen's avatar Guus der Kinderen Committed by akrherz

Admin Console MUC Room UI tweaks

parent 095d06c3
...@@ -1250,7 +1250,7 @@ muc.room.edit.form.reservednick=Only login with registered nickname ...@@ -1250,7 +1250,7 @@ muc.room.edit.form.reservednick=Only login with registered nickname
muc.room.edit.form.canchangenick=Allow Occupants to change nicknames muc.room.edit.form.canchangenick=Allow Occupants to change nicknames
muc.room.edit.form.registration=Allow Users to register with the room muc.room.edit.form.registration=Allow Users to register with the room
muc.room.edit.form.log=Log Room Conversations muc.room.edit.form.log=Log Room Conversations
muc.room.edit.form.required_field=Required Field
# Muc room summary Page # Muc room summary Page
muc.room.summary.title=Group Chat Rooms muc.room.summary.title=Group Chat Rooms
......
...@@ -391,23 +391,23 @@ ...@@ -391,23 +391,23 @@
<% if (errors.get("roomconfig_roomname") != null) { %> <% if (errors.get("roomconfig_roomname") != null) { %>
<fmt:message key="muc.room.edit.form.valid_hint_name" /> <fmt:message key="muc.room.edit.form.valid_hint_name" />
<% } else if (errors.get("roomconfig_roomdesc") != null) { %> <% } if (errors.get("roomconfig_roomdesc") != null) { %>
<fmt:message key="muc.room.edit.form.valid_hint_description" /> <fmt:message key="muc.room.edit.form.valid_hint_description" />
<% } else if (errors.get("roomconfig_maxusers") != null) { %> <% } if (errors.get("roomconfig_maxusers") != null) { %>
<fmt:message key="muc.room.edit.form.valid_hint_max_room" /> <fmt:message key="muc.room.edit.form.valid_hint_max_room" />
<% } else if (errors.get("roomconfig_roomsecret2") != null) { %> <% } if (errors.get("roomconfig_roomsecret2") != null) { %>
<fmt:message key="muc.room.edit.form.new_password" /> <fmt:message key="muc.room.edit.form.new_password" />
<% } else if (errors.get("roomconfig_whois") != null) { %> <% } if (errors.get("roomconfig_whois") != null) { %>
<fmt:message key="muc.room.edit.form.role" /> <fmt:message key="muc.room.edit.form.role" />
<% } else if (errors.get("roomconfig_allowpm") != null) { %> <% } if (errors.get("roomconfig_allowpm") != null) { %>
<fmt:message key="muc.room.edit.form.role" /> <fmt:message key="muc.room.edit.form.role" />
<% } else if (errors.get("roomName") != null) { %> <% } if (errors.get("roomName") != null) { %>
<fmt:message key="muc.room.edit.form.valid_hint" /> <fmt:message key="muc.room.edit.form.valid_hint" />
<% } else if (errors.get("room_already_exists") != null) { %> <% } if (errors.get("room_already_exists") != null) { %>
<fmt:message key="muc.room.edit.form.error_created_id" /> <fmt:message key="muc.room.edit.form.error_created_id" />
<% } else if (errors.get("not_enough_permissions") != null) { %> <% } if (errors.get("not_enough_permissions") != null) { %>
<fmt:message key="muc.room.edit.form.error_created_privileges" /> <fmt:message key="muc.room.edit.form.error_created_privileges" />
<% } else if (errors.get("room_topic") != null) { %> <% } if (errors.get("room_topic") != null) { %>
<fmt:message key="muc.room.edit.form.valid_hint_subject" /> <fmt:message key="muc.room.edit.form.valid_hint_subject" />
<% } %> <% } %>
</td> </td>
...@@ -487,7 +487,7 @@ ...@@ -487,7 +487,7 @@
<tbody> <tbody>
<% if (create) { %> <% if (create) { %>
<tr> <tr>
<td><fmt:message key="muc.room.edit.form.room_id" />:</td> <td><fmt:message key="muc.room.edit.form.room_id" />: *</td>
<td><input type="text" name="roomName" value="<%= StringUtils.escapeForXML(roomName) %>"> <td><input type="text" name="roomName" value="<%= StringUtils.escapeForXML(roomName) %>">
<% if (webManager.getMultiUserChatManager().getMultiUserChatServicesCount() > 1) { %> <% if (webManager.getMultiUserChatManager().getMultiUserChatServicesCount() > 1) { %>
@<select name="mucName"> @<select name="mucName">
...@@ -518,12 +518,12 @@ ...@@ -518,12 +518,12 @@
</tr> </tr>
<% } %> <% } %>
<tr> <tr>
<td><fmt:message key="muc.room.edit.form.room_name" />:</td> <td><fmt:message key="muc.room.edit.form.room_name" />: *</td>
<td><input type="text" name="roomconfig_roomname" value="<%= (naturalName == null ? "" : StringUtils.escapeForXML(naturalName)) %>"> <td><input type="text" name="roomconfig_roomname" value="<%= (naturalName == null ? "" : StringUtils.escapeForXML(naturalName)) %>">
</td> </td>
</tr> </tr>
<tr> <tr>
<td><fmt:message key="muc.room.edit.form.description" />:</td> <td><fmt:message key="muc.room.edit.form.description" />: *</td>
<td><input name="roomconfig_roomdesc" value="<%= (description == null ? "" : StringUtils.escapeForXML(description)) %>" type="text" size="40"> <td><input name="roomconfig_roomdesc" value="<%= (description == null ? "" : StringUtils.escapeForXML(description)) %>" type="text" size="40">
</td> </td>
</tr> </tr>
...@@ -636,6 +636,7 @@ ...@@ -636,6 +636,7 @@
<input type="submit" name="cancel" value="<fmt:message key="global.cancel" />"></td> <input type="submit" name="cancel" value="<fmt:message key="global.cancel" />"></td>
</tr> </tr>
</table> </table>
<span class="jive-description">* <fmt:message key="muc.room.edit.form.required_field" /> </span>
</form> </form>
</body> </body>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment