
Turns the "Create Room" form into a tabbed form with tabs that mimic the room display. In the "Members" tab an AutocompleteArrayInput allows selecting multiple users by their displayname. The displayname is also what is displayed ìn the invitations list. Creating the room immediately sends out the invitations as well. Change-Id: I3915144114ffe4c629848363c9cb7917634d04d8
83 lines
2.0 KiB
JavaScript
83 lines
2.0 KiB
JavaScript
import englishMessages from "ra-language-english";
|
|
|
|
export default {
|
|
...englishMessages,
|
|
synapseadmin: {
|
|
auth: {
|
|
homeserver: "Homeserver",
|
|
welcome: "Welcome to Synapse-admin",
|
|
},
|
|
action: {
|
|
save_and_show: "Create QR code",
|
|
save_only: "Save",
|
|
download_pdf: "Download PDF",
|
|
},
|
|
users: {
|
|
invalid_user_id:
|
|
"Must be a fully qualified Matrix user-id, e.g. @user_id:homeserver",
|
|
},
|
|
rooms: {
|
|
details: "Room Details",
|
|
room_name: "Room Name",
|
|
make_public: "Make room public",
|
|
room_name_required: "Must be provided",
|
|
alias_required_if_public: "Must be provided for a public room",
|
|
alias: "Alias",
|
|
alias_too_long:
|
|
"Must not exceed 255 bytes including the domain of the homeserver.",
|
|
},
|
|
},
|
|
resources: {
|
|
users: {
|
|
backtolist: "Back to list",
|
|
name: "User |||| Users",
|
|
email: "Email",
|
|
msisdn: "Phone",
|
|
fields: {
|
|
avatar: "Avatar",
|
|
id: "User-ID",
|
|
name: "Name",
|
|
is_guest: "Guest",
|
|
admin: "Admin",
|
|
deactivated: "Deactivated",
|
|
guests: "Show guests",
|
|
show_deactivated: "Show deactivated users",
|
|
user_id: "Search user",
|
|
displayname: "Displayname",
|
|
password: "Password",
|
|
avatar_url: "Avatar URL",
|
|
medium: "Medium",
|
|
threepids: "3PIDs",
|
|
address: "Address",
|
|
},
|
|
helper: {
|
|
deactivate: "Deactivated users cannot be reactivated",
|
|
erase: "Mark the user as GDPR-erased",
|
|
},
|
|
action: {
|
|
erase: "Erase user data",
|
|
},
|
|
},
|
|
rooms: {
|
|
name: "Room |||| Rooms",
|
|
fields: {
|
|
room_id: "Room-ID",
|
|
name: "Name",
|
|
canonical_alias: "Alias",
|
|
joined_members: "Members",
|
|
invite_members: "Invite Members",
|
|
|
|
invitees: "Invitations",
|
|
},
|
|
},
|
|
connections: {
|
|
name: "Connections",
|
|
fields: {
|
|
last_seen: "Date",
|
|
ip: "IP address",
|
|
user_agent: "User agent",
|
|
},
|
|
},
|
|
},
|
|
};
|