Commit 5bdb2b80 authored by Guus der Kinderen's avatar Guus der Kinderen

Admin Console MUC Room UI tweaks

parent d9357dd8
......@@ -1252,7 +1252,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.registration=Allow Users to register with the room
muc.room.edit.form.log=Log Room Conversations
muc.room.edit.form.required_field=Required Field
# Muc room summary Page
muc.room.summary.title=Group Chat Rooms
......
......@@ -389,23 +389,23 @@
<% if (errors.get("roomconfig_roomname") != null) { %>
<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" />
<% } else if (errors.get("roomconfig_maxusers") != null) { %>
<% } if (errors.get("roomconfig_maxusers") != null) { %>
<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" />
<% } else if (errors.get("roomconfig_whois") != null) { %>
<% } if (errors.get("roomconfig_whois") != null) { %>
<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" />
<% } else if (errors.get("roomName") != null) { %>
<% } if (errors.get("roomName") != null) { %>
<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" />
<% } 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" />
<% } else if (errors.get("room_topic") != null) { %>
<% } if (errors.get("room_topic") != null) { %>
<fmt:message key="muc.room.edit.form.valid_hint_subject" />
<% } %>
</td>
......@@ -485,7 +485,7 @@
<tbody>
<% if (create) { %>
<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) %>">
<% if (webManager.getMultiUserChatManager().getMultiUserChatServicesCount() > 1) { %>
@<select name="mucName">
......@@ -516,12 +516,12 @@
</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>
</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>
</tr>
......@@ -634,6 +634,7 @@
<input type="submit" name="cancel" value="<fmt:message key="global.cancel" />"></td>
</tr>
</table>
<span class="jive-description">* <fmt:message key="muc.room.edit.form.required_field" /> </span>
</form>
</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