2020-02-07 18:29:11 +03:00
import englishMessages from "ra-language-english" ;
export default {
... englishMessages ,
2020-02-07 18:35:21 +03:00
synapseadmin : {
auth : {
2020-04-30 22:22:35 +03:00
base _url : "Homeserver URL" ,
2020-02-07 18:35:21 +03:00
welcome : "Welcome to Synapse-admin" ,
2020-04-30 22:22:35 +03:00
username _error : "Please enter fully qualified user ID: '@user:domain'" ,
2020-04-30 19:45:37 +03:00
protocol _error : "URL has to start with 'http://' or 'https://'" ,
url _error : "Not a valid Matrix server URL" ,
2020-02-07 18:35:21 +03:00
} ,
2020-02-07 19:44:48 +03:00
users : {
invalid _user _id :
"Must be a fully qualified Matrix user-id, e.g. @user_id:homeserver" ,
} ,
2020-07-07 22:28:20 +03:00
rooms : {
tabs : {
basic : "Basic" ,
members : "Members" ,
detail : "Details" ,
permission : "Permissions" ,
} ,
2020-10-07 22:42:19 +03:00
delete : {
title : "Delete room" ,
2020-11-12 18:16:32 +03:00
message :
"Are you sure you want to delete the room? This cannot be undone. All messages and shared media in the room will be deleted from the server!" ,
2020-10-07 22:42:19 +03:00
} ,
2020-07-07 22:28:20 +03:00
} ,
2020-02-07 19:44:48 +03:00
} ,
2020-09-22 12:30:27 +03:00
import _users : {
error : {
at _entry : "At entry %{entry}: %{message}" ,
error : "Error" ,
required _field : "Required field '%{field}' is not present" ,
invalid _value :
"Invalid value on line %{row}. '%{field}' field may only be 'true' or 'false'" ,
unreasonably _big :
"Refused to load unreasonably big file of %{size} megabytes" ,
already _in _progress : "An import run is already in progress" ,
id _exits : "ID %{id} already present" ,
} ,
title : "Import users via CSV" ,
goToPdf : "Go to PDF" ,
cards : {
importstats : {
header : "Import users" ,
users _total :
"%{smart_count} user in CSV file |||| %{smart_count} users in CSV file" ,
guest _count : "%{smart_count} guest |||| %{smart_count} guests" ,
admin _count : "%{smart_count} admin |||| %{smart_count} admins" ,
} ,
conflicts : {
header : "Conflict strategy" ,
mode : {
stop : "Stop on conflict" ,
skip : "Show error and skip on conflict" ,
} ,
} ,
ids : {
header : "IDs" ,
all _ids _present : "IDs present on every entry" ,
count _ids _present :
"%{smart_count} entry with ID |||| %{smart_count} entries with IDs" ,
mode : {
ignore : "Ignore IDs in CSV and create new ones" ,
update : "Update existing records" ,
} ,
} ,
passwords : {
header : "Passwords" ,
all _passwords _present : "Passwords present on every entry" ,
count _passwords _present :
"%{smart_count} entry with password |||| %{smart_count} entries with passwords" ,
use _passwords : "Use passwords from CSV" ,
} ,
upload : {
header : "Input CSV file" ,
explanation :
"Here you can upload a file with comma separated values that is processed to create or update users. The file must include the fields 'id' and 'displayname'. You can download and adapt an example file here: " ,
} ,
startImport : {
simulate _only : "Simulate only" ,
run _import : "Import" ,
} ,
results : {
header : "Import results" ,
total :
"%{smart_count} entry in total |||| %{smart_count} entries in total" ,
successful : "%{smart_count} entries successfully imported" ,
skipped : "%{smart_count} entries skipped" ,
download _skipped : "Download skipped records" ,
with _error :
"%{smart_count} entry with errors ||| %{smart_count} entries with errors" ,
simulated _only : "Run was only simulated" ,
} ,
} ,
} ,
2020-02-07 19:44:48 +03:00
resources : {
users : {
2020-03-28 23:25:34 +03:00
backtolist : "Back to list" ,
2020-02-07 19:44:48 +03:00
name : "User |||| Users" ,
2020-03-30 11:22:27 +03:00
email : "Email" ,
msisdn : "Phone" ,
2020-07-06 13:35:26 +03:00
threepid : "Email / Phone" ,
2020-02-07 19:44:48 +03:00
fields : {
avatar : "Avatar" ,
id : "User-ID" ,
name : "Name" ,
is _guest : "Guest" ,
2020-07-21 12:52:13 +03:00
admin : "Server Administrator" ,
2020-02-07 19:44:48 +03:00
deactivated : "Deactivated" ,
guests : "Show guests" ,
show _deactivated : "Show deactivated users" ,
user _id : "Search user" ,
displayname : "Displayname" ,
password : "Password" ,
2020-03-30 11:22:27 +03:00
avatar _url : "Avatar URL" ,
2020-06-10 15:59:55 +03:00
avatar _src : "Avatar" ,
2020-03-30 11:22:27 +03:00
medium : "Medium" ,
threepids : "3PIDs" ,
address : "Address" ,
2020-06-16 11:05:38 +03:00
creation _ts _ms : "Creation timestamp" ,
2020-06-16 10:24:49 +03:00
consent _version : "Consent version" ,
2020-02-07 19:44:48 +03:00
} ,
2020-04-06 12:13:20 +03:00
helper : {
deactivate : "Deactivated users cannot be reactivated" ,
2020-04-09 11:32:06 +03:00
erase : "Mark the user as GDPR-erased" ,
} ,
action : {
erase : "Erase user data" ,
2020-04-06 12:13:20 +03:00
} ,
2020-02-07 19:44:48 +03:00
} ,
2020-02-07 18:19:01 +03:00
rooms : {
name : "Room |||| Rooms" ,
fields : {
room _id : "Room-ID" ,
name : "Name" ,
canonical _alias : "Alias" ,
joined _members : "Members" ,
2020-05-23 18:43:33 +03:00
joined _local _members : "local members" ,
state _events : "State events" ,
version : "Version" ,
is _encrypted : "Encrypted" ,
2020-07-07 22:28:20 +03:00
encryption : "Encryption" ,
2020-05-23 18:43:33 +03:00
federatable : "Federatable" ,
public : "Public" ,
2020-07-07 22:28:20 +03:00
creator : "Creator" ,
join _rules : "Join rules" ,
guest _access : "Guest access" ,
history _visibility : "History visibility" ,
} ,
enums : {
join _rules : {
public : "Public" ,
knock : "Knock" ,
invite : "Invite" ,
private : "Private" ,
} ,
guest _access : {
can _join : "Guests can join" ,
forbidden : "Guests can not join" ,
} ,
history _visibility : {
invited : "Since invited" ,
joined : "Since joined" ,
shared : "Since shared" ,
world _readable : "Anyone" ,
} ,
unencrypted : "Unencrypted" ,
2020-02-07 18:19:01 +03:00
} ,
} ,
2020-03-28 23:25:34 +03:00
connections : {
name : "Connections" ,
fields : {
last _seen : "Date" ,
ip : "IP address" ,
user _agent : "User agent" ,
} ,
} ,
2020-07-08 11:58:57 +03:00
devices : {
name : "Device |||| Devices" ,
2020-11-16 12:54:43 +03:00
fields : {
device _id : "Device-ID" ,
display _name : "Device name" ,
last _seen _ts : "Timestamp" ,
last _seen _ip : "IP address" ,
} ,
2020-07-08 12:11:24 +03:00
action : {
erase : {
title : "Removing %{id}" ,
content : 'Are you sure you want to remove the device "%{name}"?' ,
success : "Device successfully removed." ,
failure : "An error has occurred." ,
} ,
} ,
2020-07-08 11:58:57 +03:00
} ,
2020-04-23 11:00:46 +03:00
servernotices : {
name : "Server Notices" ,
send : "Send server notices" ,
fields : {
body : "Message" ,
} ,
action : {
send : "Send note" ,
send _success : "Server notice successfully sent." ,
send _failure : "An error has occurred." ,
} ,
helper : {
send :
'Sends a server notice to the selected users. The feature "Server Notices" has to be activated at the server.' ,
} ,
} ,
2020-02-07 18:35:21 +03:00
} ,
2020-02-07 18:29:11 +03:00
} ;